1.4 Using phpMyAdmin on
@@ -2655,11 +2643,8 @@ setfacl -d -m "g:www-data:rwx" tmp
These features are based on the gzencode() and bzcompress()
PHP functions to be more independent of the platform (Unix/Windows, Safe Mode
- or not, and so on). So, you must have PHP4 >= 4.0.4 and Zlib/Bzip2
- support (--with-zlib and --with-bz2).
- We faced PHP crashes when trying to download a dump with MS Internet
- Explorer when phpMyAdmin is run with a release candidate of PHP 4.2.0. In
- this case you should switch to the release version of PHP 4.2.0.
+ or not, and so on). So, you must have Zlib/Bzip2
+ support (--with-zlib and --with-bz2).
1.19 I can't run the "display relations" feature because the
@@ -2892,11 +2869,7 @@ setfacl -d -m "g:www-data:rwx" tmp
SHOW VARIABLES LIKE 'lower_case_table_names';
- 1.24 Some characters are being truncated in my queries, or I
- get characters randomly added. I am running PHP 4.2.3.
-
- This is a PHP 4.2.3 bug.
-
+ 1.24 (withdrawn).
1.25 I am running Apache with mod_gzip-1.3.26.1a on Windows XP,
@@ -3710,11 +3683,7 @@ $cfg['Servers'][$i]['AllowDeny']['rules'] = array(
MS Internet Explorer seems to be really buggy about cookies, at least till
- version 6. And thanks to Andrew Zivolup we've traced also a PHP 4.1.1 bug
- in this area!
-
- Then, if you're running PHP 4.1.1, try to upgrade or downgrade... it may
- work!
+ version 6.
@@ -4241,11 +4210,11 @@ INSERT INTO REL_towns VALUES ('M', 'Montréal');
- 6.20 In MySQL 4, I see a lot of databases which are not mine, and cannot
+ 6.20 I see a lot of databases which are not mine, and cannot
access them.
-
Upgrading to MySQL 4 usually gives users those global privileges: CREATE
+
You have one of these global privileges: CREATE
TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also
enable users to see all the database names.
See this bug report.
@@ -4319,9 +4288,9 @@ chmod o+rwx tmp
- In config.inc.php your host should be defined with a FQDN (fully qualified domain name) instead of "localhost".
- - Ensure that your target table is under the PBXT storage engine and has a LONGBLOB column and a primary key.
- - When you insert or update a row in this table, put a checkmark on the "Upload to BLOB repository" optional choice; otherwise, the upload will be done directly in your column instead of the repository.
- - Finally when you browse your table, you'll see in your column a link to stream your data, for example "View image". A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time but in case it's incorrect, it's possible to edit it by clicking on the displayed MIME-type.
+ - Ensure that your target table is under the PBXT storage engine and has a LONGBLOB column (which must be nullable if you want to remove the BLOB reference from it).
+ - When you insert or update a row in this table, put a checkmark on the "Upload to BLOB repository" optional choice; otherwise, the upload will be done directly in your LONGBLOB column instead of the repository.
+ - Finally when you browse your table, you'll see in your column a link to stream your data, for example "View image". A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time.
@@ -4337,8 +4306,8 @@ chmod o+rwx tmp
In all places where phpMyAdmin accepts format strings, you can use
@VARIABLE@
expansion and
strftime format strings. The
- expanded variables depend on a context (eg. if you don't have chosen
- table, you can not get table name), but following variables can be used:
+ expanded variables depend on a context (for example, if you haven't chosen a
+ table, you can not get the table name), but the following variables can be used:
@HTTP_HOST@
@@ -4416,7 +4385,7 @@ chmod o+rwx tmp
localized_docs/po
from Git, or just go to the translation server
and translate it online. If your language is missing, just contact
- Michal Čihař; he will add it. If
+ Michal Čihař; he will add it. If
you prefer to directly translate the po files, please put updated ones into our
translation tracker.
@@ -4604,7 +4573,7 @@ Copyright (C) 2001-2010 Marc Delisle <marc_at_infomarc.info>
Olivier Müller <om_at_omnis.ch>
Robin Johnson <robbat2_at_users.sourceforge.net>
Alexander M. Turek <me_at_derrabus.de>
- Michal Čihař <michal_at_cihar.com>
+ Michal Čihař <michal_at_cihar.com>
Garvin Hicking <me_at_supergarv.de>
Michael Keck <mkkeck_at_users.sourceforge.net>
Sebastian Mendel <cybot_tm_at_users.sourceforge.net>
diff --git a/bs_change_mime_type.php b/bs_change_mime_type.php
deleted file mode 100644
index edefae144..000000000
--- a/bs_change_mime_type.php
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
diff --git a/js/functions.js b/js/functions.js
index b5995f0f5..3ebdcbfc7 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -152,7 +152,7 @@ function confirmQuery(theForm1, sqlQuery1)
} // end if
} // end if
- // Confirms a "DROP/DELETE/ALTER" statement
+ // Confirms a "DROP/DELETE/ALTER/TRUNCATE" statement
//
// TODO: find a way (if possible) to use the parser-analyser
// for this kind of verification
@@ -162,22 +162,24 @@ function confirmQuery(theForm1, sqlQuery1)
var do_confirm_re_0 = new RegExp('^\\s*DROP\\s+(IF EXISTS\\s+)?(TABLE|DATABASE|PROCEDURE)\\s', 'i');
var do_confirm_re_1 = new RegExp('^\\s*ALTER\\s+TABLE\\s+((`[^`]+`)|([A-Za-z0-9_$]+))\\s+DROP\\s', 'i');
var do_confirm_re_2 = new RegExp('^\\s*DELETE\\s+FROM\\s', 'i');
+ var do_confirm_re_3 = new RegExp('^\\s*TRUNCATE\\s', 'i');
+
if (do_confirm_re_0.test(sqlQuery1.value)
|| do_confirm_re_1.test(sqlQuery1.value)
- || do_confirm_re_2.test(sqlQuery1.value)) {
+ || do_confirm_re_2.test(sqlQuery1.value)
+ || do_confirm_re_3.test(sqlQuery1.value)) {
var message = (sqlQuery1.value.length > 100)
? sqlQuery1.value.substr(0, 100) + '\n ...'
: sqlQuery1.value;
var is_confirmed = confirm(PMA_messages['strDoYouReally'] + ' :\n' + message);
- // drop/delete/alter statement is confirmed -> update the
+ // statement is confirmed -> update the
// "is_js_confirmed" form field so the confirm test won't be
// run on the server side and allows to submit the form
if (is_confirmed) {
theForm1.elements['is_js_confirmed'].value = 1;
return true;
}
- // "DROP/DELETE/ALTER" statement is rejected -> do not submit
- // the form
+ // statement is rejected -> do not submit the form
else {
window.focus();
sqlQuery1.focus();
@@ -1658,46 +1660,6 @@ function popupBSMedia(url_params, bs_ref, m_type, is_cust_type, w_width, w_heigh
var mediaWin = window.open('bs_play_media.php?' + url_params + '&bs_reference=' + bs_ref + '&media_type=' + m_type + '&custom_type=' + is_cust_type, 'viewBSMedia', 'width=' + w_width + ', height=' + w_height + ', resizable=1, scrollbars=1, status=0');
}
-/**
- * popups a request for changing MIME types for files in the BLOB repository
- *
- * @param var db database name
- * @param var table table name
- * @param var reference BLOB repository reference
- * @param var current_mime_type current MIME type associated with BLOB repository reference
- */
-function requestMIMETypeChange(db, table, reference, current_mime_type)
-{
- // no mime type specified, set to default (nothing)
- if (undefined == current_mime_type)
- current_mime_type = "";
-
- // prompt user for new mime type
- var new_mime_type = prompt("Enter custom MIME type", current_mime_type);
-
- // if new mime_type is specified and is not the same as the previous type, request for mime type change
- if (new_mime_type && new_mime_type != current_mime_type)
- changeMIMEType(db, table, reference, new_mime_type);
-}
-
-/**
- * changes MIME types for files in the BLOB repository
- *
- * @param var db database name
- * @param var table table name
- * @param var reference BLOB repository reference
- * @param var mime_type new MIME type to be associated with BLOB repository reference
- */
-function changeMIMEType(db, table, reference, mime_type)
-{
- // specify url and parameters for jQuery POST
- var mime_chg_url = 'bs_change_mime_type.php';
- var params = { bs_db: db, bs_table: table, bs_reference: reference, bs_new_mime_type: mime_type };
-
- // jQuery POST
- jQuery.post(mime_chg_url, params);
-}
-
/**
* Jquery Coding for inline editing SQL_QUERY
*/
diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php
index 17a05e08f..594e5f1d7 100644
--- a/libraries/blobstreaming.lib.php
+++ b/libraries/blobstreaming.lib.php
@@ -46,7 +46,6 @@ function initPBMSDatabase()
* @uses PMA_Config::get()
* @uses PMA_Config::settings()
* @uses PMA_Config::set()
- * @uses PMA_BS_SetVariables()
* @uses PMA_BS_GetVariables()
* @uses PMA_cacheSet()
* @uses PMA_cacheGet()
@@ -121,6 +120,35 @@ function checkBLOBStreamingPlugins()
return FALSE;
} // end if (count($bs_variables) <= 0)
+ // Check that the required pbms functions exist:
+ if ((function_exists("pbms_connect") == FALSE) ||
+ (function_exists("pbms_error") == FALSE) ||
+ (function_exists("pbms_close") == FALSE) ||
+ (function_exists("pbms_is_blob_reference") == FALSE) ||
+ (function_exists("pbms_get_info") == FALSE) ||
+ (function_exists("pbms_get_metadata_value") == FALSE) ||
+ (function_exists("pbms_add_metadata") == FALSE) ||
+ (function_exists("pbms_read_stream") == FALSE)) {
+
+ // We should probably notify the user that they need to install
+ // the pbms client lib and PHP extension to make use of blob streaming.
+ $PMA_Config->set('BLOBSTREAMING_PLUGINS_EXIST', FALSE);
+ PMA_cacheSet('skip_blobstreaming', true, true);
+ return FALSE;
+ }
+
+ if (function_exists("pbms_connection_pool_size")) {
+ if ( isset($PMA_Config->settings['pbms_connection_pool_size'])) {
+ $pool_size = $PMA_Config->settings['pbms_connection_pool_size'];
+ if ($pool_size == "") {
+ $pool_size = 1;
+ }
+ } else {
+ $pool_size = 1;
+ }
+ pbms_connection_pool_size($pool_size);
+ }
+
// get BS server port
$BS_PORT = $bs_variables['pbms_port'];
@@ -173,36 +201,6 @@ function checkBLOBStreamingPlugins()
return TRUE;
}
-/**
- * sets BLOBStreaming variables to a list of specified arguments
- * @access public
- * @uses PMA_DBI_query()
- * @returns boolean - success of variables setup
-*/
-
-function PMA_BS_SetVariables($bs_variables)
-{
- // if no variables exist in array, return false
- if (empty($bs_variables) || count($bs_variables) == 0)
- return FALSE;
-
- // set BS variables to those specified in array
- foreach ($bs_variables as $key=>$val)
- if (!is_null($val) && strlen($val) > 0)
- {
- // set BS variable to specified value
- $query = "SET GLOBAL $key=" . PMA_sqlAddSlashes($val);
- $result = PMA_DBI_query($query);
-
- // if query fails execution, return false
- if (!$result)
- return FALSE;
- } // end if (!is_null($val) && strlen($val) > 0)
-
- // return true on success
- return TRUE;
-}
-
/**
* returns a list of BLOBStreaming variables used by MySQL
*
@@ -240,7 +238,7 @@ function PMA_BS_GetVariables()
function PMA_BS_ReportPBMSError($msg)
{
$tmp_err = pbms_error();
- PMA_showMessage("PBMS error, $msg $tmp_err");
+ PMA_showMessage(__('PBMS error') . " $msg $tmp_err");
}
//------------
@@ -249,8 +247,9 @@ function PMA_do_connect($db_name, $quiet)
$PMA_Config = $GLOBALS['PMA_Config'];
// return if unable to load PMA configuration
- if (empty($PMA_Config))
+ if (empty($PMA_Config)) {
return FALSE;
+ }
// generate bs reference link
$pbms_host = $PMA_Config->get('BLOBSTREAMING_HOST');
@@ -265,7 +264,7 @@ function PMA_do_connect($db_name, $quiet)
if ($ok == FALSE) {
if ($quiet == FALSE) {
- PMA_BS_ReportPBMSError("PBMS Connection failed: pbms_connect($pbms_host, $pbms_port, $db_name)");
+ PMA_BS_ReportPBMSError(__('PBMS connection failed:') . " pbms_connect($pbms_host, $pbms_port, $db_name)");
}
return FALSE;
}
@@ -290,7 +289,14 @@ function PMA_BS_IsPBMSReference($bs_reference, $db_name)
}
// You do not really need a connection to the PBMS Daemon
- // to check if a reference looks valid.
+ // to check if a reference looks valid but unfortunalty the API
+ // requires one at this point so until the API is updated
+ // we need to epen one here. If you use pool connections this
+ // will not be a performance problem.
+ if (PMA_do_connect($db_name, FALSE) == FALSE) {
+ return FALSE;
+ }
+
$ok = pbms_is_blob_reference($bs_reference);
return $ok ;
}
@@ -299,19 +305,19 @@ function PMA_BS_IsPBMSReference($bs_reference, $db_name)
function PMA_BS_CreateReferenceLink($bs_reference, $db_name)
{
if (PMA_do_connect($db_name, FALSE) == FALSE) {
- return 'Error';
+ return __('Error');
}
if (pbms_get_info(trim($bs_reference)) == FALSE) {
- PMA_BS_ReportPBMSError("PBMS get BLOB info failed: pbms_get_info($bs_reference)");
+ PMA_BS_ReportPBMSError(__('PBMS get BLOB info failed:') . " pbms_get_info($bs_reference)");
PMA_do_disconnect();
- return 'Error';
+ return __('Error');
}
$content_type = pbms_get_metadata_value("Content-Type");
if ($content_type == FALSE) {
$br = trim($bs_reference);
- PMA_BS_ReportPBMSError("'$content_type' PMA_BS_CreateReferenceLink('$br', '$db_name'): get BLOB Content-Type failed: ");
+ PMA_BS_ReportPBMSError("PMA_BS_CreateReferenceLink('$br', '$db_name'): " . __('get BLOB Content-Type failed'));
}
PMA_do_disconnect();
@@ -322,11 +328,12 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name)
$bs_url = PMA_BS_getURL($bs_reference);
if (empty($bs_url)) {
- PMA_BS_ReportPBMSError("No blob streaming server configured!");
+ PMA_BS_ReportPBMSError(__('No blob streaming server configured!'));
return 'Error';
}
- $output = "$content_type";
+ //$output = "$content_type";
+ $output = $content_type;
// specify custom HTML for various content types
switch ($content_type) {
@@ -411,7 +418,7 @@ function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name)
$fh = fopen($file_name, 'r');
if (! $fh) {
PMA_do_disconnect();
- PMA_showMessage("Could not open file: $file_name");
+ PMA_showMessage(sprintf(__('Could not open file: %s'), $file_name));
return FALSE;
}
@@ -419,7 +426,7 @@ function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name)
$pbms_blob_url = pbms_read_stream($fh, filesize($file_name), $tbl_name);
if (! $pbms_blob_url) {
- PMA_BS_ReportPBMSError("pbms_read_stream() Failed");
+ PMA_BS_ReportPBMSError("pbms_read_stream()");
}
fclose($fh);
@@ -436,7 +443,7 @@ function PMA_BS_SetContentType($db_name, $bsTable, $blobReference, $contentType)
// This is a really ugly way to do this but currently there is nothing better.
// In a future version of PBMS the system tables will be redesigned to make this
- // more eficient.
+ // more efficient.
$query = "SELECT Repository_id, Repo_blob_offset FROM pbms_reference WHERE Blob_url='" . PMA_sqlAddslashes($blobReference) . "'";
//error_log(" PMA_BS_SetContentType: $query\n", 3, "/tmp/mylog");
$result = PMA_DBI_query($query);
@@ -494,34 +501,4 @@ function PMA_BS_getURL($reference)
return $bs_url;
}
-/**
- * returns the field name for a primary key of a given table in a given database
- *
- * @access public
- * @param string - database name
- * @param string - table name
- * @uses PMA_DBI_select_db()
- * @uses PMA_backquote()
- * @uses PMA_DBI_query()
- * @uses PMA_DBI_fetch_assoc()
- * @return string - field name for primary key
-*/
-function PMA_BS_GetPrimaryField($db_name, $tbl_name)
-{
- // select specified database
- PMA_DBI_select_db($db_name);
-
- // retrieve table fields
- $query = "SHOW FULL FIELDS FROM " . PMA_backquote($tbl_name);
- $result = PMA_DBI_query($query);
-
- // while there are records to parse
- while ($data = PMA_DBI_fetch_assoc($result)) {
- if ("PRI" == $data['Key']) {
- return $data['Field'];
- }
- }
- // return NULL on no primary key
- return NULL;
-}
?>
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index c5b3ca450..8eba11181 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -1389,7 +1389,7 @@ function PMA_DBI_get_triggers($db, $table, $delimiter = '//')
// instead of WHERE EVENT_OBJECT_SCHEMA='dbname'
$triggers = PMA_DBI_fetch_result("SELECT TRIGGER_SCHEMA, TRIGGER_NAME, EVENT_MANIPULATION, ACTION_TIMING, ACTION_STATEMENT, EVENT_OBJECT_SCHEMA, EVENT_OBJECT_TABLE FROM information_schema.TRIGGERS WHERE TRIGGER_SCHEMA= '" . PMA_sqlAddslashes($db,true) . "' and EVENT_OBJECT_TABLE = '" . PMA_sqlAddslashes($table, true) . "';");
} else {
- $triggers = PMA_DBI_fetch_result("SHOW TRIGGERS FROM " . PMA_sqlAddslashes($db,true) . " LIKE '" . PMA_sqlAddslashes($table, true) . "';");
+ $triggers = PMA_DBI_fetch_result("SHOW TRIGGERS FROM " . PMA_backquote(PMA_sqlAddslashes($db,true)) . " LIKE '" . PMA_sqlAddslashes($table, true) . "';");
}
if ($triggers) {
diff --git a/libraries/dbi/mysqli.dbi.lib.php b/libraries/dbi/mysqli.dbi.lib.php
index ad6d545ab..b5915df83 100644
--- a/libraries/dbi/mysqli.dbi.lib.php
+++ b/libraries/dbi/mysqli.dbi.lib.php
@@ -109,9 +109,8 @@ function PMA_DBI_connect($user, $password, $is_controluser = false, $server = nu
if (!$server) {
$return_value = @mysqli_real_connect($link, $GLOBALS['cfg']['Server']['host'], $user, $password, false, $server_port, $server_socket, $client_flags);
-
// Retry with empty password if we're allowed to
- if ($return_value == false && isset($cfg['Server']['nopassword']) && $cfg['Server']['nopassword'] && !$is_controluser) {
+ if ($return_value == false && isset($GLOBALS['cfg']['Server']['nopassword']) && $GLOBALS['cfg']['Server']['nopassword'] && !$is_controluser) {
$return_value = @mysqli_real_connect($link, $GLOBALS['cfg']['Server']['host'], $user, '', false, $server_port, $server_socket, $client_flags);
}
} else {
diff --git a/libraries/export/json.php b/libraries/export/json.php
new file mode 100644
index 000000000..5a092654c
--- /dev/null
+++ b/libraries/export/json.php
@@ -0,0 +1,183 @@
+ 'JSON',
+ 'extension' => 'json',
+ 'mime_type' => 'text/plain',
+ 'options' => array(
+ array(
+ 'type' => 'hidden',
+ 'name' => 'data',
+ ),
+ ),
+ 'options_text' => 'strOptions',
+ );
+} else {
+
+/**
+ * Set of functions used to build exports of tables
+ */
+
+/**
+ * Outputs comment
+ *
+ * @param string Text of comment
+ *
+ * @return bool Whether it suceeded
+ */
+function PMA_exportComment($text)
+{
+ PMA_exportOutputHandler('/* ' . $text . ' */' . $GLOBALS['crlf']);
+ return true;
+}
+
+/**
+ * Outputs export footer
+ *
+ * @return bool Whether it suceeded
+ *
+ * @access public
+ */
+function PMA_exportFooter()
+{
+ return true;
+}
+
+/**
+ * Outputs export header
+ *
+ * @return bool Whether it suceeded
+ *
+ * @access public
+ */
+function PMA_exportHeader()
+{
+ PMA_exportOutputHandler(
+ '/**' . $GLOBALS['crlf']
+ . ' Export to JSON plugin for PHPMyAdmin' . $GLOBALS['crlf']
+ . ' @version 0.1' . $GLOBALS['crlf']
+ . ' */' . $GLOBALS['crlf'] . $GLOBALS['crlf']
+ );
+ return true;
+}
+
+/**
+ * Outputs database header
+ *
+ * @param string Database name
+ *
+ * @return bool Whether it suceeded
+ *
+ * @access public
+ */
+function PMA_exportDBHeader($db)
+{
+ PMA_exportOutputHandler('/* Database \'' . $db . '\' */ ' . $GLOBALS['crlf'] );
+ return true;
+}
+
+/**
+ * Outputs database footer
+ *
+ * @param string Database name
+ *
+ * @return bool Whether it suceeded
+ *
+ * @access public
+ */
+function PMA_exportDBFooter($db)
+{
+ return true;
+}
+
+/**
+ * Outputs create database database
+ *
+ * @param string Database name
+ *
+ * @return bool Whether it suceeded
+ *
+ * @access public
+ */
+function PMA_exportDBCreate($db)
+{
+ return true;
+}
+
+/**
+ * Outputs the content of a table in YAML format
+ *
+ * @param string the database name
+ * @param string the table name
+ * @param string the end of line sequence
+ * @param string the url to go back in case of error
+ * @param string SQL query for obtaining data
+ *
+ * @return bool Whether it suceeded
+ *
+ * @access public
+ */
+function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
+{
+ $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED);
+
+ $columns_cnt = PMA_DBI_num_fields($result);
+ for ($i = 0; $i < $columns_cnt; $i++) {
+ $columns[$i] = stripslashes(PMA_DBI_field_name($result, $i));
+ }
+ unset($i);
+
+ $buffer = '';
+ $record_cnt = 0;
+ while ($record = PMA_DBI_fetch_row($result)) {
+
+ $record_cnt++;
+
+ // Output table name as comment if this is the first record of the table
+ if ($record_cnt == 1) {
+ $buffer .= '/* ' . $db . '.' . $table . ' */' . $crlf . $crlf;
+ $buffer .= '[{';
+ } else {
+ $buffer .= ', {';
+ }
+
+ for ($i = 0; $i < $columns_cnt; $i++) {
+
+ $isLastLine = ($i + 1 >= $columns_cnt);
+
+ $column = $columns[$i];
+
+ if (is_null($record[$i])) {
+ $buffer .= '"' . $column . '": null' . (! $isLastLine ? ',' : '');
+ } elseif (is_numeric($record[$i])) {
+ $buffer .= '"' . $column . '": ' . $record[$i] . (! $isLastLine ? ',' : '');
+ } else {
+ $buffer .= '"' . $column . '": "' . addslashes($record[$i]) . '"' . (! $isLastLine ? ',' : '');
+ }
+ }
+
+ $buffer .= '}';
+ }
+
+ $buffer .= ']';
+ if (! PMA_exportOutputHandler($buffer)) {
+ return FALSE;
+ }
+
+ PMA_DBI_free_result($result);
+
+ return true;
+}
+
+}
diff --git a/libraries/header.inc.php b/libraries/header.inc.php
index 56385836b..c6f71079e 100644
--- a/libraries/header.inc.php
+++ b/libraries/header.inc.php
@@ -114,7 +114,10 @@ if (empty($GLOBALS['is_header_sent'])) {
__('New table'),
'',
's_tbl.png');
- } elseif (strlen($GLOBALS['table'])) {
+ // if the table is being dropped, $_REQUEST['purge'] is set
+ // (it always contains "1")
+ // so do not display the table name in upper div
+ } elseif (strlen($GLOBALS['table']) && ! (isset($_REQUEST['purge']))) {
require_once './libraries/tbl_info.inc.php';
echo $separator;
diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php
index 728c12c48..d93869933 100644
--- a/libraries/sql_query_form.lib.php
+++ b/libraries/sql_query_form.lib.php
@@ -355,7 +355,7 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter
?>
\n"
"Language-Team: afrikaans \n"
@@ -88,6 +88,7 @@ msgid "Use this value"
msgstr ""
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1410,7 +1411,8 @@ msgstr ""
msgid "Databases"
msgstr "databasisse"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1611,22 +1613,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1922,16 +1945,16 @@ msgstr ""
msgid "Overhead"
msgstr "Overhead"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3233,7 +3256,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Volteks"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Geen verandering"
@@ -7478,7 +7501,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7487,7 +7510,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 8f523d771..ba92f1310 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-05-29 14:16+0200\n"
"Last-Translator: Ahmed \n"
"Language-Team: arabic \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "استخدم هذه القيمة"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1404,7 +1405,8 @@ msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحده
msgid "Databases"
msgstr "قاعدة بيانات"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1608,22 +1610,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "اعرض الصورة"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "شغل الصوت"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "اعرض الفيديو"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "نزل الملف"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1917,16 +1940,16 @@ msgstr ""
msgid "Overhead"
msgstr "الفوقي"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3217,7 +3240,7 @@ msgstr "فهرست"
msgid "Fulltext"
msgstr "النص كاملا"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "لا تغييرات"
@@ -7479,7 +7502,7 @@ msgstr ""
msgid "ZIP"
msgstr "زيب"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7488,7 +7511,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/az.po b/po/az.po
index d5b0b6811..ecbd65646 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
@@ -86,6 +86,7 @@ msgid "Use this value"
msgstr ""
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1413,7 +1414,8 @@ msgstr ""
msgid "Databases"
msgstr "Me'lumat Bazaları"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1615,22 +1617,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1930,16 +1953,16 @@ msgstr ""
msgid "Overhead"
msgstr "Aşma deyeri"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3244,7 +3267,7 @@ msgstr "İndeks"
msgid "Fulltext"
msgstr "Tam metn (Fulltext)"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Deyişiklik Yoxdur"
@@ -7585,7 +7608,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7594,7 +7617,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/be.po b/po/be.po
index 20e36ad37..11e28b80c 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Выкарыстоўваць гэта значэньне"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1436,7 +1437,8 @@ msgstr ""
msgid "Databases"
msgstr "Базы дадзеных"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1649,22 +1651,45 @@ msgstr "Дзейны ключ аўтэнтыфікацыі не падключа
msgid "Authenticating..."
msgstr "Аўтэнтыфікацыя..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Супастаўленьне падлучэньня да MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1967,18 +1992,18 @@ msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.1
msgid "Overhead"
msgstr "Выкарыстаньне рэсурсаў"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
"канфігурацыйным файле."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Сэрвэр не адказвае"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
@@ -3353,7 +3378,7 @@ msgstr "Індэкс"
msgid "Fulltext"
msgstr "Поўнатэкстэкставае"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Няма зьменаў"
@@ -7909,7 +7934,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID устаўленага радку: %1$d"
@@ -7918,7 +7943,7 @@ msgstr "ID устаўленага радку: %1$d"
msgid "Showing as PHP code"
msgstr "У выглядзе PHP-коду"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "У выглядзе SQL-запыту"
diff --git a/po/be@latin.po b/po/be@latin.po
index 6ae167d49..abc557ae3 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Vykarystoŭvać heta značeńnie"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1436,7 +1437,8 @@ msgstr ""
msgid "Databases"
msgstr "Bazy dadzienych"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1649,22 +1651,45 @@ msgstr "Dziejny kluč aŭtentyfikacyi nie padklučany"
msgid "Authenticating..."
msgstr "Aŭtentyfikacyja..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Supastaŭleńnie padłučeńnia da MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1967,18 +1992,18 @@ msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11"
msgid "Overhead"
msgstr "Vykarystańnie resursaŭ"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym "
"kanfihuracyjnym fajle."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Server nie adkazvaje"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
@@ -3347,7 +3372,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Poŭnatekstekstavaje"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Niama źmienaŭ"
@@ -7838,7 +7863,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID ustaŭlenaha radku: %1$d"
@@ -7847,7 +7872,7 @@ msgstr "ID ustaŭlenaha radku: %1$d"
msgid "Showing as PHP code"
msgstr "U vyhladzie PHP-kodu"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "U vyhladzie SQL-zapytu"
diff --git a/po/bg.po b/po/bg.po
index 10a02b8ad..4062229eb 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-06-11 17:28+0200\n"
"Last-Translator: \n"
"Language-Team: bulgarian \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Използвахте тази стойност"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1416,7 +1417,8 @@ msgstr ""
msgid "Databases"
msgstr "Бази от данни"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1623,22 +1625,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Колация на MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1938,16 +1963,16 @@ msgstr "Може да има приблизителна стойност. Виж
msgid "Overhead"
msgstr "Загубено място"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Няма отговор от сървъра"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3254,7 +3279,7 @@ msgstr "Индекс"
msgid "Fulltext"
msgstr "Пълнотекстово"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Няма промяна"
@@ -7629,7 +7654,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7638,7 +7663,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Показване като PHP-код"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index 3c6a5aa2f..ab14ead76 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Use this value"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1421,7 +1422,8 @@ msgstr ""
msgid "Databases"
msgstr "ডাটাবেজসমূহ Databases"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1631,22 +1633,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL connection collation"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1947,16 +1972,16 @@ msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
msgid "Overhead"
msgstr "Overhead"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "The server is not responding"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
@@ -3294,7 +3319,7 @@ msgstr "ইন্ডেস্ক"
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "No change"
@@ -7803,7 +7828,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7812,7 +7837,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
#, fuzzy
msgid "Showing SQL query"
msgstr "Show Full Queries"
diff --git a/po/bs.po b/po/bs.po
index 11a3e5527..ee3e3dfa9 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Koristi ovu vrijednost"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1413,7 +1414,8 @@ msgstr ""
msgid "Databases"
msgstr "Baze"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1619,22 +1621,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1931,16 +1954,16 @@ msgstr ""
msgid "Overhead"
msgstr "Prekoračenje"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3244,7 +3267,7 @@ msgstr "Ključ"
msgid "Fulltext"
msgstr "Tekst ključ"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Nema izmjena"
@@ -7580,7 +7603,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7589,7 +7612,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 97ed97365..45bf877ef 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Fes servir aquest valor"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1427,7 +1428,8 @@ msgstr ""
msgid "Databases"
msgstr "Bases de dades"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1642,22 +1644,45 @@ msgstr "Cap clau d'autenticació vàlida endollada"
msgid "Authenticating..."
msgstr "Autenticant..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Ordenació de la connexió MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Veure imatge"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Escolta audio"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Veure video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Descarrega arxiu"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1961,18 +1986,18 @@ msgstr "Pot ser aproximat. Veieu PFC (FAQ) 3.11"
msgid "Overhead"
msgstr "Defragmentat"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La connexió de l'usuari de control ha fallat, tal com està definida ara a la "
"configuració."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "El servidor no respon"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)"
@@ -3351,7 +3376,7 @@ msgstr "Índex"
msgid "Fulltext"
msgstr "Text sencer"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Sense canvis"
@@ -8107,7 +8132,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id de la fila inserida: %1$d"
@@ -8116,7 +8141,7 @@ msgstr "Id de la fila inserida: %1$d"
msgid "Showing as PHP code"
msgstr "Mostrant com a codi PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Mostrant consulta SQL"
diff --git a/po/cs.po b/po/cs.po
index 00656cedc..558276fc4 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-28 17:55+0200\n"
"Last-Translator: Michal \n"
"Language-Team: czech \n"
@@ -92,6 +92,7 @@ msgid "Use this value"
msgstr "Použít tuto hodnotu"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr "Není nastaven žádný streamovací server!"
@@ -606,8 +607,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:405 libraries/display_tbl.lib.php:1902
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -804,8 +805,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -1358,7 +1359,8 @@ msgstr ""
msgid "Databases"
msgstr "Databáze"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1474,8 +1476,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -1570,22 +1572,45 @@ msgstr "Nebyl připojen autentizační klíč"
msgid "Authenticating..."
msgstr "Authentizuji..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Vytvoření stránky selhalo"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Zobrazit obrázek"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Přehrát zvuk"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Přehrát video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Stáhnout soubor"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1882,17 +1907,17 @@ msgstr ""
msgid "Overhead"
msgstr "Navíc"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Server neodpovídá"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(nebo není správně nastaven lokální socket MySQL serveru)"
@@ -2007,8 +2032,8 @@ msgstr "jméno tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -3232,7 +3257,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Žádná změna"
@@ -3840,8 +3865,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
-"%spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
+"spopisy transformací%s"
#: libraries/tbl_properties.inc.php:143
msgid "Transformation options"
@@ -3874,8 +3899,8 @@ msgid ""
"No description is available for this transformation.
Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co "
-"%s dělá."
+"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %"
+"s dělá."
#: libraries/tbl_properties.inc.php:724 server_engines.php:56
#: tbl_operations.php:352
@@ -4845,8 +4870,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -7108,9 +7133,8 @@ msgstr ""
"Nastavil jste typ autentizace [kbd]config[/kbd] a zadal jste uživatelské "
"jméno a heslo pro automatické přihlášení, což není doporučená volba pro "
"produkční servery. Kdokoli kdo zná URL phpMyAdminu může přímo přistoupit k "
-"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id="
-"%1$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/"
-"kbd]."
+"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/kbd]."
#: setup/lib/messages.inc.php:236
msgid "You should use mysqli for performance reasons"
@@ -7806,7 +7830,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID vloženého řádku: %1$d"
@@ -7815,7 +7839,7 @@ msgstr "ID vloženého řádku: %1$d"
msgid "Showing as PHP code"
msgstr "Zobrazuji jako PHP kód"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Zobrazuji SQL dotaz"
@@ -8030,7 +8054,6 @@ msgid "Flush the table (FLUSH)"
msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)"
#: tbl_operations.php:642
-#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Odstranit data nebo tabulku"
@@ -8039,7 +8062,6 @@ msgid "Empty the table (TRUNCATE)"
msgstr "Vyprázdnit tabulku (TRUNCATE)"
#: tbl_operations.php:675
-#| msgid "Drop the table (DROP)"
msgid "Delete the table (DROP)"
msgstr "Odstranit tabulku (DROP)"
diff --git a/po/cy.po b/po/cy.po
index aeb4c8a53..2d5104e51 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
"Last-Translator: \n"
"Language-Team: Welsh \n"
@@ -93,6 +93,7 @@ msgid "Use this value"
msgstr "Defnyddiwch y gwerth hwn"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1361,7 +1362,8 @@ msgstr ""
msgid "Databases"
msgstr "Cronfeydd Data"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1573,22 +1575,45 @@ msgstr ""
msgid "Authenticating..."
msgstr "Yn dilysu..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Coladiad cysylltiad MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Gweld delwedd"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Chwarae sain"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Gwylio fideo"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Lawrlwytho ffeil"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1878,16 +1903,16 @@ msgstr ""
msgid "Overhead"
msgstr "Gorbenion"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Dyw'r gweinydd ddim yn ymateb"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3163,7 +3188,7 @@ msgstr "Indecs"
msgid "Fulltext"
msgstr "Testunllawn"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Dim newid"
@@ -7311,7 +7336,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7320,7 +7345,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/da.po b/po/da.po
index 0f519ae54..34a7966d1 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-21 14:55+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: danish \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Brug denne værdi"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1421,7 +1422,8 @@ msgstr ""
msgid "Databases"
msgstr "Databaser"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1633,22 +1635,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL forbindelses-sammenkøring"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1947,17 +1972,17 @@ msgstr "Kan være anslået. Se FAQ 3.11"
msgid "Overhead"
msgstr "Overhead"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Serveren svarer ikke"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
@@ -3275,7 +3300,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Fuldtekst"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Ingen ændring"
@@ -7733,7 +7758,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7742,7 +7767,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Viser som PHP-kode"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Viser SQL-forespørgsel"
diff --git a/po/de.po b/po/de.po
index 06dd13fff..5ee7031c2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
-"PO-Revision-Date: 2010-07-21 14:45+0200\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
+"PO-Revision-Date: 2010-07-31 21:09+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: german \n"
"MIME-Version: 1.0\n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Diesen Wert verwenden"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1375,7 +1376,8 @@ msgstr ""
msgid "Databases"
msgstr "Datenbanken"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1592,22 +1594,45 @@ msgstr "Kein gültiger Authentisierungsschlüssel angeschlossen"
msgid "Authenticating..."
msgstr "Authentifiziere ..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Seitenerstellung fehlgeschlagen"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Bild anzeigen"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Tonaufnahme abspielen"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Filmaufnahme abspielen"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Datei herunterladen"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1909,18 +1934,18 @@ msgstr ""
msgid "Overhead"
msgstr "Überhang"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
"ist fehlgeschlagen."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Der Server antwortet nicht."
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt "
@@ -3122,7 +3147,7 @@ msgstr "Erstellt von"
#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
-msgstr "MySQL lieferte ein leeres Resultat zurück (d. h. null Zeilen)."
+msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Zeilen)."
#: libraries/import.lib.php:1110
msgid ""
@@ -3285,7 +3310,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Volltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Keine Änderung"
@@ -8056,7 +8081,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID der eingefügten Zeile: %1$d"
@@ -8065,7 +8090,7 @@ msgstr "ID der eingefügten Zeile: %1$d"
msgid "Showing as PHP code"
msgstr "Ansicht als PHP Code"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Ansicht als SQL Abfrage"
@@ -8678,68 +8703,3 @@ msgstr "VIEW Name"
#: view_operations.php:91
msgid "Rename view to"
msgstr "View umbenennen in"
-
-#, fuzzy
-#~| msgid "Table name"
-#~ msgid "Table removal"
-#~ msgstr "Tabellenname"
-
-#~ msgid "BLOB Repository"
-#~ msgstr "BLOB-Repository"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Enabled"
-#~ msgstr "Aktiviert"
-
-#~ msgid "Disable"
-#~ msgstr "Deaktivieren"
-
-#~ msgid "Damaged"
-#~ msgstr "Beschädigt"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Repair"
-#~ msgstr "Reparieren"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Disabled"
-#~ msgstr "Deaktiviert"
-
-#~ msgid "Enable"
-#~ msgstr "Aktivieren"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "extension. Please check your PHP configuration."
-#~ msgstr ""
-#~ "Die Erweiterung [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "kann nicht geladen werden. Bitte überprüfen Sie Ihre PHP-Konfiguration."
-
-#~ msgid ""
-#~ "Couldn't load the iconv or recode extension needed for charset "
-#~ "conversion. Either configure PHP to enable these extensions or disable "
-#~ "charset conversion in phpMyAdmin."
-#~ msgstr ""
-#~ "Die PHP-Erweiterungen iconv und recode, welche für die "
-#~ "Zeichensatzkonvertierung benötigt werden, konnten nicht geladen werden. "
-#~ "Bitte ändern Sie Ihre PHP-Konfiguration und aktivieren Sie diese "
-#~ "Erweiterungen oder deaktivieren Sie die Zeichensatzkonvertierung in "
-#~ "phpMyAdmin."
-
-#~ msgid ""
-#~ "Couldn't use the iconv, libiconv, or recode_string functions, although "
-#~ "the necessary extensions appear to be loaded. Check your PHP "
-#~ "configuration."
-#~ msgstr ""
-#~ "Weder die iconv- noch libiconv- oder recode_string-Funktion konnte "
-#~ "verwandt werden, obwohl die benötigten php-Erweiterungen angeblich "
-#~ "geladen wurden. Bitte überprüfen Sie Ihre PHP-Konfiguration."
-
-#~ msgid "Allow character set conversion"
-#~ msgstr "Zeichensatzkonvertierung erlauben."
-
-#~ msgid "Default character set used for conversions"
-#~ msgstr "Standardzeichensatz bei Konvertierung"
-
-#~ msgid "Default character set"
-#~ msgstr "Standardzeichensatz"
diff --git a/po/el.po b/po/el.po
index 84e99a0ba..3a18d462c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal \n"
"Language-Team: greek \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Χρήση αυτής της τιμής"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1406,7 +1407,8 @@ msgstr ""
msgid "Databases"
msgstr "Βάσεις Δεδομένων"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1621,22 +1623,45 @@ msgstr "Δεν τοποθετήθηκε κανένα έγκυρο κλειδί
msgid "Authenticating..."
msgstr "Επικύρωση..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Η δημιουργία σελίδας απέτυχε"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Προβολή εικόνας"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Αναπαραγωγή ήχου"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Προβολή βίντεο"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Λήψη αρχείου"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1937,16 +1962,16 @@ msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις Σ
msgid "Overhead"
msgstr "Περίσσεια"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Ο διακομιστής δεν αποκρίνεται"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)"
@@ -3323,7 +3348,7 @@ msgstr "Ευρετήριο"
msgid "Fulltext"
msgstr "Πλήρες κείμενο"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Χωρίς αλλαγή"
@@ -8126,7 +8151,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
@@ -8135,7 +8160,7 @@ msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
msgid "Showing as PHP code"
msgstr "Εμφάνιση ως κώδικά PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Εμφάνιση ερωτήματος SQL"
diff --git a/po/en_GB.po b/po/en_GB.po
index a5d94b40f..bfc5a3bdf 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
-"PO-Revision-Date: 2010-07-26 16:54+0200\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
+"PO-Revision-Date: 2010-08-09 22:22+0200\n"
"Last-Translator: Robert Readman \n"
"Language-Team: english-gb \n"
"MIME-Version: 1.0\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:36 browse_foreigners.php:57
#: libraries/display_tbl.lib.php:415 server_privileges.php:1510
@@ -90,18 +90,17 @@ msgid "Use this value"
msgstr "Use this value"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "No blob streaming server configured!"
#: bs_disp_as_mime_type.php:35
-#, fuzzy
-#| msgid "Failed to write file to disk."
msgid "Failed to fetch headers"
-msgstr "Failed to write file to disk."
+msgstr "Failed to fetch headers"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Failed to open remote URL"
#: db_create.php:44
#, php-format
@@ -249,10 +248,8 @@ msgid "and then"
msgstr "and then"
#: db_operations.php:379
-#, fuzzy
-#| msgid "Rename database to"
msgid "Remove database"
-msgstr "Rename database to"
+msgstr "Remove database"
#: db_operations.php:391
#, php-format
@@ -260,10 +257,8 @@ msgid "Database %s has been dropped."
msgstr "Database %s has been dropped."
#: db_operations.php:396
-#, fuzzy
-#| msgid "Go to database"
msgid "Drop the database (DROP)"
-msgstr "Go to database"
+msgstr "Drop the database (DROP)"
#: db_operations.php:424
msgid "Copy database to"
@@ -315,16 +310,13 @@ msgid "Collation"
msgstr "Collation"
#: db_operations.php:498 pdf_schema.php:32
-#, fuzzy, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. To find out why click %shere%s."
+#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"The additional features for working with linked tables have been "
-"deactivated. To find out why click %shere%s."
+"The phpMyAdmin configuration storage has been deactivated. To find out why "
+"click %shere%s."
#: db_operations.php:531
msgid "Edit PDF Pages"
@@ -1360,7 +1352,8 @@ msgstr ""
msgid "Databases"
msgstr "Databases"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1569,22 +1562,45 @@ msgstr "No valid authentication key plugged"
msgid "Authenticating..."
msgstr "Authenticating..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr "PBMS error"
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Page creation failed"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr "PBMS get BLOB info failed:"
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr "get BLOB Content-Type failed"
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "View image"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Play audio"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "View video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Download file"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr "Could not open file: %s"
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1881,16 +1897,16 @@ msgstr ""
msgid "Overhead"
msgstr "Overhead"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Connection for controluser as defined in your configuration failed."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "The server is not responding"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
@@ -2500,20 +2516,12 @@ msgstr ""
"TABLE or when creating indexes with CREATE INDEX or ALTER TABLE."
#: libraries/engines/pbms.lib.php:31
-#, fuzzy
-#| msgid "Garbage threshold"
msgid "Garbage Threshold"
-msgstr "Garbage threshold"
+msgstr "Garbage Threshold"
#: libraries/engines/pbms.lib.php:32
-#, fuzzy
-#| msgid ""
-#| "The percentage of garbage in a data log file before it is compacted. This "
-#| "is a value between 1 and 99. The default is 50."
msgid "The percentage of garbage in a repository file before it is compacted."
-msgstr ""
-"The percentage of garbage in a data log file before it is compacted. This is "
-"a value between 1 and 99. The default is 50."
+msgstr "The percentage of garbage in a repository file before it is compacted."
#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69
#: server_synchronize.php:1161
@@ -2525,10 +2533,12 @@ msgid ""
"The port for the PBMS stream-based communications. Setting this value to 0 "
"will disable HTTP communication with the daemon."
msgstr ""
+"The port for the PBMS stream-based communications. Setting this value to 0 "
+"will disable HTTP communication with the daemon."
#: libraries/engines/pbms.lib.php:41
msgid "Repository Threshold"
-msgstr ""
+msgstr "Repository Threshold"
#: libraries/engines/pbms.lib.php:42
msgid ""
@@ -2536,22 +2546,25 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
+"The maximum size of a BLOB repository file. You may use Kb, MB or GB to "
+"indicate the unit of the value. A value in bytes is assumed when no unit is "
+"specified."
#: libraries/engines/pbms.lib.php:46
msgid "Temp Blob Timeout"
-msgstr ""
+msgstr "Temp Blob Timeout"
#: libraries/engines/pbms.lib.php:47
msgid ""
"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed "
"after this time, unless they are referenced by a record in the database."
msgstr ""
+"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed "
+"after this time, unless they are referenced by a record in the database."
#: libraries/engines/pbms.lib.php:51
-#, fuzzy
-#| msgid "Log file threshold"
msgid "Temp Log Threshold"
-msgstr "Log file threshold"
+msgstr "Temp Log Threshold"
#: libraries/engines/pbms.lib.php:52
msgid ""
@@ -2559,26 +2572,33 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
+"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to "
+"indicate the unit of the value. A value in bytes is assumed when no unit is "
+"specified."
#: libraries/engines/pbms.lib.php:56
msgid "Max Keep Alive"
-msgstr ""
+msgstr "Max Keep Alive"
#: libraries/engines/pbms.lib.php:57
msgid ""
"The timeout for inactive connection with the keep-alive flag set. After this "
"time the connection will be closed. The time-out is in milliseconds (1/1000)."
msgstr ""
+"The timeout for inactive connection with the keep-alive flag set. After this "
+"time the connection will be closed. The time-out is in milliseconds (1/1000)."
#: libraries/engines/pbms.lib.php:61
msgid "Metadata Headers"
-msgstr ""
+msgstr "Metadata Headers"
#: libraries/engines/pbms.lib.php:62
msgid ""
"A \":\" delimited list of metadata headers to be used to initialize the "
"pbms_metadata_header table when a database is created."
msgstr ""
+"A \":\" delimited list of metadata headers to be used to initialize the "
+"pbms_metadata_header table when a database is created."
#: libraries/engines/pbxt.lib.php:22
msgid "Index cache size"
@@ -3226,7 +3246,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "No change"
@@ -6627,19 +6647,14 @@ msgid "Signon login options"
msgstr "Signon login options"
#: setup/lib/messages.inc.php:128
-#, fuzzy
-#| msgid ""
-#| "Configure phpMyAdmin database to gain access to additional features, see "
-#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] "
-#| "in documentation"
msgid ""
"Configure phpMyAdmin database to gain access to additional features, see "
"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] "
"in documentation"
msgstr ""
"Configure phpMyAdmin database to gain access to additional features, see "
-"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in "
-"documentation"
+"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] "
+"in documentation"
#: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290
msgid "PMA database"
@@ -7805,7 +7820,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Inserted row id: %1$d"
@@ -7814,7 +7829,7 @@ msgstr "Inserted row id: %1$d"
msgid "Showing as PHP code"
msgstr "Showing as PHP code"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Showing SQL query"
@@ -8029,20 +8044,16 @@ msgid "Flush the table (FLUSH)"
msgstr "Flush the table (FLUSH)"
#: tbl_operations.php:642
-#, fuzzy
-#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
-msgstr "Delete tracking data for this table"
+msgstr "Delete data or table"
#: tbl_operations.php:657
msgid "Empty the table (TRUNCATE)"
-msgstr ""
+msgstr "Empty the table (TRUNCATE)"
#: tbl_operations.php:675
-#, fuzzy
-#| msgid "Go to database"
msgid "Delete the table (DROP)"
-msgstr "Go to database"
+msgstr "Delete the table (DROP)"
#: tbl_operations.php:696
msgid "Partition maintenance"
@@ -8413,66 +8424,3 @@ msgstr "VIEW name"
#: view_operations.php:91
msgid "Rename view to"
msgstr "Rename view to"
-
-#, fuzzy
-#~| msgid "Table name"
-#~ msgid "Table removal"
-#~ msgstr "Table name"
-
-#~ msgid "BLOB Repository"
-#~ msgstr "BLOB Repository"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Enabled"
-#~ msgstr "Enabled"
-
-#~ msgid "Disable"
-#~ msgstr "Disable"
-
-#~ msgid "Damaged"
-#~ msgstr "Damaged"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Repair"
-#~ msgstr "Repair"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Disabled"
-#~ msgstr "Disabled"
-
-#~ msgid "Enable"
-#~ msgstr "Enable"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "extension. Please check your PHP configuration."
-#~ msgstr ""
-#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "extension. Please check your PHP configuration."
-
-#~ msgid ""
-#~ "Couldn't load the iconv or recode extension needed for charset "
-#~ "conversion. Either configure PHP to enable these extensions or disable "
-#~ "charset conversion in phpMyAdmin."
-#~ msgstr ""
-#~ "Couldn't load the iconv or recode extension needed for charset "
-#~ "conversion. Either configure PHP to enable these extensions or disable "
-#~ "charset conversion in phpMyAdmin."
-
-#~ msgid ""
-#~ "Couldn't use the iconv, libiconv, or recode_string functions, although "
-#~ "the necessary extensions appear to be loaded. Check your PHP "
-#~ "configuration."
-#~ msgstr ""
-#~ "Couldn't use the iconv, libiconv, or recode_string functions, although "
-#~ "the necessary extensions appear to be loaded. Check your PHP "
-#~ "configuration."
-
-#~ msgid "Allow character set conversion"
-#~ msgstr "Allow character set conversion"
-
-#~ msgid "Default character set used for conversions"
-#~ msgstr "Default character set used for conversions"
-
-#~ msgid "Default character set"
-#~ msgstr "Default character set"
diff --git a/po/es.po b/po/es.po
index 3476f4ddb..6dea95a42 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal \n"
"Language-Team: spanish \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Use este valor"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1439,7 +1440,8 @@ msgstr ""
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1660,22 +1662,45 @@ msgstr "No se ha conectado una llave de autenticación válida"
msgid "Authenticating..."
msgstr "Autenticando..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Cotejamiento de las conexiones MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Ver imagen"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Tocar audio"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Ver vídeo"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Descargar archivo"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1978,18 +2003,18 @@ msgstr "Podría ser aproximado. Léase la FAQ 3.11"
msgid "Overhead"
msgstr "Residuo a depurar"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La conexión para controluser, como está definida en su configuración, "
"fracasó."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "El servidor no está respondiendo"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(o el socket del servidor MySQL local no está configurado correctamente)"
@@ -3381,7 +3406,7 @@ msgstr "Índice"
msgid "Fulltext"
msgstr "Texto completo"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Sin cambios"
@@ -8105,7 +8130,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "La Id de la fila insertada es: %1$d"
@@ -8114,7 +8139,7 @@ msgstr "La Id de la fila insertada es: %1$d"
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Mostrando la consulta SQL"
diff --git a/po/et.po b/po/et.po
index aa0a54283..af4bf14e9 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Kasuta seda väärtust"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1421,7 +1422,8 @@ msgstr ""
msgid "Databases"
msgstr "Andmebaasid"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1630,22 +1632,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL ühenduse kollatsioon"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1947,16 +1972,16 @@ msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11"
msgid "Overhead"
msgstr "Ülejääv"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Server ei vasta"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)"
@@ -3290,7 +3315,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Täistekst"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Ei muudetud"
@@ -7788,7 +7813,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7797,7 +7822,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Näitan PHP koodina"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Näitan SQL päringut"
diff --git a/po/eu.po b/po/eu.po
index f579edeca..bfff27dde 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Erabili balio hau"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1416,7 +1417,8 @@ msgstr ""
msgid "Databases"
msgstr "Datu-baseak"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1621,22 +1623,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1933,16 +1956,16 @@ msgstr ""
msgid "Overhead"
msgstr "Arazteko hondakina"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3246,7 +3269,7 @@ msgstr "Indizea"
msgid "Fulltext"
msgstr "Testu osoa"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Aldaketarik ez"
@@ -7606,7 +7629,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7615,7 +7638,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 1e17d7f38..f50e197e0 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \n"
@@ -87,6 +87,7 @@ msgid "Use this value"
msgstr "این مقدار را استفاده کنید"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1399,7 +1400,8 @@ msgstr ""
msgid "Databases"
msgstr "پايگاههاي داده"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1601,22 +1603,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1914,16 +1937,16 @@ msgstr ""
msgid "Overhead"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3224,7 +3247,7 @@ msgstr "فهرست"
msgid "Fulltext"
msgstr "كاملا متن"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr ""
@@ -7455,7 +7478,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7464,7 +7487,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 4df68e241..2a022843e 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Käytä tätä arvoa"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1427,7 +1428,8 @@ msgstr ""
msgid "Databases"
msgstr "Tietokannat"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1643,22 +1645,45 @@ msgstr "Kelvollista todennusavainta ei ole asetettu"
msgid "Authenticating..."
msgstr "Todennetaan..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL-yhteyden aakkosjärjestys"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Näytä kuva"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Toista ääni"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Näytä video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Lataa tiedosto"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1958,17 +1983,17 @@ msgstr "Saattaa olla summittainen. Katso FAQ 3.11"
msgid "Overhead"
msgstr "Ylijäämä"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Palvelin ei vastaa"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty "
@@ -3340,7 +3365,7 @@ msgstr "Indeksi"
msgid "Fulltext"
msgstr "Koko teksti"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Ei muutoksia"
@@ -8088,7 +8113,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Lisätyn rivin tunnus: %1$d"
@@ -8097,7 +8122,7 @@ msgstr "Lisätyn rivin tunnus: %1$d"
msgid "Showing as PHP code"
msgstr "Näytetään PHP-koodina"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Näytetään SQL-kysely"
diff --git a/po/fr.po b/po/fr.po
index dd929e136..cf3cfc0ab 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
-"PO-Revision-Date: 2010-07-21 14:41+0200\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
+"PO-Revision-Date: 2010-08-06 14:16+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:36 browse_foreigners.php:57
#: libraries/display_tbl.lib.php:415 server_privileges.php:1510
@@ -90,18 +90,18 @@ msgid "Use this value"
msgstr "Utiliser cette valeur"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Aucun serveur blob streaming configuré!"
#: bs_disp_as_mime_type.php:35
-#, fuzzy
#| msgid "Failed to write file to disk."
msgid "Failed to fetch headers"
-msgstr "Erreur lors de l'écriture du fichier sur disque."
+msgstr "Erreur d'accès aux en-têtes"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Échec d'ouverture du URL distant"
#: db_create.php:44
#, php-format
@@ -249,10 +249,9 @@ msgid "and then"
msgstr "et ensuite"
#: db_operations.php:379
-#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
-msgstr "Changer le nom de la base de données pour"
+msgstr "Supprimer la base de données"
#: db_operations.php:391
#, php-format
@@ -260,10 +259,9 @@ msgid "Database %s has been dropped."
msgstr "La base de données %s a été effacée."
#: db_operations.php:396
-#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
-msgstr "Aller à la base de données"
+msgstr "Supprimer la base de données (DROP)"
#: db_operations.php:424
msgid "Copy database to"
@@ -315,7 +313,7 @@ msgid "Collation"
msgstr "Interclassement"
#: db_operations.php:498 pdf_schema.php:32
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
#| "deactivated. To find out why click %shere%s."
@@ -323,8 +321,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. "
-"Pour une analyse du problème, cliquez %sici%s."
+"Le stockage des configurations phpMyAdmin a été désactivé. Pour une analyse "
+"du problème, cliquez %sici%s."
#: db_operations.php:531
msgid "Edit PDF Pages"
@@ -1373,7 +1371,8 @@ msgstr ""
msgid "Databases"
msgstr "Bases de données"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1586,22 +1585,43 @@ msgstr "La clé d'authentification n'est pas branchée"
msgid "Authenticating..."
msgstr "Authentification en cours..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr "Erreur PBMS"
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr "La connexion PBMS a échoué :"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr "L'accès aux informations BLOB de PBMS a échoué :"
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr "L'accès au Content-Type du BLOB a échoué"
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Afficher l'image"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Lecture audio"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Lecture vidéo"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Télécharger"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr "Échec d'ouverture du fichier %s"
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1697,10 +1717,9 @@ msgid "MySQL said: "
msgstr "MySQL a répondu: "
#: libraries/common.lib.php:1129
-#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
-msgstr "Connexion au serveur MySQL impossible"
+msgstr "Connexion au validateur SQL impossible"
#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350
msgid "Explain SQL"
@@ -1904,17 +1923,17 @@ msgstr ""
msgid "Overhead"
msgstr "Perte"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La connexion au controluser tel que défini dans votre configuration a échoué."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Le serveur ne répond pas"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(ou l'interface de connexion (socket) vers le serveur MySQL local n'est pas "
@@ -2531,21 +2550,18 @@ msgstr ""
"ALTER TABLE."
#: libraries/engines/pbms.lib.php:31
-#, fuzzy
#| msgid "Garbage threshold"
msgid "Garbage Threshold"
msgstr "Seuil des informations parasites"
#: libraries/engines/pbms.lib.php:32
-#, fuzzy
#| msgid ""
#| "The percentage of garbage in a data log file before it is compacted. This "
#| "is a value between 1 and 99. The default is 50."
msgid "The percentage of garbage in a repository file before it is compacted."
msgstr ""
"Le pourcentage d'information parasites dans un journal de données au-delà "
-"duquel il est comprimé. Il s'agit d'une valeur entre 1 et 99. La valeur par "
-"défaut est 50."
+"duquel il est comprimé."
#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69
#: server_synchronize.php:1161
@@ -2557,10 +2573,12 @@ msgid ""
"The port for the PBMS stream-based communications. Setting this value to 0 "
"will disable HTTP communication with the daemon."
msgstr ""
+"Le port de communication PBMS. La valeur 0 désactivera la communication HTTP "
+"avec le serveur."
#: libraries/engines/pbms.lib.php:41
msgid "Repository Threshold"
-msgstr ""
+msgstr "Seuil du dépôt"
#: libraries/engines/pbms.lib.php:42
msgid ""
@@ -2568,10 +2586,13 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
+"La taille maximale d'un fichier de dépôt BLOB. Vous pouvez utiliser Kb, MB "
+"ou GB pour indiquer l'unité de la valeur. Une valeur en octets est assumée "
+"si aucune unité n'est spécifiée."
#: libraries/engines/pbms.lib.php:46
msgid "Temp Blob Timeout"
-msgstr ""
+msgstr "Temps limite du Blob temporaire"
#: libraries/engines/pbms.lib.php:47
msgid ""
@@ -3262,7 +3283,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Texte entier"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Pas de modifications"
@@ -7912,7 +7933,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identifiant de l'enregistrement inséré : %1$d"
@@ -7921,7 +7942,7 @@ msgstr "Identifiant de l'enregistrement inséré : %1$d"
msgid "Showing as PHP code"
msgstr "Affichage du code PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Affichage de la requête SQL"
@@ -8528,67 +8549,3 @@ msgstr "Nom de la vue"
#: view_operations.php:91
msgid "Rename view to"
msgstr "Changer le nom de la vue pour"
-
-#, fuzzy
-#~| msgid "Table name"
-#~ msgid "Table removal"
-#~ msgstr "Nom de la table"
-
-#~ msgid "BLOB Repository"
-#~ msgstr "Dépôt BLOB"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Enabled"
-#~ msgstr "Activé"
-
-#~ msgid "Disable"
-#~ msgstr "Désactiver"
-
-#~ msgid "Damaged"
-#~ msgstr "Endommagé"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Repair"
-#~ msgstr "Réparer"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Disabled"
-#~ msgstr "Désactivé"
-
-#~ msgid "Enable"
-#~ msgstr "Activer"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "extension. Please check your PHP configuration."
-#~ msgstr ""
-#~ "PHP ne peut charger l'extension [a@http://php.net/%1$s@Documentation][em]%"
-#~ "1$s[/em][/a]. Veuillez vérifier votre configuration de PHP."
-
-#~ msgid ""
-#~ "Couldn't load the iconv or recode extension needed for charset "
-#~ "conversion. Either configure PHP to enable these extensions or disable "
-#~ "charset conversion in phpMyAdmin."
-#~ msgstr ""
-#~ "Erreur lors du chargement de l'extension iconv ou recode, utilisée pour "
-#~ "convertir le jeu de caractères. Veuillez activer l'une de ces extensions "
-#~ "dans PHP, ou désactiver la conversion des jeux de caractères dans "
-#~ "phpMyAdmin."
-
-#~ msgid ""
-#~ "Couldn't use the iconv, libiconv, or recode_string functions, although "
-#~ "the necessary extensions appear to be loaded. Check your PHP "
-#~ "configuration."
-#~ msgstr ""
-#~ "Erreur lors de l'utilisation de iconv, libiconv et recode_string, alors "
-#~ "que ces extensions semblent chargées. Veuillez vérifier votre "
-#~ "configuration de PHP."
-
-#~ msgid "Allow character set conversion"
-#~ msgstr "Active la conversion des caractères"
-
-#~ msgid "Default character set used for conversions"
-#~ msgstr "Utilisé pour les conversions"
-
-#~ msgid "Default character set"
-#~ msgstr "Jeu de caractères par défaut"
diff --git a/po/gl.po b/po/gl.po
index 64bbf93d2..b6192942e 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: galician \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Usar este valor"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1429,7 +1430,8 @@ msgstr ""
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1646,22 +1648,45 @@ msgstr "Non se meteu ningunha chave de autenticación válida"
msgid "Authenticating..."
msgstr "A autenticar..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Codificación de caracteres (Collation) da conexión de MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Ver a imaxe"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Reproducir o son"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Ver o vídeo"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Descargar o ficheiro"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1965,17 +1990,17 @@ msgstr "Pode non ser exacto. Consulte a FAQ 3.11"
msgid "Overhead"
msgstr "De máis (Overhead)"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Fallou a conexión para controluser tal e como se define na súa configuración."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "O servidor non está a responder"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(ou o socket local do servidor de MySQL non se configurou correctamente)"
@@ -3351,7 +3376,7 @@ msgstr "Índice"
msgid "Fulltext"
msgstr "Texto completo"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Sen cambios"
@@ -8134,7 +8159,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identificador da fileira inserida: %1$d"
@@ -8143,7 +8168,7 @@ msgstr "Identificador da fileira inserida: %1$d"
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Mostrar procura SQL"
diff --git a/po/he.po b/po/he.po
index 18f3805e6..3d3b86854 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew \n"
@@ -86,6 +86,7 @@ msgid "Use this value"
msgstr "השתמש בערך זה"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1403,7 +1404,8 @@ msgstr ""
msgid "Databases"
msgstr "מאגרי נתונים"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1609,22 +1611,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "קידוד חיבור MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1921,16 +1946,16 @@ msgstr "יכול להיות הערכה. ראה FAQ 3.11"
msgid "Overhead"
msgstr "תקורה"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "השרת אינו מגיב"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3235,7 +3260,7 @@ msgstr "אינדקס"
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "ללא שינוי"
@@ -7494,7 +7519,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7503,7 +7528,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 3ba811bbf..34e5daa92 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-05-21 05:48+0200\n"
"Last-Translator: \n"
"Language-Team: hindi \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "इस मूल्य का उपयोग करें"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1366,7 +1367,8 @@ msgstr "सूचकांक %1s और %2s बराबर लगने के
msgid "Databases"
msgstr " डाटाबेस"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1572,22 +1574,43 @@ msgstr "कोई वैध प्रमाणीकरण कुंजी न
msgid "Authenticating..."
msgstr "सत्यापन."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "छवि देखें"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "ऑडियो चलायें"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "वीडियो देखें"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "फाइल डाउनलोड करें"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1875,16 +1898,16 @@ msgstr ""
msgid "Overhead"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3171,7 +3194,7 @@ msgstr ""
msgid "Fulltext"
msgstr ""
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "कोइ बदलाव नहीं"
@@ -7344,7 +7367,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7353,7 +7376,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index e2023abf0..3a35fcd0f 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: croatian
\n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Upotrijebi ovu vrijednost"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1434,7 +1435,8 @@ msgstr ""
msgid "Databases"
msgstr "Baze podataka"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1644,22 +1646,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL uspoređivanje veza"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1962,18 +1987,18 @@ msgstr "Može biti približno. Pogledajte ČPP 3.11"
msgid "Overhead"
msgstr "Prepunjenje"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
"konfiguraciji nije uspjelo."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Poslužitelj ne odgovara"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
@@ -3342,7 +3367,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Puni tekst"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Bez izmjena"
@@ -7875,7 +7900,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Umetnut ID retka: %1$d"
@@ -7884,7 +7909,7 @@ msgstr "Umetnut ID retka: %1$d"
msgid "Showing as PHP code"
msgstr "Prikazivanje kao PHP koda"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Prikazivanje SQL upita"
diff --git a/po/hu.po b/po/hu.po
index 58c70494d..2512061c8 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:22+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: hungarian \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Ezen érték használata"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1435,7 +1436,8 @@ msgstr ""
msgid "Databases"
msgstr "Adatbázisok"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1648,22 +1650,45 @@ msgstr "Nem történt meg érvényes hitelesítő kulcs csatlakoztatása"
msgid "Authenticating..."
msgstr "Hitelesítés..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL kapcsolat illesztése"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Kép megtekintése"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Hang lejátszása"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Videó megtekintése"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Fájl letöltése"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1966,18 +1991,18 @@ msgstr "Becsült érték lehet. Lásd: GYIK 3.11"
msgid "Overhead"
msgstr "Felülírás"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem "
"sikerült."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "A szerver nem válaszol"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(vagy nem megfelelően állították be a helyi MySQL szerver "
@@ -3352,7 +3377,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Teljes szöveg"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Nincs változás"
@@ -8115,7 +8140,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "A beszúrt sor azonosítószáma: %1$d"
@@ -8124,7 +8149,7 @@ msgstr "A beszúrt sor azonosítószáma: %1$d"
msgid "Showing as PHP code"
msgstr "Megjelenítés PHP kódként"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Megjelenítés SQL lekérdezésként"
diff --git a/po/id.po b/po/id.po
index 2fdd2c315..e5b78536d 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-06-16 01:45+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "gunakan nilai ini"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1407,7 +1408,8 @@ msgstr ""
msgid "Databases"
msgstr "Database"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1613,22 +1615,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Penyortiran koneksi MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Tampilan View"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Video View"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Unduh file"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1928,17 +1953,17 @@ msgstr ""
msgid "Overhead"
msgstr "Kelebihan (Overhead)"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Server tidak menjawab"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(atau konfigurasi socket dari server MySQL tidak benar)"
@@ -3264,7 +3289,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Teks penuh"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Tidak ada perubahan"
@@ -7642,7 +7667,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7651,7 +7676,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/it.po b/po/it.po
index ab8452731..08cf63062 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-05-24 21:25+0200\n"
"Last-Translator: Fabio \n"
"Language-Team: italian \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Usa questa opzione"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1384,7 +1385,8 @@ msgstr ""
msgid "Databases"
msgstr "Database"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1595,22 +1597,45 @@ msgstr "Nessuna chiave di autentificazione valida inserita"
msgid "Authenticating..."
msgstr "Autenticazione..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Creazione della pagina fallita"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Visualizza immagine"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Avvia audio"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Visualizza video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Scarica file"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1908,17 +1933,17 @@ msgstr "Può essere approssimato. Vedere FAQ 3.11"
msgid "Overhead"
msgstr "In eccesso"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connessione per controluser come definito nella configurazione fallita."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Il server non risponde"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(o il socket del server locale MySQL non è correttamente configurato)"
@@ -3292,7 +3317,7 @@ msgstr "Indice"
msgid "Fulltext"
msgstr "Testo completo"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Nessun cambiamento"
@@ -7861,7 +7886,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Inserita riga id: %1$d"
@@ -7870,7 +7895,7 @@ msgstr "Inserita riga id: %1$d"
msgid "Showing as PHP code"
msgstr "Mostrando il codice PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Mostrando la query SQL"
diff --git a/po/ja.po b/po/ja.po
index 2d0afbd27..459de4c34 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal \n"
"Language-Team: japanese \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "この値を利用する"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1419,7 +1420,8 @@ msgstr ""
msgid "Databases"
msgstr "データベース"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1626,22 +1628,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL 接続の照合順序"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1938,17 +1963,17 @@ msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください"
msgid "Overhead"
msgstr "オーバーヘッド"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました"
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "サーバが応答しません"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)"
@@ -3307,7 +3332,7 @@ msgstr "インデックス"
msgid "Fulltext"
msgstr "全文"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "変更なし"
@@ -7729,7 +7754,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "id %1$d の行を挿入しました"
@@ -7738,7 +7763,7 @@ msgstr "id %1$d の行を挿入しました"
msgid "Showing as PHP code"
msgstr "PHP コードとして表示"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "SQL クエリを表示"
diff --git a/po/ka.po b/po/ka.po
index 9b70c90db..d88a00378 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "გამოიყენე ეს ველი"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1431,7 +1432,8 @@ msgstr ""
msgid "Databases"
msgstr "მონაცემთა ბაზები"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1642,22 +1644,45 @@ msgstr "No valid authentication key plugged"
msgid "Authenticating..."
msgstr "ავთენტიფიკაცია..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL კავშირის კოლაცია"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "გამოსახულების ჩვენება"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "ხმის დაკვრა"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "ვიდეოს ჩვენება"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "ფაილის ჩამოტვირთვა"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1961,16 +1986,16 @@ msgstr ""
msgid "Overhead"
msgstr "Overhead"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Connection for controluser as defined in your configuration failed."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "სერვერი არ პასუხობს"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
@@ -3340,7 +3365,7 @@ msgstr "ინდექსი"
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "ცვლილების გარეშე"
@@ -8015,7 +8040,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ჩამატებული სტრიქონის id: %1$d"
@@ -8024,7 +8049,7 @@ msgstr "ჩამატებული სტრიქონის id: %1$d"
msgid "Showing as PHP code"
msgstr "PHP კოდის სახით ჩვენება"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Showing SQL query"
diff --git a/po/ko.po b/po/ko.po
index fc45cbb63..aa1b3d66b 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: \n"
"Language-Team: korean \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "이 값을 사용합니다"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1358,7 +1359,8 @@ msgstr ""
msgid "Databases"
msgstr "데이터베이스 "
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1562,22 +1564,43 @@ msgstr ""
msgid "Authenticating..."
msgstr "인증중입니다..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1870,16 +1893,16 @@ msgstr ""
msgid "Overhead"
msgstr "부담"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "서버 응답이 없습니다"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3177,7 +3200,7 @@ msgstr "인덱스"
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "변화 없음"
@@ -7434,7 +7457,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7443,7 +7466,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index de3005849..abb1f7f2f 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis \n"
"Language-Team: lithuanian \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Naudokite šią reikšmę"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1416,7 +1417,8 @@ msgstr ""
msgid "Databases"
msgstr "Duombazės"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1629,22 +1631,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL prisijungimo rūšiavimas"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Žiūrėti paveikslėlį"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Groti garsą"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Žiūrėti video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Atsisiųsti failą"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1942,16 +1967,16 @@ msgstr "Gali būti apytikslis. Žiūrėkite DUK 3.11"
msgid "Overhead"
msgstr "Perteklius"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Serveris neatsako"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
@@ -3273,7 +3298,7 @@ msgstr "Indeksas"
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Nėra pakeitimų"
@@ -7670,7 +7695,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7679,7 +7704,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Rodomas PHP kodas"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Rodoma SQL užklausa"
diff --git a/po/lv.po b/po/lv.po
index f57e9069a..86c730d47 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Lietot šo vērtību"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1412,7 +1413,8 @@ msgstr ""
msgid "Databases"
msgstr "Datubāzes"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1620,22 +1622,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL konekcijas kārtošana"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1932,16 +1957,16 @@ msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
msgid "Overhead"
msgstr "Pārtēriņš"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Serveris neatbild"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3249,7 +3274,7 @@ msgstr "Indekss"
msgid "Fulltext"
msgstr "Pilni teksti"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Netika labots"
@@ -7599,7 +7624,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7608,7 +7633,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index 5fec77834..e387cfa89 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Користи ја оваа вредност"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1412,7 +1413,8 @@ msgstr ""
msgid "Databases"
msgstr "База на податоци"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1621,22 +1623,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Колација за MySQL врска"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1939,16 +1964,16 @@ msgstr ""
msgid "Overhead"
msgstr "Пречекорување"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Серверот не одговара"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
@@ -3275,7 +3300,7 @@ msgstr "Клуч"
msgid "Fulltext"
msgstr "Текст клуч"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Нема измени"
@@ -7654,7 +7679,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7663,7 +7688,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 8600335e6..ad2b449e7 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
@@ -88,6 +88,7 @@ msgid "Use this value"
msgstr "Уг утгыг хэрэглэх"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1399,7 +1400,8 @@ msgstr ""
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1606,22 +1608,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL холболтын кодлол"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1918,16 +1943,16 @@ msgstr "May be approximate. See FAQ 3.11"
msgid "Overhead"
msgstr "Толгой дээр"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Сервэрээс хариу алга"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
@@ -3244,7 +3269,7 @@ msgstr "Индекс"
msgid "Fulltext"
msgstr "Бүтэнбичвэр"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Солигдохгүй"
@@ -7587,7 +7612,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7596,7 +7621,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP кодоор харуулах"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "SQL асуудал харуулах"
diff --git a/po/ms.po b/po/ms.po
index 0fa3d75bf..bf1d06346 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
@@ -87,6 +87,7 @@ msgid "Use this value"
msgstr ""
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1411,7 +1412,8 @@ msgstr ""
msgid "Databases"
msgstr "pangkalan data"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1613,22 +1615,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1924,16 +1947,16 @@ msgstr ""
msgid "Overhead"
msgstr "Melebihi"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3237,7 +3260,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Tekspenuh"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Tiada perubahan"
@@ -7497,7 +7520,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7506,7 +7529,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index 37d6941e0..a1f3f996c 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 08:43+0200\n"
"Last-Translator: \n"
"Language-Team: norwegian \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Bruk denne verdien"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1361,7 +1362,8 @@ msgstr ""
msgid "Databases"
msgstr "Databaser"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1570,22 +1572,45 @@ msgstr "Ingen gyldig autentiseringsnøkkel plugget"
msgid "Authenticating..."
msgstr "Autentiserer..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Sideopprettelsen feilet"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Vis bilde"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Spill lyd"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Vis video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Last ned fil"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1879,17 +1904,17 @@ msgstr "Kan være unøyaktig. Se FAQ 3.11"
msgid "Overhead"
msgstr "Overheng"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Tjeneren svarer ikke"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
@@ -3226,7 +3251,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Fulltekst"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Ingen endring"
@@ -7819,7 +7844,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Insatt rad id: %1$d"
@@ -7828,7 +7853,7 @@ msgstr "Insatt rad id: %1$d"
msgid "Showing as PHP code"
msgstr "Viser som PHP kode"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Viser SQL spørring"
diff --git a/po/nl.po b/po/nl.po
index 45111ff67..8d75c3ad2 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-05-31 01:06+0200\n"
"Last-Translator: Bjorn \n"
"Language-Team: dutch \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Gebruik deze waarde"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1399,7 +1400,8 @@ msgstr ""
msgid "Databases"
msgstr "Databases"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1615,22 +1617,45 @@ msgstr "Geen geldige authenticatie sleutel aanwezig"
msgid "Authenticating..."
msgstr "Authenticeren..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Het aanmaken van de pagina is mislukt"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Bekijk afbeelding"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Afspelen"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Bekijk video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Download bestand"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1932,18 +1957,18 @@ msgstr ""
msgid "Overhead"
msgstr "Overhead"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connectie voor de controle gebruiker zoals in de configuratie is opgegeven "
"is mislukt."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "De server reageert niet"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)"
@@ -3322,7 +3347,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Volledige tekst"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Geen verandering"
@@ -8109,7 +8134,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Toegevoegd rij nummer: %1$d"
@@ -8118,7 +8143,7 @@ msgstr "Toegevoegd rij nummer: %1$d"
msgid "Showing as PHP code"
msgstr "Getoond als PHP-code"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Toont SQL-query"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 73d8a4392..3a271b9fe 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr ""
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1328,7 +1329,8 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1529,22 +1531,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, possible-php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1831,16 +1854,16 @@ msgstr ""
msgid "Overhead"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3106,7 +3129,7 @@ msgstr ""
msgid "Fulltext"
msgstr ""
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr ""
@@ -7245,7 +7268,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, possible-php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7254,7 +7277,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 383a5b774..3ff1a6a2e 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:29+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: polish \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Użyj tej wartości"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1436,7 +1437,8 @@ msgstr ""
msgid "Databases"
msgstr "Bazy danych"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1648,22 +1650,45 @@ msgstr "Prawidłowy klucz uwierzytelniający nie jest podłączony"
msgid "Authenticating..."
msgstr "Trwa uwierzytelnianie…"
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "System porównań dla połączenia MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Zobacz obraz"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Odegraj dźwięk"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Obejrzyj film"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Ściągnij plik"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1967,18 +1992,18 @@ msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11"
msgid "Overhead"
msgstr "Nadmiar"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku "
"konfiguracyjnym nie powiodło się."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Serwer nie odpowiada"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)"
@@ -3342,7 +3367,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Pełny tekst"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Bez zmian"
@@ -7958,7 +7983,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identyfikator wstawionego rekordu: %1$d"
@@ -7967,7 +7992,7 @@ msgstr "Identyfikator wstawionego rekordu: %1$d"
msgid "Showing as PHP code"
msgstr "Wyświetlany jest kod PHP."
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Wyświetlane jest zapytanie SQL."
diff --git a/po/pt.po b/po/pt.po
index 1d4b194bf..682752253 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:23+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: portuguese \n"
@@ -87,6 +87,7 @@ msgid "Use this value"
msgstr "Usar este valor"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1417,7 +1418,8 @@ msgstr ""
msgid "Databases"
msgstr "Base de Dados"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1622,22 +1624,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1936,16 +1959,16 @@ msgstr ""
msgid "Overhead"
msgstr "Suspenso"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3255,7 +3278,7 @@ msgstr "Índice"
msgid "Fulltext"
msgstr "Texto Completo"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Sem alterações"
@@ -7567,7 +7590,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7576,7 +7599,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
#, fuzzy
msgid "Showing SQL query"
msgstr "Mostrar queries completos"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 324c11ae5..53fa68086 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-13 23:58+0200\n"
"Last-Translator: William Bachion \n"
"Language-Team: brazilian_portuguese \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Usar este valor"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1430,7 +1431,8 @@ msgstr ""
msgid "Databases"
msgstr "Banco de Dados"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1642,22 +1644,45 @@ msgstr ""
msgid "Authenticating..."
msgstr "Autenticando..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Collation de conexão do MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1955,17 +1980,17 @@ msgstr "Pode ser aproximado. Veja o FAQ 3.11"
msgid "Overhead"
msgstr "Sobrecarga"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Conexão para controle do usuário como definido nas configurações falhou."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "O servidor não está respondendo"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(ou o soquete do servidor MySQL local não está configurado corretamente)"
@@ -3302,7 +3327,7 @@ msgstr "Índice"
msgid "Fulltext"
msgstr "Texto completo"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Sem Mudança"
@@ -7835,7 +7860,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id da linha inserida: %1$d"
@@ -7844,7 +7869,7 @@ msgstr "Id da linha inserida: %1$d"
msgid "Showing as PHP code"
msgstr "Exibindo como código PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Exibindo consulta SQL"
diff --git a/po/ro.po b/po/ro.po
index 8aae33637..58b2604bf 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: romanian \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Folosește această valoare"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1435,7 +1436,8 @@ msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
msgid "Databases"
msgstr "Baze de date"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1653,22 +1655,45 @@ msgstr "No valid authentication key plugged"
msgid "Authenticating..."
msgstr "Authenticating..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL connection collation"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Vizualizează imaginea"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Redă audio"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Vizualizează video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Descarcă fișierul"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1971,16 +1996,16 @@ msgstr "Poate fi aproximativ. Vezi FAQ 3.11"
msgid "Overhead"
msgstr "Asupra"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Connection for controluser as defined in your configuration failed."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Serverul nu răspunde"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(sau soclul serverului MySQL local nu este configurat momentan)"
@@ -3347,7 +3372,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Tot textul"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Nici o schimbare"
@@ -7874,7 +7899,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID rînd inserat: %1$d"
@@ -7883,7 +7908,7 @@ msgstr "ID rînd inserat: %1$d"
msgid "Showing as PHP code"
msgstr "Afișare ca și cod PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Afișare interogare SQL"
diff --git a/po/ru.po b/po/ru.po
index 6519ba374..9a67b2014 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:27+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: russian \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Использовать это значение"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1435,7 +1436,8 @@ msgstr "Индексы %1$s и %2$s равнозначны и один из ни
msgid "Databases"
msgstr "Базы данных"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1647,22 +1649,45 @@ msgstr "Отсутствует действенный подключенный
msgid "Authenticating..."
msgstr "Идентификация..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Сопоставление соединения с MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Просмотреть изображение"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Воспроизвести аудио"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Просмотреть видео"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Загрузить файл"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1967,7 +1992,7 @@ msgstr "Может быть приблизительно. См. FAQ 3.11"
msgid "Overhead"
msgstr "Фрагментировано"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Не удалось установить подключение для пользователя указанного в директиве "
@@ -1975,11 +2000,11 @@ msgstr ""
"config.inc.php."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Сервер не отвечает"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(либо сокет локального MySQL-сервера некорректно настроен)"
@@ -3351,7 +3376,7 @@ msgstr "Индекс"
msgid "Fulltext"
msgstr "Полнотекстовый"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Нет изменений"
@@ -8151,7 +8176,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Идентификатор вставленной строки: %1$d"
@@ -8160,7 +8185,7 @@ msgstr "Идентификатор вставленной строки: %1$d"
msgid "Showing as PHP code"
msgstr "Отображает как PHP-код"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Отображает SQL-запрос"
diff --git a/po/si.po b/po/si.po
index 6b7067f4d..05c477fd2 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:26+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: sinhala \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Use this value"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1422,7 +1423,8 @@ msgstr ""
msgid "Databases"
msgstr "දත්තගබඩා"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1632,22 +1634,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL සම්බන්ධතා collation"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1947,16 +1972,16 @@ msgstr "සමහර විට ආසන්න වශයෙන්. FAQ 3.11 බ
msgid "Overhead"
msgstr "පිරිවැය"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "සර්වරය ප්රතිචාර නොදක්වයි"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
@@ -3290,7 +3315,7 @@ msgstr "සූචිය"
msgid "Fulltext"
msgstr "සම්පූර්ණ පාඨය"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "වෙනස්කම් නැත"
@@ -7777,7 +7802,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7786,7 +7811,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
#, fuzzy
msgid "Showing SQL query"
msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න"
diff --git a/po/sk.po b/po/sk.po
index b1d352f6b..5af5bbb7d 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:26+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: slovak \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Použiť túto hodnotu"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1428,7 +1429,8 @@ msgstr ""
msgid "Databases"
msgstr "Databázy"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1639,22 +1641,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Overenie MySQL spojenia"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Stiahnuť súbor"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1954,16 +1979,16 @@ msgstr "Môže byť nepresné. Pozri FAQ 3.11"
msgid "Overhead"
msgstr "Naviac"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Server neodpovedá"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
@@ -3295,7 +3320,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Celý text"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Žiadna zmena"
@@ -7810,7 +7835,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7819,7 +7844,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Zobrazujem ako PHP kód"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Zobrazujem SQL dotaz"
diff --git a/po/sl.po b/po/sl.po
index c77f0486c..32280b224 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
-"PO-Revision-Date: 2010-07-16 17:14+0200\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
+"PO-Revision-Date: 2010-08-10 10:16+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
+"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
-"X-Generator: Pootle 2.0.1\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
+"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:36 browse_foreigners.php:57
#: libraries/display_tbl.lib.php:415 server_privileges.php:1510
@@ -90,18 +90,18 @@ msgid "Use this value"
msgstr "Uporabi to vrednost"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Strežnik za pretakanje blob ni konfiguriran!"
#: bs_disp_as_mime_type.php:35
-#, fuzzy
#| msgid "Failed to write file to disk."
msgid "Failed to fetch headers"
-msgstr "Pisanje datoteke na disk je spodletelo."
+msgstr "Pridobivanje glav je spodletelo"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Oddaljenega URL ni bilo mogoče doseči"
#: db_create.php:44
#, php-format
@@ -207,7 +207,7 @@ msgstr "Natisni"
#: db_export.php:28
msgid "View dump (schema) of database"
-msgstr "Preglej povzetek stanja podatkovne zbirke"
+msgstr "Preglej povzetek stanja zbirke podatkov"
#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49
#: db_tracking.php:30 export.php:350 navigation.php:325
@@ -224,7 +224,7 @@ msgstr "Prekliči izbor vsega"
#: db_operations.php:33 tbl_create.php:47
msgid "The database name is empty!"
-msgstr "Ime podatkovne zbirke je prazno!"
+msgstr "Ime zbirke podatkov je prazno!"
#: db_operations.php:231
#, php-format
@@ -249,10 +249,9 @@ msgid "and then"
msgstr "in potem"
#: db_operations.php:379
-#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
-msgstr "Preimenuj zbirko podatkov v"
+msgstr "Odstrani zbirko podatkov"
#: db_operations.php:391
#, php-format
@@ -260,10 +259,9 @@ msgid "Database %s has been dropped."
msgstr "Podatkovna zbirka %s je zavržena."
#: db_operations.php:396
-#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
-msgstr "Pojdi v zbirko podatkov"
+msgstr "Zavrzi zbirko podatkov (DROP)"
#: db_operations.php:424
msgid "Copy database to"
@@ -315,7 +313,7 @@ msgid "Collation"
msgstr "Pravilo za razvrščanje znakov"
#: db_operations.php:498 pdf_schema.php:32
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
#| "deactivated. To find out why click %shere%s."
@@ -323,8 +321,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite "
-"izvedeti zakaj, kliknite %stukaj%s."
+"Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti "
+"zakaj, kliknite %stukaj%s."
#: db_operations.php:531
msgid "Edit PDF Pages"
@@ -498,14 +496,14 @@ msgid "Search results for \"%s\" %s:"
msgstr "Rezultati iskanja \"%s\" %s:"
#: db_search.php:242
-#, fuzzy, php-format
+#, php-format
#| msgid "%s match(es) inside table %s"
msgid "%s match inside table %s"
msgid_plural "%s matches inside table %s"
-msgstr[0] "%s zadetek(ov) v tabeli %s"
-msgstr[1] "%s zadetek(ov) v tabeli %s"
-msgstr[2] "%s zadetek(ov) v tabeli %s"
-msgstr[3] "%s zadetek(ov) v tabeli %s"
+msgstr[0] "%s zadetek v tabeli %s"
+msgstr[1] "%s zadetka v tabeli %s"
+msgstr[2] "%s zadetki v tabeli %s"
+msgstr[3] "%s zadetkov v tabeli %s"
#: db_search.php:249 db_structure.php:75 db_structure.php:76
#: db_structure.php:88 db_structure.php:90 db_structure.php:101
@@ -524,14 +522,14 @@ msgid "Delete"
msgstr "Izbriši"
#: db_search.php:267
-#, fuzzy, php-format
+#, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
msgid_plural "Total: %s matches"
-msgstr[0] "Skupaj: %s zadetek(ov)"
-msgstr[1] "Skupaj: %s zadetek(ov)"
-msgstr[2] "Skupaj: %s zadetek(ov)"
-msgstr[3] "Skupaj: %s zadetek(ov)"
+msgstr[0] "Skupaj: %s zadetek"
+msgstr[1] "Skupaj: %s zadetka"
+msgstr[2] "Skupaj: %s zadetki"
+msgstr[3] "Skupaj: %s zadetkov"
#: db_search.php:281
msgid "Search in database"
@@ -783,7 +781,7 @@ msgstr "Sledi tabeli"
#: db_tracking.php:195
msgid "Database Log"
-msgstr "Dnevnik podatkovne zbirke"
+msgstr "Dnevnik zbirke podatkov"
#: export.php:61
msgid "Selected export type has to be saved in file!"
@@ -1013,7 +1011,6 @@ msgid "Choose column to display"
msgstr "Izberite stolpec za prikaz"
#: js/messages.php:66
-#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Ustvari geslo"
@@ -1370,9 +1367,10 @@ msgstr ""
#: server_databases.php:85 server_privileges.php:1656
#: setup/lib/messages.inc.php:107 test/theme.php:92
msgid "Databases"
-msgstr "Podatkovne zbirke"
+msgstr "Zbirke podatkov"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1586,22 +1584,43 @@ msgstr "Vstavljen ni noben overitveni ključ"
msgid "Authenticating..."
msgstr "Potrjevanje ..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr "Napaka PBMS"
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr "Povezava s PBMS je spodletela:"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr "Pridobivanje informacij BLOB PBMS je spodletelo:"
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr "pridobivanje Content-Type BLOB je spodletelo"
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Ogled slike"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Predvajaj avdio"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Ogled videa"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Prenesi datoteko"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr "Ne morem odpreti datoteke: %s"
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1695,10 +1714,9 @@ msgid "MySQL said: "
msgstr "MySQL je vrnil: "
#: libraries/common.lib.php:1129
-#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
-msgstr "Ne morem se povezati s strežnikom MySQL"
+msgstr "Ne morem se povezati s preverjalnikom SQL!"
#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350
msgid "Explain SQL"
@@ -1838,7 +1856,7 @@ msgstr "Operacije"
#: libraries/core.lib.php:265 libraries/dbg/setup.php:21
#, php-format
msgid "The %s extension is missing. Please check your PHP configuration."
-msgstr ""
+msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP."
#: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21
#: libraries/export/sql.php:412
@@ -1902,18 +1920,18 @@ msgstr ""
msgid "Overhead"
msgstr "Presežek"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
"spodletela."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Strežnik se ne odziva"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)"
@@ -2018,7 +2036,7 @@ msgstr "ime strežnika"
#: libraries/display_export.lib.php:148
msgid "database name"
-msgstr "ime podatkovne zbirke"
+msgstr "ime zbirke podatkov"
#: libraries/display_export.lib.php:151
msgid "table name"
@@ -2524,20 +2542,16 @@ msgstr ""
"ali ustvarjanju indeksov s CREATE INDEX ali ALTER TABLE."
#: libraries/engines/pbms.lib.php:31
-#, fuzzy
#| msgid "Garbage threshold"
msgid "Garbage Threshold"
-msgstr "Omejitev smeti"
+msgstr "Prag smeti"
#: libraries/engines/pbms.lib.php:32
-#, fuzzy
#| msgid ""
#| "The percentage of garbage in a data log file before it is compacted. This "
#| "is a value between 1 and 99. The default is 50."
msgid "The percentage of garbage in a repository file before it is compacted."
-msgstr ""
-"Odstotek smeti v dnevniški datoteki, preden je ta stisnjena. Vrednost je med "
-"1 in 99. Privzeto je 50."
+msgstr "Odstotek smeti v shrambni datoteki, preden je ta stisnjena."
#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69
#: server_synchronize.php:1161
@@ -2549,10 +2563,12 @@ msgid ""
"The port for the PBMS stream-based communications. Setting this value to 0 "
"will disable HTTP communication with the daemon."
msgstr ""
+"Vrata za pretočna sporazumevanja s PBMS. Nastavitev te vrednosti na 0 bo "
+"onemogočilo sporazumevanje HTTP s procesom."
#: libraries/engines/pbms.lib.php:41
msgid "Repository Threshold"
-msgstr ""
+msgstr "Prag shrambe"
#: libraries/engines/pbms.lib.php:42
msgid ""
@@ -2560,22 +2576,27 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
+"Največja velikost shrambne datoteke BLOB. Lahko uporabite Kb, MB ali GB za "
+"določitev enote vrednosti. Ko enota ni navedena, se predpostavi vrednost v "
+"bajtih."
#: libraries/engines/pbms.lib.php:46
msgid "Temp Blob Timeout"
-msgstr ""
+msgstr "Časovna omejitev začasnega Blob"
#: libraries/engines/pbms.lib.php:47
msgid ""
"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed "
"after this time, unless they are referenced by a record in the database."
msgstr ""
+"Časovna omejitev, v sekundah, za začasne BLOB-e. Naloženi podatki BLOB so "
+"odstranjeni po tem času, razen če se na njih sklicuje zapis v zbirki "
+"podatkov."
#: libraries/engines/pbms.lib.php:51
-#, fuzzy
#| msgid "Log file threshold"
msgid "Temp Log Threshold"
-msgstr "Omejitev dnevniške datoetke"
+msgstr "Prag začasnega dnevnika"
#: libraries/engines/pbms.lib.php:52
msgid ""
@@ -2583,26 +2604,34 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
+"Največja velikost dnevniške datoteke začasnega BLOB. Lahko uporabite Kb, MB "
+"ali GB za določitev enote vrednosti. Ko enota ni navedena, se predpostavi "
+"vrednost v bajtih."
#: libraries/engines/pbms.lib.php:56
msgid "Max Keep Alive"
-msgstr ""
+msgstr "Najdaljše vzdrževanje povezave"
#: libraries/engines/pbms.lib.php:57
msgid ""
"The timeout for inactive connection with the keep-alive flag set. After this "
"time the connection will be closed. The time-out is in milliseconds (1/1000)."
msgstr ""
+"Časovna omejitev za nedejavne povezave z določeno zastavico keep-alive. Po "
+"tem času bo povezava prekinjena. Časovna omejitev je v milisekundah "
+"(1/1000)."
#: libraries/engines/pbms.lib.php:61
msgid "Metadata Headers"
-msgstr ""
+msgstr "Glave metapodatkov"
#: libraries/engines/pbms.lib.php:62
msgid ""
"A \":\" delimited list of metadata headers to be used to initialize the "
"pbms_metadata_header table when a database is created."
msgstr ""
+"Seznam glav metapodatkov, ločenih z »:«, ki bo uporabljen za pripravo tabele "
+"pbms_metadata_header, ko je ustvarjena zbirka podatkov."
#: libraries/engines/pbxt.lib.php:22
msgid "Index cache size"
@@ -2647,7 +2676,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:37
msgid "Log file threshold"
-msgstr "Omejitev dnevniške datoetke"
+msgstr "Prag dnevniške datoteke"
#: libraries/engines/pbxt.lib.php:38
msgid ""
@@ -2683,7 +2712,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:52
msgid "Data log threshold"
-msgstr "Omejitev podatkovnega dnevnika"
+msgstr "Prag podatkovnega dnevnika"
#: libraries/engines/pbxt.lib.php:53
msgid ""
@@ -2699,7 +2728,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:57
msgid "Garbage threshold"
-msgstr "Omejitev smeti"
+msgstr "Prag smeti"
#: libraries/engines/pbxt.lib.php:58
msgid ""
@@ -2836,20 +2865,18 @@ msgid "Table structure for table"
msgstr "Struktura tabele"
#: libraries/export/latex.php:13
-#, fuzzy
#| msgid "Content of table __TABLE__"
msgid "Content of table @TABLE@"
-msgstr "Vsebina tabele __TABLE__"
+msgstr "Vsebina tabele @TABLE@"
#: libraries/export/latex.php:14
msgid "(continued)"
msgstr "(nadaljevanje)"
#: libraries/export/latex.php:15
-#, fuzzy
#| msgid "Structure of table __TABLE__"
msgid "Structure of table @TABLE@"
-msgstr "Struktura tabele __TABLE__"
+msgstr "Struktura tabele @TABLE@"
#: libraries/export/latex.php:26
msgid "LaTeX"
@@ -3258,7 +3285,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Polno besedilo"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Brez sprememb"
@@ -3961,7 +3988,7 @@ msgstr ""
#: libraries/transformations/image_jpeg__link.inc.php:9
msgid "Displays a link to download this image."
-msgstr "Pokaže povezavo na grafiko (neposredni BLOB prenos, ipd.)."
+msgstr "Pokaže povezavo za prenos slike."
#: libraries/transformations/text_plain__dateformat.inc.php:9
msgid ""
@@ -4302,7 +4329,7 @@ msgstr "Prosimo, konfigurirajte koordinate za tabelo %s"
#: pdf_schema.php:993
#, php-format
msgid "Schema of the %s database - Page %s"
-msgstr "Shema podatkovne zbirke %s - Stran %s"
+msgstr "Shema zbirke podatkov %s - Stran %s"
#: pdf_schema.php:1011
msgid "No tables"
@@ -4480,7 +4507,7 @@ msgstr "Ni izbranih zbirk podatkov."
#: server_databases.php:60
#, php-format
msgid "%s databases have been dropped successfully."
-msgstr "%s podatkovne zbirke so uspešno zavržene."
+msgstr "%s zbirke podatkov so uspešno zavržene."
#: server_databases.php:85
msgid "Databases statistics"
@@ -4534,7 +4561,7 @@ msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
msgstr ""
-"Obvestilo: Omogočitev statistike podatkovne zbirke lahko povzroči močno "
+"Obvestilo: Omogočitev statistike zbirke podatkov lahko povzroči močno "
"povečan promet med spletnim in podatkovnim strežnikom."
#: server_engines.php:47
@@ -4543,7 +4570,7 @@ msgstr "Pogoni skladiščenja"
#: server_export.php:18
msgid "View dump (schema) of databases"
-msgstr "Pokaži povzetek stanja podatkovnih baz"
+msgstr "Pokaži povzetek stanja zbirk podatkov"
#: server_privileges.php:23 server_privileges.php:265
msgid "Includes all privileges except GRANT."
@@ -4656,7 +4683,7 @@ msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-"Omeji število ukazov za spremembo tabel ali podatkovne zbirke, ki jih "
+"Omeji število ukazov za spremembo tabel ali zbirke podatkov, ki jih "
"uporabnik lahko izvrši v eni uri."
#: server_privileges.php:45 server_privileges.php:651
@@ -4868,7 +4895,7 @@ msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši."
#: server_privileges.php:1614 server_privileges.php:1615
#: server_privileges.php:1616
msgid "Drop the databases that have the same names as the users."
-msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki."
+msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki."
#: server_privileges.php:1632
#, php-format
@@ -4898,8 +4925,8 @@ msgstr "Dodaj privilegije na naslednji podatkovni zbirki"
#: server_privileges.php:1939
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-"Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite "
-"uporabiti dobesedno."
+"Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite uporabiti "
+"dobesedno"
#: server_privileges.php:1942
msgid "Add privileges on the following table"
@@ -5328,7 +5355,7 @@ msgstr "Število zahtev za vstavitev vrstice v tabelo."
#: server_status.php:60
msgid "The number of pages containing data (dirty or clean)."
-msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)"
+msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)."
#: server_status.php:61
msgid "The number of pages currently dirty."
@@ -6268,7 +6295,7 @@ msgstr ""
#: setup/lib/messages.inc.php:22
msgid "Key is too short, it should have at least 8 characters"
-msgstr "Ključ je prekratek, ima naj vsaj 8 znakov."
+msgstr "Ključ je prekratek, ima naj vsaj 8 znakov"
#: setup/lib/messages.inc.php:23
msgid ""
@@ -6379,7 +6406,7 @@ msgid ""
msgstr ""
"Stisne izvoze gzip/bzip2 med izvajanjem, brez večje porabe spomina; če "
"naletite na težave z ustvarjenimi datotekami gzip/bzip2, to funkcijo "
-"onemogočite."
+"onemogočite"
#: setup/lib/messages.inc.php:43
msgid "Compress on the fly"
@@ -6399,11 +6426,11 @@ msgstr "Potrjevanje poizvedb DROP"
#: setup/lib/messages.inc.php:49
msgid "Tab that is displayed when entering a database"
-msgstr "Zavihek, ki se prikaže ob odprtju podatkovne zbirke"
+msgstr "Zavihek, ki se prikaže ob odprtju zbirke podatkov"
#: setup/lib/messages.inc.php:50
msgid "Default database tab"
-msgstr "Privzet zavihek podatkovne zbirke"
+msgstr "Privzet zavihek zbirke podatkov"
#: setup/lib/messages.inc.php:51
msgid "Tab that is displayed when entering a server"
@@ -6513,7 +6540,7 @@ msgstr "Nabor znakov datoteke"
#: setup/lib/messages.inc.php:82
msgid "Database name template"
-msgstr "Predloga imena podatkovne zbirke"
+msgstr "Predloga imena zbirke podatkov"
#: setup/lib/messages.inc.php:83
msgid "Server name template"
@@ -6680,7 +6707,6 @@ msgid "Signon login options"
msgstr "Prijavne možnosti signon"
#: setup/lib/messages.inc.php:128
-#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin database to gain access to additional features, see "
#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] "
@@ -6691,8 +6717,8 @@ msgid ""
"in documentation"
msgstr ""
"Konfigurira zbirko podatkov phpMyAdmin za pridobitev dostopa do dodatnih "
-"funkcij, glej [a@../Documentation.html#linked-tables]infrastrukturo "
-"povezanih tabel[/a] v dokumentaciji"
+"funkcij, glej [a@../Documentation.html#linked-tables]hrambo konfiguracije "
+"phpMyAdmin[/a] v dokumentaciji"
#: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290
msgid "PMA database"
@@ -7032,8 +7058,8 @@ msgid ""
"shown."
msgstr ""
"Število prikazanih vrstic med brskanjem po množici rezultatov. Če množica "
-"rezultatov vsebuje več vrstic, se prikažeta povezavi "Prejšnja" in "
-""Naslednja""
+"rezultatov vsebuje več vrstic, se prikažeta povezavi »Prejšnja« "
+"in »Naslednja«."
#: setup/lib/messages.inc.php:202
msgid "Maximum number of rows to display"
@@ -7597,7 +7623,7 @@ msgid ""
"compatibility checks and thereby increases performance"
msgstr ""
"Onemogočite, če veste, da so vaše tabele pma_* ažurirane. To prepreči "
-"preverjanja združljivosti in tako poveča zmogljivost."
+"preverjanja združljivosti in tako poveča zmogljivost"
#: setup/lib/messages.inc.php:322
msgid "Verbose check"
@@ -7680,7 +7706,7 @@ msgstr "Pokaži poizvedbe SQL"
#: setup/lib/messages.inc.php:340
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-"Dovoli prikaz statistike podatkovne zbirke in tabele (npr. poraba prostora)"
+"Dovoli prikaz statistike zbirke podatkov in tabele (npr. poraba prostora)"
#: setup/lib/messages.inc.php:341
msgid "Show statistics"
@@ -7867,7 +7893,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id vstavljene vrstice: %1$d"
@@ -7876,15 +7902,14 @@ msgstr "Id vstavljene vrstice: %1$d"
msgid "Showing as PHP code"
msgstr "Prikazovanje kot koda PHP"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Prikazovanje poizvedbe SQL"
#: sql.php:516
-#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
-msgstr "Preveri pravilnost stavka SQL"
+msgstr "Preverjen SQL"
#: sql.php:631
#, php-format
@@ -8093,20 +8118,18 @@ msgid "Flush the table (FLUSH)"
msgstr "Počisti tabelo (FLUSH)"
#: tbl_operations.php:642
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
-msgstr "Izbriši podatke sledenja te tabele"
+msgstr "Izbriši podatke ali tabelo"
#: tbl_operations.php:657
msgid "Empty the table (TRUNCATE)"
-msgstr ""
+msgstr "Izprazni tabelo (TRUNCATE)"
#: tbl_operations.php:675
-#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
-msgstr "Pojdi v zbirko podatkov"
+msgstr "Izbriši tabelo (DROP)"
#: tbl_operations.php:696
msgid "Partition maintenance"
@@ -8477,66 +8500,3 @@ msgstr "Ime VIEW"
#: view_operations.php:91
msgid "Rename view to"
msgstr "Preimenuj pogled v"
-
-#, fuzzy
-#~| msgid "Table name"
-#~ msgid "Table removal"
-#~ msgstr "Ime tabele"
-
-#~ msgid "BLOB Repository"
-#~ msgstr "Shramba BLOB"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Enabled"
-#~ msgstr "Omogočeno"
-
-#~ msgid "Disable"
-#~ msgstr "Onemogoči"
-
-#~ msgid "Damaged"
-#~ msgstr "Poškodovano"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Repair"
-#~ msgstr "Popravi"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Disabled"
-#~ msgstr "Onemogočeno"
-
-#~ msgid "Enable"
-#~ msgstr "Omogoči"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "extension. Please check your PHP configuration."
-#~ msgstr ""
-#~ "Ne morem naložiti podaljška [a@http://php.net/%1$s@Documentation][em]%1$s"
-#~ "[/em][/a]. Prosim, preverite konfiguracijo PHP."
-
-#~ msgid ""
-#~ "Couldn't load the iconv or recode extension needed for charset "
-#~ "conversion. Either configure PHP to enable these extensions or disable "
-#~ "charset conversion in phpMyAdmin."
-#~ msgstr ""
-#~ "Ni mogoče naložiti razširitev iconv ali recode, ki so potrebne za "
-#~ "pretvorbe kodnih tabel. Konfigurirajte PHP tako, da bo omogočal uporabo "
-#~ "teh razširitev, ali onemogočite pretvarjanje kodnih tabel v phpMyAdmin."
-
-#~ msgid ""
-#~ "Couldn't use the iconv, libiconv, or recode_string functions, although "
-#~ "the necessary extensions appear to be loaded. Check your PHP "
-#~ "configuration."
-#~ msgstr ""
-#~ "Ni mogoče uporabljati funkcij iconv, libiconv ali recode_string, čeprav "
-#~ "so potrebne razširitve normalno naložene. Preverite vašo konfiguracijo "
-#~ "PHP."
-
-#~ msgid "Allow character set conversion"
-#~ msgstr "Omogoči pretvarjanje nabora znakov"
-
-#~ msgid "Default character set used for conversions"
-#~ msgstr "Privzet nabor znakov uporabljen za pretvorbe"
-
-#~ msgid "Default character set"
-#~ msgstr "Privzet nabor znakov"
diff --git a/po/sq.po b/po/sq.po
index f22cf9e1a..93cce099c 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: albanian \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Përdor këtë vlerë"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1412,7 +1413,8 @@ msgstr ""
msgid "Databases"
msgstr "Databazat"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1619,22 +1621,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Vendosja e lidhjes MySQL"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1930,16 +1955,16 @@ msgstr ""
msgid "Overhead"
msgstr "Mbi limit"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Serveri nuk përgjigjet"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3241,7 +3266,7 @@ msgstr "Treguesi"
msgid "Fulltext"
msgstr "Teksti komplet"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Asnjë ndryshim"
@@ -7604,7 +7629,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7613,7 +7638,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 712fc4c52..d55312125 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: serbian_cyrillic \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Користи ову вредност"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1431,7 +1432,8 @@ msgstr ""
msgid "Databases"
msgstr "Базе"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1640,22 +1642,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Сортирање за MySQL везу"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1955,18 +1980,18 @@ msgstr "Може бити приближно. Видите FAQ 3.11"
msgid "Overhead"
msgstr "Прекорачење"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, "
"није успела."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Сервер не одговара"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
@@ -3303,7 +3328,7 @@ msgstr "Кључ"
msgid "Fulltext"
msgstr "Текст кључ"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Нема измена"
@@ -7805,7 +7830,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7814,7 +7839,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Приказ као PHP код"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Приказ као SQL упит"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 197dee8b6..0e39d29a1 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:27+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: serbian_latin \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Koristi ovu vrednost"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1431,7 +1432,8 @@ msgstr ""
msgid "Databases"
msgstr "Baze"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1640,22 +1642,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Sortiranje za MySQL vezu"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1955,18 +1980,18 @@ msgstr "Može biti približno. Vidite FAQ 3.11"
msgid "Overhead"
msgstr "Prekoračenje"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, "
"nije uspela."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Server ne odgovara"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
@@ -3299,7 +3324,7 @@ msgstr "Ključ"
msgid "Fulltext"
msgstr "Tekst ključ"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Nema izmena"
@@ -7806,7 +7831,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7815,7 +7840,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Prikaz kao PHP kod"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Prikaz kao SQL upit"
diff --git a/po/sv.po b/po/sv.po
index 6dbcf4631..2a616f752 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-21 14:48+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: swedish \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Använd detta värde"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1430,7 +1431,8 @@ msgstr ""
msgid "Databases"
msgstr "Databaser"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1644,22 +1646,45 @@ msgstr "Giltig autentiseringsnyckel saknas"
msgid "Authenticating..."
msgstr "Autentisering pågår..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "Kollation för MySQL-uppkoppling"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Visa bild"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Spela ljud"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Visa video"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Ladda ner fil"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1961,16 +1986,16 @@ msgstr "Kan vara ungefärligt. Se FAQ 3.11"
msgid "Overhead"
msgstr "Outnyttjat"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Servern svarar inte"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
@@ -3343,7 +3368,7 @@ msgstr "Index"
msgid "Fulltext"
msgstr "Heltext"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Ingen förändring"
@@ -8041,7 +8066,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Infogade rad id: %1$d"
@@ -8050,7 +8075,7 @@ msgstr "Infogade rad id: %1$d"
msgid "Showing as PHP code"
msgstr "Visar som PHP-kod"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "Visar SQL-fråga"
diff --git a/po/ta.po b/po/ta.po
index f35073462..bb6f8e2bd 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr ""
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1370,7 +1371,8 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1576,22 +1578,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1878,16 +1901,16 @@ msgstr ""
msgid "Overhead"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3153,7 +3176,7 @@ msgstr ""
msgid "Fulltext"
msgstr ""
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr ""
@@ -7295,7 +7318,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7304,7 +7327,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/te.po b/po/te.po
index 5908e5cfc..f453d5456 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-05-26 14:20+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "ఈ విలువని ఉపయోగించు"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1400,7 +1401,8 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1603,24 +1605,48 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
# మొదటి అనువాదము
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+# మొదటి అనువాదము
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "చిత్రమును చూపుము"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
# మొదటి అనువాదము
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "వీడియోను చూపుము"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file!
This might "
@@ -1909,16 +1935,16 @@ msgstr ""
msgid "Overhead"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3192,7 +3218,7 @@ msgstr ""
msgid "Fulltext"
msgstr ""
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr ""
@@ -7385,7 +7411,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7394,7 +7420,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/th.po b/po/th.po
index 92f6bc1a4..3e9b2bf22 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
@@ -86,6 +86,7 @@ msgid "Use this value"
msgstr "ใช้ค่านี้"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1407,7 +1408,8 @@ msgstr ""
msgid "Databases"
msgstr "ฐานข้อมูล"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1610,22 +1612,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1920,16 +1943,16 @@ msgstr ""
msgid "Overhead"
msgstr "เกินความจำเป็น"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3233,7 +3256,7 @@ msgstr "ดัชนี"
msgid "Fulltext"
msgstr "ข้อความเต็ม (fulltext)"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "ไม่มีการเปลี่ยนแปลง"
@@ -7503,7 +7526,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7512,7 +7535,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index d0d1a4015..7bcb0561e 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
-"PO-Revision-Date: 2010-06-21 19:58+0200\n"
-"Last-Translator: Burak \n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
+"PO-Revision-Date: 2010-08-08 22:05+0200\n"
+"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:36 browse_foreigners.php:57
#: libraries/display_tbl.lib.php:415 server_privileges.php:1510
@@ -90,18 +90,17 @@ msgid "Use this value"
msgstr "Bu değeri kullan"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Yapılandırılmış blob akış sunucusu yok!"
#: bs_disp_as_mime_type.php:35
-#, fuzzy
-#| msgid "Failed to write file to disk."
msgid "Failed to fetch headers"
-msgstr "Dosyayı diske yazma başarısız."
+msgstr "Üstbilgileri getirmek başarısız oldu"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Uzak URL'yi açma başarısız oldu"
#: db_create.php:44
#, php-format
@@ -110,7 +109,7 @@ msgstr "Veritabanı %1$s oluşturuldu."
#: db_datadict.php:48 db_operations.php:313
msgid "Database comment: "
-msgstr "Veritabanı yorumu:"
+msgstr "Veritabanı yorumu: "
#: db_datadict.php:164 libraries/tbl_properties.inc.php:722
#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127
@@ -249,10 +248,8 @@ msgid "and then"
msgstr "ve sonra"
#: db_operations.php:379
-#, fuzzy
-#| msgid "Rename database to"
msgid "Remove database"
-msgstr "Veritabanını şuna yeniden adlandır"
+msgstr "Veritabanını kaldır"
#: db_operations.php:391
#, php-format
@@ -260,10 +257,8 @@ msgid "Database %s has been dropped."
msgstr "%s veritabanı kaldırıldı."
#: db_operations.php:396
-#, fuzzy
-#| msgid "Go to database"
msgid "Drop the database (DROP)"
-msgstr "Veritabanına git"
+msgstr "Veritabanını kaldır (DROP)"
#: db_operations.php:424
msgid "Copy database to"
@@ -315,16 +310,13 @@ msgid "Collation"
msgstr "Karşılaştırma"
#: db_operations.php:498 pdf_schema.php:32
-#, fuzzy, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. To find out why click %shere%s."
+#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini "
-"öğrenmek için %sburaya%s tıklayın."
+"phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek "
+"için %sburaya%s tıklayın."
#: db_operations.php:531
msgid "Edit PDF Pages"
@@ -495,8 +487,7 @@ msgid "Search results for \"%s\" %s:"
msgstr "\"%s\" %s için arama sonuçları:"
#: db_search.php:242
-#, fuzzy, php-format
-#| msgid "%s match(es) inside table %s"
+#, php-format
msgid "%s match inside table %s"
msgid_plural "%s matches inside table %s"
msgstr[0] "%s eşleşme, %s tablosu içinde"
@@ -518,8 +509,7 @@ msgid "Delete"
msgstr "Sil"
#: db_search.php:267
-#, fuzzy, php-format
-#| msgid "Total: %s match(es)"
+#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Toplam: %s eşleşme"
@@ -692,7 +682,7 @@ msgstr "Tabloyu incele"
#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376
#: setup/frames/menu.inc.php:22 tbl_row_action.php:58
msgid "Export"
-msgstr "Dışarı Aktar"
+msgstr "Dışa Aktar"
#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44
msgid "Data Dictionary"
@@ -780,7 +770,7 @@ msgstr "Veritabanı Günlüğü"
#: export.php:61
msgid "Selected export type has to be saved in file!"
-msgstr "Seçili dışarı aktarma türü dosyaya kaydedilmelidir!"
+msgstr "Seçili dışa aktarma türü dosyaya kaydedilmelidir!"
#: export.php:152 export.php:177 export.php:615
#, php-format
@@ -836,14 +826,13 @@ msgid ""
"file size exceeded the maximum size permitted by your PHP configuration. See "
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
msgstr ""
-"İçeri aktarmak için veri alınmadı. Ya dosya adı gönderilmedi ya da PHP "
-"yapılandırmanız tarafından izin verilen en fazla boyut aşıldı. [a@./"
-"Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın."
+"İçe aktarmak için veri alınmadı. Ya dosya adı gönderilmedi ya da PHP "
+"yapılandırmanız tarafından izin verilen en fazla boyut aşıldı. "
+"[a@./Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın."
#: import.php:370 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
-msgstr ""
-"İçeri aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
+msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
#: import.php:395
msgid "The bookmark has been deleted."
@@ -861,15 +850,15 @@ msgstr "İşaretleme %s oluşturuldu"
#: import.php:407 import.php:413
#, php-format
msgid "Import has been successfully finished, %d queries executed."
-msgstr "İçeri aktarma başarılı olarak bitti, %d sorgu çalıştırıldı."
+msgstr "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı."
#: import.php:422
msgid ""
"Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume."
msgstr ""
-"Küçük program zaman aşımı geçti, eğer içeri aktarmayı bitirmek istiyorsanız, "
-"lütfen aynı dosyayı yeniden gönderin ve içeri aktarma devam edecektir."
+"Betik zaman aşımı geçti, eğer içe aktarmayı bitirmek istiyorsanız, lütfen "
+"aynı dosyayı yeniden gönderin ve içe aktarma devam edecektir."
#: import.php:424
msgid ""
@@ -877,7 +866,7 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
"Ancak son çalıştırmada hiç veri ayrıştırılmadı, bu genellikle, php zaman "
-"sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içeri aktarmayı "
+"sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı "
"biteremeyeceği anlamına gelir."
#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239
@@ -1007,10 +996,8 @@ msgid "Choose column to display"
msgstr "Göstermek için sütun seçin"
#: js/messages.php:66
-#, fuzzy
-#| msgid "Generate Password"
msgid "Generate password"
-msgstr "Parola Üret"
+msgstr "Parola üret"
#: js/messages.php:67 libraries/replication_gui.lib.php:365
msgid "Generate"
@@ -1367,7 +1354,8 @@ msgstr ""
msgid "Databases"
msgstr "Veritabanları"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1575,22 +1563,43 @@ msgstr "Geçerli kimlik denetimi anahtarı takılı değil"
msgid "Authenticating..."
msgstr "Kimlik doğrulanıyor..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr "PBMS hatası"
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr "PBMS bağlantısı başarısız:"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr "PBMS, BLOB bilgisi alması başarısız:"
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr "BLOB İçerik Türü alma başarısız"
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Resmi göster"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Ses çal"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Görüntüyü göster"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Dosyayı indir"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr "Açılamayan dosya: %s"
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1684,10 +1693,8 @@ msgid "MySQL said: "
msgstr "MySQL çıktısı: "
#: libraries/common.lib.php:1129
-#, fuzzy
-#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
-msgstr "MySQL sunucusuna bağlanamadı"
+msgstr "SQL onaylayıcısına bağlanma başarısız oldu!"
#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350
msgid "Explain SQL"
@@ -1827,7 +1834,7 @@ msgstr "İşlemler"
#: libraries/core.lib.php:265 libraries/dbg/setup.php:21
#, php-format
msgid "The %s extension is missing. Please check your PHP configuration."
-msgstr ""
+msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin."
#: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21
#: libraries/export/sql.php:412
@@ -1862,7 +1869,7 @@ msgstr "Tasarımcı"
#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107
#: setup/frames/menu.inc.php:21
msgid "Import"
-msgstr "İçeri Aktar"
+msgstr "İçe Aktar"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65
#: server_privileges.php:110 server_privileges.php:1718
@@ -1891,18 +1898,18 @@ msgstr ""
msgid "Overhead"
msgstr "Ek Yük"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Yapılandırmanız içinde tanımlanmış denetim kullanıcıları için bağlantı "
"başarısız."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Sunucu yanıt vermiyor"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)"
@@ -1972,8 +1979,7 @@ msgstr "Sütun sayısı"
#: libraries/display_export.lib.php:35
msgid "Could not load export plugins, please check your installation!"
-msgstr ""
-"Dışarı aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
+msgstr "Dışa aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
#: libraries/display_export.lib.php:100
#, php-format
@@ -2085,7 +2091,7 @@ msgstr ""
#: libraries/display_import.lib.php:125
msgid "File to import"
-msgstr "İçeri aktarmak için dosya"
+msgstr "İçe aktarmak için dosya"
#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484
msgid "Location of the text file"
@@ -2109,19 +2115,19 @@ msgstr "web sunucusu gönderme dizini"
#, php-format
msgid "Imported file compression will be automatically detected from: %s"
msgstr ""
-"İçeri aktarılmış dosya sıkıştırması otomatik olarak bu dosya türlerinden "
+"İçe aktarılmış dosya sıkıştırması otomatik olarak bu dosya türlerinden "
"algılanacak: %s"
#: libraries/display_import.lib.php:218
msgid "Partial import"
-msgstr "Kısmi içeri aktarma"
+msgstr "Kısmi içe aktarma"
#: libraries/display_import.lib.php:224
#, php-format
msgid ""
"Previous import timed out, after resubmitting will continue from position %d."
msgstr ""
-"Önceki içeri aktarma zaman aşımına uğradı, sonradan yeniden gönderim %d "
+"Önceki içe aktarma zaman aşımına uğradı, sonradan yeniden gönderim %d "
"konumundan devam edecek."
#: libraries/display_import.lib.php:231
@@ -2130,9 +2136,9 @@ msgid ""
"to the PHP timeout limit. This might be good way to import large files, "
"however it can break transactions."
msgstr ""
-"Küçük programcığın PHP zaman aşımı sınırına yaklaşıldığını algılaması "
-"durumunda içeri aktarımı kesmeye izin ver. Bu büyük dosyaların içeri "
-"aktarımı için iyi bir yol olabilir, ancak hareketleri kesebilir."
+"Betiğin PHP zaman aşımı sınırına yaklaşıldığını algılaması durumunda içe "
+"aktarımı kesmeye izin verir. Bu büyük dosyaların içe aktarımı için iyi bir "
+"yol olabilir, ancak bu işlemleri bozabilir."
#: libraries/display_import.lib.php:238 setup/lib/messages.inc.php:158
msgid "Number of queries to skip from start"
@@ -2140,7 +2146,7 @@ msgstr "Başlangıçtan atlanacak sorgu sayısı"
#: libraries/display_import.lib.php:254 setup/lib/messages.inc.php:157
msgid "Format of imported file"
-msgstr "İçeri aktarılmış dosyanın biçimi"
+msgstr "İçe aktarılmış dosyanın biçimi"
#: libraries/display_pdf_schema.lib.php:11
msgid "Display PDF schema"
@@ -2518,20 +2524,12 @@ msgstr ""
"ara bellek miktarı."
#: libraries/engines/pbms.lib.php:31
-#, fuzzy
-#| msgid "Garbage threshold"
msgid "Garbage Threshold"
-msgstr "Artık başı"
+msgstr "Artık Eşiği"
#: libraries/engines/pbms.lib.php:32
-#, fuzzy
-#| msgid ""
-#| "The percentage of garbage in a data log file before it is compacted. This "
-#| "is a value between 1 and 99. The default is 50."
msgid "The percentage of garbage in a repository file before it is compacted."
-msgstr ""
-"Küçültülmeden önce veri günlük dosyasındaki artık yüzdesi. Bu 1 ile 99 "
-"arasında bir değerdir. Varsayılan değer 50'dir."
+msgstr "Ufaltılmadan önce depolama dosyasındaki artık yüzdesidir."
#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69
#: server_synchronize.php:1161
@@ -2543,10 +2541,12 @@ msgid ""
"The port for the PBMS stream-based communications. Setting this value to 0 "
"will disable HTTP communication with the daemon."
msgstr ""
+"PBMS akış tabanlı iletişimler için bağlatı noktasıdır. Bu değeri 0'a "
+"ayarlamak, sunucu programı ile HTTP iletişimini etkisizleştirecektir."
#: libraries/engines/pbms.lib.php:41
msgid "Repository Threshold"
-msgstr ""
+msgstr "Depolama Eşiği"
#: libraries/engines/pbms.lib.php:42
msgid ""
@@ -2554,22 +2554,26 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
+"BLOB depolama dosyasının en fazla boyutudur. Değerin birimini belirtmek için "
+"Kb, MB veya GB kullanabilirsiniz. Birim belirtilmediğinde değer bayt "
+"farzedilir."
#: libraries/engines/pbms.lib.php:46
msgid "Temp Blob Timeout"
-msgstr ""
+msgstr "Geçici Blob Zaman Aşımı"
#: libraries/engines/pbms.lib.php:47
msgid ""
"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed "
"after this time, unless they are referenced by a record in the database."
msgstr ""
+"Geçici BLOB'lar için zaman aşımı süresi saniyedir. Gönderilmiş BLOB verisi "
+"veritabanındaki kayıt tarafından kaynak gösterilmedikçe bu süreden sonra "
+"silinir."
#: libraries/engines/pbms.lib.php:51
-#, fuzzy
-#| msgid "Log file threshold"
msgid "Temp Log Threshold"
-msgstr "Günlük dosyası başı"
+msgstr "Geçici Günlük Eşiği"
#: libraries/engines/pbms.lib.php:52
msgid ""
@@ -2577,26 +2581,34 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
+"Geçici BLOB günlük dosyasının en fazla boyutudur. Değerin birimini belirtmek "
+"için Kb, MB veya GB kullanabilirsiniz. Birim belirtilmediğinde değer bayt "
+"farzedilir."
#: libraries/engines/pbms.lib.php:56
msgid "Max Keep Alive"
-msgstr ""
+msgstr "En Fazla Canlı Tutuma"
#: libraries/engines/pbms.lib.php:57
msgid ""
"The timeout for inactive connection with the keep-alive flag set. After this "
"time the connection will be closed. The time-out is in milliseconds (1/1000)."
msgstr ""
+"Pasif bağlantıyı canlı tutma işareti ayarı için zaman aşımı süresidir. Bu "
+"süreden sonra bağlantı kapanacaktır. Zaman aşımı süresi milisaniyedir "
+"(1/1000)."
#: libraries/engines/pbms.lib.php:61
msgid "Metadata Headers"
-msgstr ""
+msgstr "Üstveri Üstbilgileri"
#: libraries/engines/pbms.lib.php:62
msgid ""
"A \":\" delimited list of metadata headers to be used to initialize the "
"pbms_metadata_header table when a database is created."
msgstr ""
+"Veritabanı oluşturulduğunda pbms_metadata_header tablosunu başlatmak için "
+"kullandığı üstveri üstbilgilerinin \":\" sınırlandırma listesidir."
#: libraries/engines/pbxt.lib.php:22
msgid "Index cache size"
@@ -2640,7 +2652,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:37
msgid "Log file threshold"
-msgstr "Günlük dosyası başı"
+msgstr "Günlük dosyası eşiği"
#: libraries/engines/pbxt.lib.php:38
msgid ""
@@ -2676,7 +2688,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:52
msgid "Data log threshold"
-msgstr "Veri günlüğü başı"
+msgstr "Veri günlüğü eşiği"
#: libraries/engines/pbxt.lib.php:53
msgid ""
@@ -2692,14 +2704,14 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:57
msgid "Garbage threshold"
-msgstr "Artık başı"
+msgstr "Artık eşiği"
#: libraries/engines/pbxt.lib.php:58
msgid ""
"The percentage of garbage in a data log file before it is compacted. This is "
"a value between 1 and 99. The default is 50."
msgstr ""
-"Küçültülmeden önce veri günlük dosyasındaki artık yüzdesi. Bu 1 ile 99 "
+"Ufaltılmadan önce veri günlük dosyasındaki artık yüzdesidir. Bu 1 ile 99 "
"arasında bir değerdir. Varsayılan değer 50'dir."
#: libraries/engines/pbxt.lib.php:62
@@ -2828,20 +2840,16 @@ msgid "Table structure for table"
msgstr "Tablo için tablo yapısı"
#: libraries/export/latex.php:13
-#, fuzzy
-#| msgid "Content of table __TABLE__"
msgid "Content of table @TABLE@"
-msgstr "__TABLE__ tablosunun içeriği"
+msgstr "@TABLE@ tablosunun içeriği"
#: libraries/export/latex.php:14
msgid "(continued)"
msgstr "(devam eden)"
#: libraries/export/latex.php:15
-#, fuzzy
-#| msgid "Structure of table __TABLE__"
msgid "Structure of table @TABLE@"
-msgstr "__TABLE__ tablosunun yapısı"
+msgstr "@TABLE@ tablosunun yapısı"
#: libraries/export/latex.php:26
msgid "LaTeX"
@@ -2934,7 +2942,7 @@ msgstr "Başlık içine özel yorum ekle (\\n satırları böler)"
#: libraries/export/sql.php:30
msgid "Enclose export in a transaction"
-msgstr "İşlem içinde dışarı aktarmayı kapsa"
+msgstr "İşlem içinde dışa aktarmayı kapsa"
#: libraries/export/sql.php:31
msgid "Disable foreign key checks"
@@ -2942,7 +2950,7 @@ msgstr "Dış anahtar kontrolünü etkisizleştir"
#: libraries/export/sql.php:49
msgid "Database export options"
-msgstr "Veritabanı dışarı aktarma seçenekleri"
+msgstr "Veritabanı dışa aktarma seçenekleri"
#: libraries/export/sql.php:79
msgid "Enclose table and column names with backquotes"
@@ -2982,11 +2990,11 @@ msgstr "BLOB için onaltılık sistem kullan"
#: libraries/export/sql.php:119
msgid "Export time in UTC"
-msgstr "UTC olarak zamanı dışarı aktar"
+msgstr "UTC olarak zamanı dışa aktar"
#: libraries/export/sql.php:121
msgid "Export type"
-msgstr "Dışarı aktarma türü"
+msgstr "Dışa aktarma türü"
#: libraries/export/sql.php:384
msgid "Procedures"
@@ -3042,31 +3050,31 @@ msgstr "XML"
#: libraries/export/xml.php:28
msgid "Export Structure Schemas (recommended)"
-msgstr "Yapı Şemalarını dışarı aktar (önerilir)"
+msgstr "Yapı Şemalarını dışa aktar (önerilir)"
#: libraries/export/xml.php:30
msgid "Export functions"
-msgstr "İşlevleri dışarı aktar"
+msgstr "İşlevleri dışa aktar"
#: libraries/export/xml.php:32
msgid "Export procedures"
-msgstr "İşlemleri dışarı aktar"
+msgstr "İşlemleri dışa aktar"
#: libraries/export/xml.php:34
msgid "Export tables"
-msgstr "Tabloları dışarı aktar"
+msgstr "Tabloları dışa aktar"
#: libraries/export/xml.php:36
msgid "Export triggers"
-msgstr "Tetikleyicileri dışarı aktar"
+msgstr "Tetikleyicileri dışa aktar"
#: libraries/export/xml.php:38
msgid "Export views"
-msgstr "Görünümleri dışarı aktar"
+msgstr "Görünümleri dışa aktar"
#: libraries/export/xml.php:44
msgid "Export contents"
-msgstr "İçerikleri dışarı aktar"
+msgstr "İçerikleri dışa aktar"
#: libraries/footer.inc.php:180 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
@@ -3152,7 +3160,7 @@ msgstr "Sütun adları"
#: libraries/import/csv.php:73 libraries/import/csv.php:77
#, php-format
msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV girişi için geçersiz parametre: %s"
+msgstr "CSV içe aktarma için geçersiz parametre: %s"
#: libraries/import/csv.php:118
#, php-format
@@ -3188,19 +3196,19 @@ msgstr "YEREL anahtar kelime kullan"
#: libraries/import/ldi.php:54
msgid "This plugin does not support compressed imports!"
-msgstr "Bu eklenti sıkıştırılmış içeri aktarım dosyalarını desteklemez!"
+msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!"
#: libraries/import/ods.php:26
msgid "Do not import empty rows"
-msgstr "Boş sıraları içeri aktarma"
+msgstr "Boş satırları içe aktarma"
#: libraries/import/ods.php:27
msgid "Import percentages as proper decimals (12.00% to .12)"
-msgstr "Yüzdeleri doğru ondalık olarak içeri aktar (%12.00'dan .12'ye)"
+msgstr "Yüzdeleri doğru ondalık olarak içe aktar (%12.00'ı .12'ye)"
#: libraries/import/ods.php:28
msgid "Import currencies ($5.00 to 5.00)"
-msgstr "Parasalları içeri aktar ($5.00'dan 5.00'a)"
+msgstr "Parasalları içe aktar ($5.00'ı 5.00'a)"
#: libraries/import/sql.php:41
msgid "Do not use AUTO_INCREMENT for zero values"
@@ -3249,13 +3257,13 @@ msgstr "İndeks"
msgid "Fulltext"
msgstr "Tam metin"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Değişiklik yok"
#: libraries/mysql_charsets.lib.php:106
msgid "Charset"
-msgstr "Karakter grubu"
+msgstr "Karakter Grubu"
#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403
#: tbl_change.php:510
@@ -3657,7 +3665,7 @@ msgstr "Değişkenler"
#: libraries/server_links.inc.php:56 test/theme.php:108
msgid "Charsets"
-msgstr "Karakter grupları"
+msgstr "Karakter Grupları"
#: libraries/server_links.inc.php:60 test/theme.php:112
msgid "Engines"
@@ -4365,7 +4373,7 @@ msgstr "Küçüğü/büyüğü değiştir"
#: pmd_general.php:103
msgid "Import/Export coordinates for PDF schema"
-msgstr "PDF şeması için düzenlemeleri İçeri/Dışarı Aktar"
+msgstr "PDF şeması için düzenlemeleri içe/dışa aktar"
#: pmd_general.php:107
msgid "Move Menu"
@@ -4411,7 +4419,7 @@ msgstr "Sayfa oluşturma başarısız"
#: pmd_pdf.php:82
msgid "Export/Import to scale"
-msgstr "Ölçeklemek için İçeri/Dışarı Aktar"
+msgstr "Ölçeklemek için içe/dışa aktar"
#: pmd_pdf.php:86
msgid "recommended"
@@ -4423,7 +4431,7 @@ msgstr "sayfadan/sayfaya"
#: querywindow.php:93
msgid "Import files"
-msgstr "Dosyaları içeri aktar"
+msgstr "Dosyaları içe aktar"
#: querywindow.php:104
msgid "All"
@@ -4616,7 +4624,7 @@ msgstr "Depolanan yordamların yürütülmesine izin verir."
#: server_privileges.php:37 server_privileges.php:188
#: server_privileges.php:508
msgid "Allows importing data from and exporting data into files."
-msgstr "Verinin içeri ve dışarı aktarılmasına izin verir."
+msgstr "Verinin içe ve dışa aktarılmasına izin verir."
#: server_privileges.php:38 server_privileges.php:539
msgid ""
@@ -6301,8 +6309,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
-"İçeri ve dışarı aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Bzip2]"
-"bzip2[/a] sıkıştırma etkin"
+"İçe ve dışa aktarma işlemleri için "
+"[a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] sıkıştırma etkin"
#: setup/lib/messages.inc.php:30
msgid "Bzip2"
@@ -6372,7 +6380,7 @@ msgid ""
"Compress gzip/bzip2 exports on the fly without the need for much memory; if "
"you encounter problems with created gzip/bzip2 files disable this feature"
msgstr ""
-"Daha fazla belleğe gerek kalmadan gzip/bzip2 dışarı aktarmalarını anında "
+"Daha fazla belleğe gerek kalmadan gzip/bzip2 dışa aktarmalarını anında "
"sıkıştırır; eğer gzip/bzip2 dosyalarını oluşturmada sorunlarla "
"karşılaşırsanız bu özelliği etkisizleştirin"
@@ -6586,29 +6594,27 @@ msgstr "Düzenleme modu"
#: setup/lib/messages.inc.php:101
msgid "Customize default export options"
-msgstr "Varsayılan dışarı aktarma seçeneklerini özelleştirir"
+msgstr "Varsayılan dışa aktarma seçeneklerini özelleştirir"
#: setup/lib/messages.inc.php:102
msgid "Export defaults"
-msgstr "Dışarı aktarma varsayılanları"
+msgstr "Dışa aktarma varsayılanları"
#: setup/lib/messages.inc.php:103
msgid "Customize default common import options"
-msgstr "Varsayılan genel içeri aktarma seçeneklerini özelleştirir"
+msgstr "Varsayılan genel içe aktarma seçeneklerini özelleştirir"
#: setup/lib/messages.inc.php:104
msgid "Import defaults"
-msgstr "İçeri aktarma varsayılanları"
+msgstr "İçe aktarma varsayılanları"
#: setup/lib/messages.inc.php:105
msgid "Set import and export directories and compression options"
-msgstr ""
-"İçeri aktarma ve dışarı aktarma dizinlerini ve sıkıştırma seçeneklerini "
-"ayarlar"
+msgstr "İçe ve dışa aktarma dizinlerini ve sıkıştırma seçeneklerini ayarlar"
#: setup/lib/messages.inc.php:106
msgid "Import / export"
-msgstr "İçeri Aktar / Dışarı Aktar"
+msgstr "İçe Aktar / Dışa Aktar"
#: setup/lib/messages.inc.php:108
msgid "Databases display options"
@@ -6679,19 +6685,14 @@ msgid "Signon login options"
msgstr "Oturum açma seçenekleri"
#: setup/lib/messages.inc.php:128
-#, fuzzy
-#| msgid ""
-#| "Configure phpMyAdmin database to gain access to additional features, see "
-#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] "
-#| "in documentation"
msgid ""
"Configure phpMyAdmin database to gain access to additional features, see "
"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] "
"in documentation"
msgstr ""
"İlave özelliklere erişim kazanmak için phpMyAdmin veritabanını yapılandırır, "
-"belgelerde [a@../Documentation.html#linked-tables]bağlantılı tablolar "
-"altyapısına[/a] bakın"
+"belgelerde [a@../Documentation.html#linked-tables]phpMyAdmin yapılandırma "
+"depolama[/a] kısmına bakın"
#: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290
msgid "PMA database"
@@ -6713,11 +6714,11 @@ msgstr "Özelleştirme"
#: setup/lib/messages.inc.php:133
msgid "Customize export options"
-msgstr "Dışarı aktarma seçeneklerini özelleştir"
+msgstr "Dışa aktarma seçeneklerini özelleştir"
#: setup/lib/messages.inc.php:135
msgid "Customize import defaults"
-msgstr "İçeri aktarma varsayılanlarını özelleştir"
+msgstr "İçe aktarma varsayılanlarını özelleştir"
#: setup/lib/messages.inc.php:136
msgid "Customize navigation frame"
@@ -6768,8 +6769,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
-"İçeri ve dışarı aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Gzip]"
-"gzip[/a] sıkıştırma etkin"
+"İçe ve dışa aktarma işlemleri için "
+"[a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] sıkıştırma etkin"
#: setup/lib/messages.inc.php:147
msgid "GZip"
@@ -6811,13 +6812,13 @@ msgid ""
"This might be good way to import large files, however it can break "
"transactions."
msgstr ""
-"İçeri aktarmayı yarıda kesmeye izin verildiği takdirde betik, kapatma zaman "
-"sınırını saptar. Bu büyük dosyaları içeri aktarmak için iyi bir yol "
+"Betiğin zaman sınırına yaklaşıldığını algılaması durumunda içe aktarımı "
+"kesmeye izin verir. Bu büyük dosyaları içe aktarmak için iyi bir yol "
"olabilir, ancak bu işlemleri bozabilir."
#: setup/lib/messages.inc.php:155
msgid "Partial import: allow interrupt"
-msgstr "Kısmi içeri aktarma: yarıda kesmeye izin ver"
+msgstr "Kısmi içe aktarma: yarıda kesmeye izin ver"
#: setup/lib/messages.inc.php:156
msgid ""
@@ -6829,7 +6830,7 @@ msgstr ""
#: setup/lib/messages.inc.php:159
msgid "Partial import: skip queries"
-msgstr "Kısmi içeri aktarma: sorguları atla"
+msgstr "Kısmi içe aktarma: sorguları atla"
#: setup/lib/messages.inc.php:160
msgid "Insecure connection"
@@ -7153,7 +7154,7 @@ msgstr "Hatalı alanları varsayılan değerlerine döndürmeyi dene"
#: setup/lib/messages.inc.php:233
msgid "Directory where exports can be saved on server"
-msgstr "Dışarı aktarmaların sunucu üzerinde kaydedilebileceği dizin"
+msgstr "Dışa aktarmaların sunucu üzerinde kaydedilebileceği dizin"
#: setup/lib/messages.inc.php:234
msgid "Save directory"
@@ -7776,8 +7777,7 @@ msgstr "IP İzin Verme/Reddetme için güvenilir proksi listesi"
#: setup/lib/messages.inc.php:359
msgid "Directory on server where you can upload files for import"
-msgstr ""
-"İçeri aktarmak için dosyaları gönderebileceğiniz sunucu üzerindeki dizin"
+msgstr "İçe aktarmak için dosyaları gönderebileceğiniz sunucu üzerindeki dizin"
#: setup/lib/messages.inc.php:360
msgid "Upload directory"
@@ -7856,8 +7856,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-"İçeri ve dışarı aktarma işlemleri için [a@http://en.wikipedia.org/wiki/ZIP_"
-"(file_format)]ZIP[/a] sıkıştırma etkin"
+"İçe ve dışa aktarma işlemleri için "
+"[a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] sıkıştırma etkin"
#: setup/lib/messages.inc.php:376
#, php-format
@@ -7881,7 +7881,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Eklenen satır id: %1$d"
@@ -7890,15 +7890,13 @@ msgstr "Eklenen satır id: %1$d"
msgid "Showing as PHP code"
msgstr "PHP kodu olarak gösteriliyor"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "SQL sorgusu gösteriliyor"
#: sql.php:516
-#, fuzzy
-#| msgid "Validate SQL"
msgid "Validated SQL"
-msgstr "SQL'i onayla"
+msgstr "Oanylı SQL"
#: sql.php:631
#, php-format
@@ -8109,20 +8107,16 @@ msgid "Flush the table (FLUSH)"
msgstr "Tabloyu temizle (FLUSH)"
#: tbl_operations.php:642
-#, fuzzy
-#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
-msgstr "Bu tabloyu izleme verisini sil"
+msgstr "Tabloyu veya veriyi sil"
#: tbl_operations.php:657
msgid "Empty the table (TRUNCATE)"
-msgstr ""
+msgstr "Tabloyu boşalt (TRUNCATE)"
#: tbl_operations.php:675
-#, fuzzy
-#| msgid "Go to database"
msgid "Delete the table (DROP)"
-msgstr "Veritabanına git"
+msgstr "Tabloyu sil (DROP)"
#: tbl_operations.php:696
msgid "Partition maintenance"
@@ -8349,7 +8343,7 @@ msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın."
#: tbl_tracking.php:225
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-"SQL ifadeleri dışarı aktarıldı. Lütfen yığını kopyalayın ya da çalıştırın."
+"SQL ifadeleri dışa aktarıldı. Lütfen yığını kopyalayın ya da çalıştırın."
#: tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
@@ -8405,7 +8399,7 @@ msgstr "SQL çalıştırma"
#: tbl_tracking.php:515
#, php-format
msgid "Export as %s"
-msgstr "%s olarak dışarı aktar"
+msgstr "%s olarak dışa aktar"
#: tbl_tracking.php:555
msgid "Show versions"
@@ -8497,66 +8491,3 @@ msgstr "GÖRÜNÜM adı"
#: view_operations.php:91
msgid "Rename view to"
msgstr "Görünümü yeniden şuna adlandır"
-
-#, fuzzy
-#~| msgid "Table name"
-#~ msgid "Table removal"
-#~ msgstr "Tablo adı"
-
-#~ msgid "BLOB Repository"
-#~ msgstr "BLOB Havuzu"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Enabled"
-#~ msgstr "Etkinleştirildi"
-
-#~ msgid "Disable"
-#~ msgstr "Etkisiz"
-
-#~ msgid "Damaged"
-#~ msgstr "Hasarlı"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Repair"
-#~ msgstr "Onar"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Disabled"
-#~ msgstr "Etkisizleştirildi"
-
-#~ msgid "Enable"
-#~ msgstr "Etkin"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "extension. Please check your PHP configuration."
-#~ msgstr ""
-#~ "[a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] uzantısı "
-#~ "yüklenemiyor. Lütfen PHP yapılandırmanızı kontrol edin."
-
-#~ msgid ""
-#~ "Couldn't load the iconv or recode extension needed for charset "
-#~ "conversion. Either configure PHP to enable these extensions or disable "
-#~ "charset conversion in phpMyAdmin."
-#~ msgstr ""
-#~ "Karakter grubu dönüşümü için gerekli olan iconv veya recode uzantıları "
-#~ "yüklenemedi. Ya PHP'yi bu uzantıları etkinleştirmek için yapılandırın ya "
-#~ "da phpMyAdmin içinde karakter grubu dönüşümünü etkisizleştirin."
-
-#~ msgid ""
-#~ "Couldn't use the iconv, libiconv, or recode_string functions, although "
-#~ "the necessary extensions appear to be loaded. Check your PHP "
-#~ "configuration."
-#~ msgstr ""
-#~ "Gerekli uzantılar yüklenmiş görünmesine rağmen, ne iconv, ne libinconv, "
-#~ "ne de recode_string işlevi kullanılamadı. PHP yapılandırmanızı kontrol "
-#~ "edin."
-
-#~ msgid "Allow character set conversion"
-#~ msgstr "Karakter grubu dönüştürmeye izin ver"
-
-#~ msgid "Default character set used for conversions"
-#~ msgstr "Dönüştürmeler için kullanılan varsayılan karakter grubu"
-
-#~ msgid "Default character set"
-#~ msgstr "Varsayılan karakter grubu"
diff --git a/po/tt.po b/po/tt.po
index b2a65db51..c2a21f254 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: tatarish \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Bu bäyä belän"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1410,7 +1411,8 @@ msgstr ""
msgid "Databases"
msgstr "Biremleklär"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1617,22 +1619,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL-totaşunıñ tezü cayı"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1932,16 +1957,16 @@ msgstr "Törle buluı bar. YBS 3.11 qarísı"
msgid "Overhead"
msgstr "Overhead"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Bu server endäşmi"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
@@ -3267,7 +3292,7 @@ msgstr "Tezeş"
msgid "Fulltext"
msgstr "Tulımäten"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Üzgäreşsez"
@@ -7642,7 +7667,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7651,7 +7676,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
#, fuzzy
msgid "Showing SQL query"
msgstr "Tulı Sorawlar Kürsät"
diff --git a/po/ug.po b/po/ug.po
index e06c396c8..9f72dc94b 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
-"PO-Revision-Date: 2010-07-28 04:52+0200\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
+"PO-Revision-Date: 2010-07-30 11:41+0200\n"
"Last-Translator: \n"
"Language-Team: Uyghur \n"
"MIME-Version: 1.0\n"
@@ -92,6 +92,7 @@ msgid "Use this value"
msgstr "مۇشۇ قىممەتنى ئىشلىتىش"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr "No blob streaming server configured!"
@@ -1349,7 +1350,8 @@ msgstr ""
msgid "Databases"
msgstr "ساندان"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1553,22 +1555,43 @@ msgstr "No valid authentication key plugged"
msgid "Authenticating..."
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "رەسىمنى كۆرۈش"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "ئاۋاز قۇيۇش"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "سىن قۇيۇش"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "ھۆججەت چۈشۈرۈش"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1862,16 +1885,16 @@ msgstr ""
msgid "Overhead"
msgstr "ئېغىر يۈك"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "مۇلازىمىتېردا ئىنكاس يوق"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
@@ -1928,7 +1951,7 @@ msgstr "ھوقۇقسىز"
#: libraries/display_create_table.lib.php:40
msgid "Table must have at least one column."
-msgstr ""
+msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك"
#: libraries/display_create_table.lib.php:47
#, php-format
@@ -1954,32 +1977,32 @@ msgstr ""
#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79
msgid "Save as file"
-msgstr ""
+msgstr "ھۆججەتنى باشقا ساقلاش"
#: libraries/display_export.lib.php:127
#, php-format
msgid "Save on server in %s directory"
-msgstr ""
+msgstr "مۇلازىمىتېرنىڭ %s مۇندەرىجىسىدە ساقلاش"
#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87
msgid "Overwrite existing file(s)"
-msgstr ""
+msgstr "مەۋجۇت ھۆججەت ئۈستىدىن يېزىش"
#: libraries/display_export.lib.php:141
msgid "File name template"
-msgstr ""
+msgstr "ھۆججەت ئېتى ئەندىزىسى"
#: libraries/display_export.lib.php:145
msgid "server name"
-msgstr ""
+msgstr "مۇلازىمىتىر ئىسمى"
#: libraries/display_export.lib.php:148
msgid "database name"
-msgstr ""
+msgstr "ساندان ئىسمى"
#: libraries/display_export.lib.php:151
msgid "table name"
-msgstr ""
+msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى"
#: libraries/display_export.lib.php:155
#, php-format
@@ -1991,40 +2014,40 @@ msgstr ""
#: libraries/display_export.lib.php:196
msgid "remember template"
-msgstr ""
+msgstr "ئەستە ساقلاش قېلىپى"
#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177
#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509
msgid "Character set of the file:"
-msgstr ""
+msgstr "ھۆججەتنىڭ ھەرىپ-بەلگە توپلىمى"
#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81
msgid "Compression"
-msgstr ""
+msgstr "پىرىسلاش"
#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196
#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528
#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573
#: server_privileges.php:1871 server_processlist.php:74
msgid "None"
-msgstr ""
+msgstr "يوق"
#: libraries/display_export.lib.php:241
msgid "\"zipped\""
-msgstr ""
+msgstr "zipپىرىسلاش"
#: libraries/display_export.lib.php:247
msgid "\"gzipped\""
-msgstr ""
+msgstr "gzipپىرىسلاش"
#: libraries/display_export.lib.php:253
msgid "\"bzipped\""
-msgstr ""
+msgstr "bzip پىرىسلاش"
#: libraries/display_export.lib.php:268 libraries/export/sql.php:42
#: libraries/import/sql.php:31
msgid "SQL compatibility mode"
-msgstr ""
+msgstr "SQLئۆز ئىچىگە ئالغان شەكلى"
#: libraries/display_import.lib.php:66
msgid ""
@@ -2035,50 +2058,52 @@ msgstr ""
#: libraries/display_import.lib.php:76
msgid "The file is being processed, please be patient."
-msgstr ""
+msgstr "بىتەرەپ قىلىنىۋاتىدۇ، ساقلاڭ"
#: libraries/display_import.lib.php:98
msgid ""
"Please be patient, the file is being uploaded. Details about the upload are "
"not available."
-msgstr ""
+msgstr "يوللىنىۋاتىدۇ،تەپسىلىي ئۇچۇرى يوق،ساقلاڭ"
#: libraries/display_import.lib.php:125
msgid "File to import"
-msgstr ""
+msgstr "ئەكىرىشكە تىگىشلىك ھۆججەت"
#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484
msgid "Location of the text file"
-msgstr ""
+msgstr "يىزىق ھۆججەتنىڭ ئورنى"
#: libraries/display_import.lib.php:147
msgid "File uploads are not allowed on this server."
-msgstr ""
+msgstr "مۇلازىمىتىرنىڭ ھۆججەت چىقىرىشىنى چەكلەندى"
#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493
#: tbl_change.php:922
msgid "The directory you set for upload work cannot be reached"
-msgstr ""
+msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى"
#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496
#: tbl_change.php:925
msgid "web server upload directory"
-msgstr ""
+msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
#: libraries/display_import.lib.php:211
#, php-format
msgid "Imported file compression will be automatically detected from: %s"
-msgstr ""
+msgstr "ئاپتۇماتىك پەرىق ئىتەلەيدىغان پىرىس ھۆججەت تىپلىرى: %s"
#: libraries/display_import.lib.php:218
msgid "Partial import"
-msgstr ""
+msgstr "بۆلۈپ كىرگۈزىش"
#: libraries/display_import.lib.php:224
#, php-format
msgid ""
"Previous import timed out, after resubmitting will continue from position %d."
msgstr ""
+"ئالدىنقى قېتىملىق مەشغۇلاتنىڭ ۋاقتى ئېشىپ كەتتى، %d دىن باشلاپ قايتىدىن "
+"تاپشۇرۇڭ."
#: libraries/display_import.lib.php:231
msgid ""
@@ -2093,11 +2118,11 @@ msgstr ""
#: libraries/display_import.lib.php:254 setup/lib/messages.inc.php:157
msgid "Format of imported file"
-msgstr ""
+msgstr "كىرگۈزگەن ھۆججەت شەكلى"
#: libraries/display_pdf_schema.lib.php:11
msgid "Display PDF schema"
-msgstr ""
+msgstr "PDF تىزىىسىنى كۆرسىتىش"
#: libraries/display_pdf_schema.lib.php:33
msgid "Show grid"
@@ -2105,11 +2130,11 @@ msgstr ""
#: libraries/display_pdf_schema.lib.php:36
msgid "Show color"
-msgstr ""
+msgstr "رەڭنى كۆرسىتىش"
#: libraries/display_pdf_schema.lib.php:38
msgid "Show dimension of tables"
-msgstr ""
+msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش"
#: libraries/display_pdf_schema.lib.php:41
msgid "Display all tables with the same width"
@@ -2117,33 +2142,33 @@ msgstr ""
#: libraries/display_pdf_schema.lib.php:46
msgid "Only show keys"
-msgstr ""
+msgstr "پەقەت كونوپكىنى كورسىتىش"
#: libraries/display_pdf_schema.lib.php:48
msgid "Data Dictionary Format"
-msgstr ""
+msgstr "سانلىق مەلۇمات لوغەت شەكلى"
#: libraries/display_pdf_schema.lib.php:50
msgid "Landscape"
-msgstr ""
+msgstr "توغرا يۈنىلىشتە"
#: libraries/display_pdf_schema.lib.php:51
msgid "Portrait"
-msgstr ""
+msgstr "بوي يۈنىلىشتە"
#: libraries/display_pdf_schema.lib.php:54
msgid "Paper size"
-msgstr ""
+msgstr "قەغەزنىڭ چوڭ-كىچىكلىكى"
#: libraries/display_select_lang.lib.php:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:70
msgid "Language"
-msgstr ""
+msgstr "تىلى"
#: libraries/display_tbl.lib.php:302
#, php-format
msgid "%d is not valid row number."
-msgstr ""
+msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس"
#: libraries/display_tbl.lib.php:308
msgid "row(s) starting from row #"
@@ -2253,7 +2278,7 @@ msgstr ""
#: libraries/display_tbl.lib.php:1920
msgid "total"
-msgstr ""
+msgstr "ئۇمۇمىي"
#: libraries/display_tbl.lib.php:1928 sql.php:522
#, php-format
@@ -2264,7 +2289,7 @@ msgstr ""
#: querywindow.php:114 querywindow.php:118 querywindow.php:121
#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467
msgid "Change"
-msgstr ""
+msgstr "ئۆزگەرتتىش"
#: libraries/display_tbl.lib.php:2117
msgid "Query results operations"
@@ -2272,11 +2297,11 @@ msgstr ""
#: libraries/display_tbl.lib.php:2145
msgid "Print view (with full texts)"
-msgstr ""
+msgstr "بېسىپ چىقىرش كۈرۈلمىسى"
#: libraries/display_tbl.lib.php:2318
msgid "Link not found"
-msgstr ""
+msgstr "ئۇلىنىشنى تاپالمىدى"
#: libraries/engines/bdb.lib.php:20 main.php:227
msgid "Version information"
@@ -2330,35 +2355,35 @@ msgstr ""
#: server_databases.php:302 server_status.php:524 server_status.php:585
#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693
msgid "Total"
-msgstr ""
+msgstr "يىغىندىسى"
#: libraries/engines/innodb.lib.php:171
msgid "pages"
-msgstr ""
+msgstr "بەت سانى"
#: libraries/engines/innodb.lib.php:180
msgid "Free pages"
-msgstr ""
+msgstr "ئاق(قۇرۇق)بەت"
#: libraries/engines/innodb.lib.php:186
msgid "Dirty pages"
-msgstr ""
+msgstr "كىرەكسىز(مەينەت)بەت"
#: libraries/engines/innodb.lib.php:192
msgid "Pages containing data"
-msgstr ""
+msgstr "قۇرۇق ئەمەس بەت"
#: libraries/engines/innodb.lib.php:198
msgid "Pages to be flushed"
-msgstr ""
+msgstr "يىڭىلايدىغان بەت"
#: libraries/engines/innodb.lib.php:204
msgid "Busy pages"
-msgstr ""
+msgstr "يۈك بەت"
#: libraries/engines/innodb.lib.php:213
msgid "Latched pages"
-msgstr ""
+msgstr "قۇلۇپلانغان بەت"
#: libraries/engines/innodb.lib.php:224
msgid "Buffer Pool Activity"
@@ -2366,11 +2391,11 @@ msgstr ""
#: libraries/engines/innodb.lib.php:228
msgid "Read requests"
-msgstr ""
+msgstr "ئۇقۇش تەلىپى"
#: libraries/engines/innodb.lib.php:234
msgid "Write requests"
-msgstr ""
+msgstr "يېزىش تەلىپى"
#: libraries/engines/innodb.lib.php:240
msgid "Read misses"
@@ -2378,7 +2403,7 @@ msgstr ""
#: libraries/engines/innodb.lib.php:246
msgid "Write waits"
-msgstr ""
+msgstr "يېزىشنى كۈتۈۋاتقان سانى"
#: libraries/engines/innodb.lib.php:252
msgid "Read misses in %"
@@ -2390,7 +2415,7 @@ msgstr ""
#: libraries/engines/myisam.lib.php:22
msgid "Data pointer size"
-msgstr ""
+msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى"
#: libraries/engines/myisam.lib.php:23
msgid ""
@@ -2400,7 +2425,7 @@ msgstr ""
#: libraries/engines/myisam.lib.php:27
msgid "Automatic recovery mode"
-msgstr ""
+msgstr "ئاپتۇماتىك ئەسلىگە كەلتۈرۈش شەكلى"
#: libraries/engines/myisam.lib.php:28
msgid ""
@@ -2432,7 +2457,7 @@ msgstr ""
#: libraries/engines/myisam.lib.php:41
msgid "Repair threads"
-msgstr ""
+msgstr "ئەسلىگە كەلتۈرۈش يۇلى"
#: libraries/engines/myisam.lib.php:42
msgid ""
@@ -2461,7 +2486,7 @@ msgstr ""
#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69
#: server_synchronize.php:1161
msgid "Port"
-msgstr ""
+msgstr "ئېغىز"
#: libraries/engines/pbms.lib.php:37
msgid ""
@@ -2617,7 +2642,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:67
msgid "Data file grow size"
-msgstr ""
+msgstr "سانلىق مەلۇمات ھۆججىتىنىڭ ئېشىش چوڭ-كىچىكلىكى"
#: libraries/engines/pbxt.lib.php:68
msgid "The grow size of the handle data (.xtd) files."
@@ -2633,7 +2658,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:77
msgid "Log file count"
-msgstr ""
+msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى"
#: libraries/engines/pbxt.lib.php:78
msgid ""
@@ -2646,31 +2671,31 @@ msgstr ""
#: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85
#: tbl_printview.php:373 tbl_structure.php:734
msgid "Format"
-msgstr ""
+msgstr "فورماتلاش"
#: libraries/export/csv.php:16 libraries/import/csv.php:21
msgid "CSV"
-msgstr ""
+msgstr "CSV"
#: libraries/export/csv.php:20 libraries/import/csv.php:26
#: libraries/import/csv.php:58 libraries/import/ldi.php:39
msgid "Columns terminated by"
-msgstr ""
+msgstr "خەت ئايرىش بەلگىسى"
#: libraries/export/csv.php:21 libraries/import/csv.php:27
#: libraries/import/csv.php:70 libraries/import/ldi.php:40
msgid "Columns enclosed by"
-msgstr ""
+msgstr "مەزمۇن ئايرىش بەلگىسى"
#: libraries/export/csv.php:22 libraries/import/csv.php:28
#: libraries/import/csv.php:74 libraries/import/ldi.php:41
msgid "Columns escaped by"
-msgstr ""
+msgstr "مەزمۇنئايلاندۇرۇش بەلگىسى"
#: libraries/export/csv.php:23 libraries/import/csv.php:29
#: libraries/import/csv.php:78 libraries/import/ldi.php:42
msgid "Lines terminated by"
-msgstr ""
+msgstr "قۇر ئالماشۇرۇش بەلگىسى"
#: libraries/export/csv.php:24 libraries/export/excel.php:21
#: libraries/export/htmlword.php:24 libraries/export/latex.php:69
@@ -2678,7 +2703,7 @@ msgstr ""
#: libraries/export/texytext.php:31 libraries/export/xls.php:22
#: libraries/export/xlsx.php:22
msgid "Replace NULL by"
-msgstr ""
+msgstr "نى ئالماشتۇرۇش ئۈچۈنNULL "
#: libraries/export/csv.php:25 libraries/export/excel.php:22
msgid "Remove CRLF characters within columns"
@@ -2694,15 +2719,15 @@ msgstr ""
#: libraries/export/excel.php:17
msgid "CSV for MS Excel"
-msgstr ""
+msgstr "MS Excel دىكى CSVشەكلى"
#: libraries/export/excel.php:31
msgid "Excel edition"
-msgstr ""
+msgstr "Excel نۇسخىسى"
#: libraries/export/htmlword.php:17
msgid "Microsoft Word 2000"
-msgstr ""
+msgstr "Microsoft Word 2000"
#: libraries/export/htmlword.php:23 libraries/export/latex.php:59
#: libraries/export/latex.php:205 libraries/export/odt.php:47
@@ -2711,17 +2736,17 @@ msgstr ""
#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314
#: tbl_structure.php:662
msgid "Data"
-msgstr ""
+msgstr "سانلىق مەلۇمات"
#: libraries/export/htmlword.php:131 libraries/export/odt.php:167
#: libraries/export/sql.php:878 libraries/export/texytext.php:130
msgid "Dumping data for table"
-msgstr ""
+msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات"
#: libraries/export/htmlword.php:184 libraries/export/odt.php:237
#: libraries/export/sql.php:782 libraries/export/texytext.php:177
msgid "Table structure for table"
-msgstr ""
+msgstr "جەدېۋەلنىڭ تۈزىلىشى"
#: libraries/export/latex.php:13
msgid "Content of table @TABLE@"
@@ -2729,7 +2754,7 @@ msgstr ""
#: libraries/export/latex.php:14
msgid "(continued)"
-msgstr ""
+msgstr "داۋاملاشتۇرلىدىغان"
#: libraries/export/latex.php:15
#, fuzzy
@@ -2739,34 +2764,34 @@ msgstr "تۈزىلىشىنىلا"
#: libraries/export/latex.php:26
msgid "LaTeX"
-msgstr ""
+msgstr "LaTeX"
#: libraries/export/latex.php:30
msgid "Include table caption"
-msgstr ""
+msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى"
#: libraries/export/latex.php:39 libraries/export/latex.php:63
msgid "Table caption"
-msgstr ""
+msgstr "جەدېۋەلنىڭ تىمىسى"
#: libraries/export/latex.php:41 libraries/export/latex.php:65
msgid "Continued table caption"
-msgstr ""
+msgstr "داۋاملاشتۇرىدىغان جەدېۋەلنىڭ تىمىسى"
#: libraries/export/latex.php:43 libraries/export/latex.php:67
msgid "Label key"
-msgstr ""
+msgstr "ئاچقۇچلۇق ئېمزا"
#: libraries/export/latex.php:46 libraries/export/odt.php:34
#: libraries/export/sql.php:90 tbl_relation.php:396
msgid "Relations"
-msgstr ""
+msgstr "مۇناسىۋىتى"
#: libraries/export/latex.php:52 libraries/export/odt.php:40
#: libraries/export/odt.php:317 libraries/export/sql.php:94
#: libraries/tbl_properties.inc.php:141
msgid "MIME type"
-msgstr ""
+msgstr "MIMEشەكلى"
#: libraries/export/latex.php:129 libraries/export/sql.php:230
#: libraries/export/xml.php:101 libraries/header_printview.inc.php:56
@@ -2777,38 +2802,38 @@ msgstr ""
#: server_privileges.php:1533 server_privileges.php:2065
#: server_processlist.php:54 server_synchronize.php:1157
msgid "Host"
-msgstr ""
+msgstr "ئاساسىي ماشىنا"
#: libraries/export/latex.php:134 libraries/export/sql.php:231
#: libraries/export/xml.php:106 libraries/header_printview.inc.php:58
msgid "Generation Time"
-msgstr ""
+msgstr "قۇرۇلغان ۋاقتى"
#: libraries/export/latex.php:135 libraries/export/sql.php:233
#: libraries/export/xml.php:107 main.php:185
msgid "Server version"
-msgstr ""
+msgstr "مۇلازىمىتىر نۇسخىسى"
#: libraries/export/latex.php:136 libraries/export/sql.php:234
#: libraries/export/xml.php:108
msgid "PHP Version"
-msgstr ""
+msgstr "PHPنۇسخىسى"
#: libraries/export/mediawiki.php:15
msgid "MediaWiki Table"
-msgstr ""
+msgstr "MediaWikiكۈرۈنىشى"
#: libraries/export/ods.php:17 libraries/import/ods.php:22
msgid "Open Document Spreadsheet"
-msgstr ""
+msgstr "OpenOffice جەدىۋېلى"
#: libraries/export/odt.php:21
msgid "Open Document Text"
-msgstr ""
+msgstr "OpenOffice ھۆججىتى"
#: libraries/export/pdf.php:17
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#: libraries/export/pdf.php:22
msgid "(Generates a report containing the data of a single table)"
@@ -2816,11 +2841,11 @@ msgstr ""
#: libraries/export/pdf.php:23
msgid "Report title"
-msgstr ""
+msgstr "دوكلات تېمىسى"
#: libraries/export/php_array.php:16
msgid "PHP array"
-msgstr ""
+msgstr "PHP سانلىق گۇرۇپىسى"
#: libraries/export/sql.php:28
msgid "Add custom comment into header (\\n splits lines)"
@@ -3139,7 +3164,7 @@ msgstr ""
msgid "Fulltext"
msgstr ""
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr ""
@@ -7280,7 +7305,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7289,7 +7314,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 793634aa1..d4043405b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-27 23:41+0200\n"
"Last-Translator: Olexiy Zagorskyi \n"
"Language-Team: ukrainian \n"
-"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uk\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -91,6 +91,7 @@ msgid "Use this value"
msgstr "Використовувати це значення"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -124,7 +125,6 @@ msgstr "Коментар до таблиці"
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267
#: tbl_tracking.php:318
-#| msgid "Column names"
msgid "Column"
msgstr "Стовпчик"
@@ -249,7 +249,6 @@ msgid "and then"
msgstr "і потім"
#: db_operations.php:379
-#| msgid "No databases"
msgid "Remove database"
msgstr "Видалити базу даних"
@@ -259,7 +258,6 @@ msgid "Database %s has been dropped."
msgstr "Базу даних %s знищено."
#: db_operations.php:396
-#| msgid "No databases"
msgid "Drop the database (DROP)"
msgstr "Знищити базу даних (DROP)"
@@ -373,7 +371,6 @@ msgstr "Перевірено"
#: db_printview.php:220 db_structure.php:465
#, php-format
-#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s таблиця"
@@ -443,12 +440,10 @@ msgid "Modify"
msgstr "Змінити"
#: db_qbe.php:580
-#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Додати/Прибрати рядки критеріїв"
#: db_qbe.php:592
-#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Додати/Прибрати колонки"
@@ -523,7 +518,6 @@ msgstr "Видалити"
#: db_search.php:267
#, php-format
-#| msgid "Total: %s match(es)"
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Всього: %s співпадіння"
@@ -551,7 +545,6 @@ msgid "Inside table(s):"
msgstr "Всередині таблиць:"
#: db_search.php:337
-#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Всередині стовпчика:"
@@ -1399,7 +1392,8 @@ msgstr ""
msgid "Databases"
msgstr "Бази Даних"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1604,22 +1598,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1915,16 +1930,16 @@ msgstr ""
msgid "Overhead"
msgstr "Надмірні видатки"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3213,7 +3228,7 @@ msgstr "Індекс"
msgid "Fulltext"
msgstr "ПовнТекст"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Змін немає"
@@ -3784,11 +3799,6 @@ msgid "Length/Values"
msgstr "Довжини/Значення*"
#: libraries/tbl_properties.inc.php:104
-#| msgid ""
-#| "If field type is \"enum\" or \"set\", please enter the values using this "
-#| "format: 'a','b','c'... If you ever need to put a backslash (\"\\\") "
-#| "or a single quote (\"'\") amongst those values, precede it with a "
-#| "backslash (for example '\\\\xyz' or 'a\\'b')."
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -3796,9 +3806,9 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
"Для типів поля \"enum\" або \"set\", введіть значення в такому форматі: "
-"'a','b','c'... Якщо вам буде потрібно ввести зворотню косу риску (\"\\\") "
-"або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними зворотню "
-"косу риску (наприклад, '\\\\xyz' чи 'a\\'b')."
+"'a','b','c'... Якщо вам буде потрібно ввести зворотню косу риску (\"\\"
+"\") або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними "
+"зворотню косу риску (наприклад, '\\\\xyz' чи 'a\\'b')."
#: libraries/tbl_properties.inc.php:105
msgid ""
@@ -3833,10 +3843,10 @@ msgid ""
"quote (\"'\") amongst those values, precede it with a backslash (for example "
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-"Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'... Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки (\"'\") у цих "
-"значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\\\xyz' "
-"чи 'a\\'b')."
+"Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'... Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки (\"'\") у "
+"цих значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\"
+"\\xyz' чи 'a\\'b')."
#: libraries/tbl_properties.inc.php:391
#, fuzzy
@@ -3855,8 +3865,7 @@ msgid ""
"No description is available for this transformation. Please ask the "
"author what %s does."
msgstr ""
-"Немає опису для цього перетворення. Прошу питатися автора, що робить %"
-"s."
+"Немає опису для цього перетворення. Прошу питатися автора, що робить %s."
#: libraries/tbl_properties.inc.php:724 server_engines.php:56
#: tbl_operations.php:352
@@ -3876,7 +3885,6 @@ msgstr "Зберегти"
#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539
#, php-format
-#| msgid "Add into comments"
msgid "Add %s column(s)"
msgstr "Додати %s стовпчик(ів)"
@@ -3966,9 +3974,6 @@ msgstr ""
"показано без переформатування (за замовчуванням: 1)"
#: libraries/transformations/text_plain__formatted.inc.php:9
-#| msgid ""
-#| "Displays the contents of the field as-is, without running it through "
-#| "htmlspecialchars(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@@ -7499,7 +7504,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7508,7 +7513,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index 743537360..8578e2abc 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-05-14 12:35+0200\n"
"Last-Translator: \n"
"Language-Team: Urdu \n"
@@ -93,6 +93,7 @@ msgid "Use this value"
msgstr "یہ ویلیو استعمال کریں"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1365,7 +1366,8 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1566,22 +1568,43 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1868,16 +1891,16 @@ msgstr ""
msgid "Overhead"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
@@ -3147,7 +3170,7 @@ msgstr ""
msgid "Fulltext"
msgstr ""
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr ""
@@ -7296,7 +7319,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7305,7 +7328,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index 8ea732c5b..7c91656fb 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_cyrillic \n"
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "Ушбу қийматни ишлатиш"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1433,7 +1434,8 @@ msgstr " %1$s ва %2$s индекслари бир хил, улардан би
msgid "Databases"
msgstr "Маълумотлар базалари"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1646,22 +1648,45 @@ msgstr "Тўғри аутентификация калити уланмаган"
msgid "Authenticating..."
msgstr "Aутентификация..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Саҳифа тузиб бўлмади"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Расм кўриниши"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Аудиофайлни ўқиш"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Видео кўриниши"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Файлни юклаб олиш"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1970,18 +1995,18 @@ msgstr ""
msgid "Overhead"
msgstr "Фрагментланган"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида "
"кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Сервер жавоб бермаяпти"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
@@ -3357,7 +3382,7 @@ msgstr "Индекс"
msgid "Fulltext"
msgstr "Матн тўлалигича"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "Ўзгариш йўқ"
@@ -8153,7 +8178,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Киритилган қатор идентификатори: %1$d"
@@ -8162,7 +8187,7 @@ msgstr "Киритилган қатор идентификатори: %1$d"
msgid "Showing as PHP code"
msgstr "PHP-код сифатида кўрсатиш"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "SQL-сўровни кўрсатиш"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 48bc613b6..76a6cdad5 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_latin \n"
@@ -90,6 +90,7 @@ msgid "Use this value"
msgstr "Ushbu qiymatni ishlatish"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1438,7 +1439,8 @@ msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
msgid "Databases"
msgstr "Ma`lumotlar bazalari"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1651,22 +1653,45 @@ msgstr "To‘g‘ri autentifikatsiya kaliti ulanmagan"
msgid "Authenticating..."
msgstr "Autentifikatsiya..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "Page creation failed"
+msgid "PBMS connection failed:"
+msgstr "Sahifa tuzib bo‘lmadi"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "Rasm ko‘rinishi"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "Audiofaylni o‘qish"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "Vidеo ko‘rinishi"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "Faylni yuklab olish"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1977,18 +2002,18 @@ msgstr ""
msgid "Overhead"
msgstr "Fragmentlangan"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida "
"ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi."
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "Server javob bermayapti"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
@@ -3372,7 +3397,7 @@ msgstr "Indeks"
msgid "Fulltext"
msgstr "Matn to‘laligicha"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "O‘zgarish yo‘q"
@@ -8215,7 +8240,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Kiritilgan qator identifikatori: %1$d"
@@ -8224,7 +8249,7 @@ msgstr "Kiritilgan qator identifikatori: %1$d"
msgid "Showing as PHP code"
msgstr "PHP-kod sifatida ko‘rsatish"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "SQL-so‘rovni ko‘rsatish"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 65e77b2e6..d0945f8e6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
-"PO-Revision-Date: 2010-06-04 14:09+0200\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
+"PO-Revision-Date: 2010-08-10 08:13+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
+"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:36 browse_foreigners.php:57
#: libraries/display_tbl.lib.php:415 server_privileges.php:1510
@@ -89,6 +89,7 @@ msgid "Use this value"
msgstr "使用此值"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -100,7 +101,7 @@ msgstr "将文件写入磁盘失败。"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "打开远程 URL 失败"
#: db_create.php:44
#, php-format
@@ -248,10 +249,9 @@ msgid "and then"
msgstr "然后"
#: db_operations.php:379
-#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
-msgstr "将数据库改名为"
+msgstr "删除数据库"
#: db_operations.php:391
#, php-format
@@ -259,10 +259,9 @@ msgid "Database %s has been dropped."
msgstr "已被删除数据库 %s 。"
#: db_operations.php:396
-#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
-msgstr "转到数据库"
+msgstr "删除数据库 (DROP)"
#: db_operations.php:424
msgid "Copy database to"
@@ -321,7 +320,7 @@ msgstr "整理"
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
-msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。"
+msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。"
#: db_operations.php:531
msgid "Edit PDF Pages"
@@ -494,11 +493,11 @@ msgid "Search results for \"%s\" %s:"
msgstr "“%s”的搜索结果 %s:"
#: db_search.php:242
-#, fuzzy, php-format
+#, php-format
#| msgid "%s match(es) inside table %s"
msgid "%s match inside table %s"
msgid_plural "%s matches inside table %s"
-msgstr[0] "%s 个匹配 - 于表 %s 中"
+msgstr[0] "在表 %2$s 中找到 %1$s 个匹配"
#: db_search.php:249 db_structure.php:75 db_structure.php:76
#: db_structure.php:88 db_structure.php:90 db_structure.php:101
@@ -517,7 +516,7 @@ msgid "Delete"
msgstr "删除"
#: db_search.php:267
-#, fuzzy, php-format
+#, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -544,7 +543,6 @@ msgid "Inside table(s):"
msgstr "于以下表:"
#: db_search.php:337
-#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "包含字段:"
@@ -993,7 +991,6 @@ msgid "Choose column to display"
msgstr "选择要显示的字段"
#: js/messages.php:66
-#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "生成密码"
@@ -1348,7 +1345,8 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除
msgid "Databases"
msgstr "数据库"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1549,22 +1547,43 @@ msgstr "没有可用的密钥插入"
msgid "Authenticating..."
msgstr "正在认证..."
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr "PBMS 错误"
+
+#: libraries/blobstreaming.lib.php:267
+msgid "PBMS connection failed:"
+msgstr "PBMS 连接失败:"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr "PBMS 获取 BLOB 信息失败:"
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr "查看图像"
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr "播放音频"
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr "播放视频"
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr "下载文件"
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr "无法打开文件:%s"
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1652,10 +1671,9 @@ msgid "MySQL said: "
msgstr "MySQL 返回:"
#: libraries/common.lib.php:1129
-#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
-msgstr "无法连接到 MySQL 服务器"
+msgstr "连接到 SQL 校验器失败!"
#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350
msgid "Explain SQL"
@@ -1795,7 +1813,7 @@ msgstr "操作"
#: libraries/core.lib.php:265 libraries/dbg/setup.php:21
#, php-format
msgid "The %s extension is missing. Please check your PHP configuration."
-msgstr ""
+msgstr "缺少 %s 扩展。请检查 PHP 配置。"
#: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21
#: libraries/export/sql.php:412
@@ -1858,16 +1876,16 @@ msgstr ""
msgid "Overhead"
msgstr "多余"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr "使用配置文件中定义的控制用户连接失败。"
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "服务器没有响应"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)"
@@ -2510,17 +2528,16 @@ msgid ""
msgstr ""
#: libraries/engines/pbms.lib.php:51
-#, fuzzy
#| msgid "Log file threshold"
msgid "Temp Log Threshold"
-msgstr "日志文件阈值"
+msgstr "临时日志阈值"
#: libraries/engines/pbms.lib.php:52
msgid ""
"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to "
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
-msgstr ""
+msgstr "一个临时 BLOB 日志文件的最大大小。可以使用 Kb、MB 或 GB 作为单位。若不写单位,默认为字节。"
#: libraries/engines/pbms.lib.php:56
msgid "Max Keep Alive"
@@ -2753,20 +2770,18 @@ msgid "Table structure for table"
msgstr "表的结构"
#: libraries/export/latex.php:13
-#, fuzzy
#| msgid "Content of table __TABLE__"
msgid "Content of table @TABLE@"
-msgstr "__TABLE__ 表的内容"
+msgstr "@TABLE@ 表的内容"
#: libraries/export/latex.php:14
msgid "(continued)"
msgstr "(延续的)"
#: libraries/export/latex.php:15
-#, fuzzy
#| msgid "Structure of table __TABLE__"
msgid "Structure of table @TABLE@"
-msgstr "__TABLE__ 表的结构"
+msgstr "@TABLE@ 表的结构"
#: libraries/export/latex.php:26
msgid "LaTeX"
@@ -3170,7 +3185,7 @@ msgstr "索引"
msgid "Fulltext"
msgstr "全文搜索"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "无更改"
@@ -4138,16 +4153,14 @@ msgid "Create a page"
msgstr "创建新页"
#: pdf_pages.php:308
-#, fuzzy
#| msgid "Page number:"
msgid "Page name"
-msgstr "页码:"
+msgstr "页面名称"
#: pdf_pages.php:312
-#, fuzzy
#| msgid "Automatic layout"
msgid "Automatic layout based on"
-msgstr "自动排版"
+msgstr "自动排版,基于"
#: pdf_pages.php:314
msgid "Internal relations"
@@ -4382,16 +4395,14 @@ msgid "Jump to database"
msgstr "转到数据库"
#: server_databases.php:264
-#, fuzzy
#| msgid "Master replication"
msgid "Not replicated"
-msgstr "主复制"
+msgstr "未复制"
#: server_databases.php:270
-#, fuzzy
#| msgid "Replication"
msgid "Replicated"
-msgstr "复制"
+msgstr "已复制"
#: server_databases.php:286
#, php-format
@@ -6456,7 +6467,7 @@ msgid ""
"in documentation"
msgstr ""
"配置 phpMyAdmin 数据库获得更多功能,参见文档[a@../Documentation.html#linked-"
-"tables]链接表的附加功能[/a]。"
+"tables]phpMyAdmin 高级功能[/a]"
#: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290
msgid "PMA database"
@@ -7561,7 +7572,7 @@ msgstr ""
msgid "ZIP"
msgstr "ZIP"
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr "插入的行 id: %1$d"
@@ -7570,15 +7581,14 @@ msgstr "插入的行 id: %1$d"
msgid "Showing as PHP code"
msgstr "显示为 PHP 代码"
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr "显示 SQL 查询"
#: sql.php:516
-#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
-msgstr "校验 SQL"
+msgstr "已校验的 SQL"
#: sql.php:631
#, php-format
@@ -7785,20 +7795,18 @@ msgid "Flush the table (FLUSH)"
msgstr "刷新表 (FLUSH)"
#: tbl_operations.php:642
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
-msgstr "删除追踪数据"
+msgstr "删除数据或数据表"
#: tbl_operations.php:657
msgid "Empty the table (TRUNCATE)"
-msgstr ""
+msgstr "清空数据表 (TRUNCATE)"
#: tbl_operations.php:675
-#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
-msgstr "转到数据库"
+msgstr "删除数据表 (DROP)"
#: tbl_operations.php:696
msgid "Partition maintenance"
@@ -7957,10 +7965,9 @@ msgid "Propose table structure"
msgstr "规划表结构"
#: tbl_structure.php:537
-#, fuzzy
#| msgid "Add column(s)"
msgid "Add column"
-msgstr "增加字段"
+msgstr "添加字段"
#: tbl_structure.php:551
msgid "At End of Table"
@@ -8164,182 +8171,3 @@ msgstr "视图名"
#: view_operations.php:91
msgid "Rename view to"
msgstr "将视图改名为"
-
-#, fuzzy
-#~| msgid "Table name"
-#~ msgid "Table removal"
-#~ msgstr "数据表名"
-
-#~ msgid "BLOB Repository"
-#~ msgstr "BLOB 容器"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Enabled"
-#~ msgstr "已启用"
-
-#~ msgid "Disable"
-#~ msgstr "禁用"
-
-#~ msgid "Damaged"
-#~ msgstr "已损坏"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Repair"
-#~ msgstr "修复"
-
-#~ msgctxt "BLOB repository"
-#~ msgid "Disabled"
-#~ msgstr "已禁用"
-
-#~ msgid "Enable"
-#~ msgstr "启用"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~ "extension. Please check your PHP configuration."
-#~ msgstr ""
-#~ "无法加载 [a@http://php.net/%1$s@Documentation][em]%1$s (外链,英语)[/em][/"
-#~ "a] 扩展,请检查您的 PHP 配置。"
-
-#~ msgid ""
-#~ "Couldn't load the iconv or recode extension needed for charset "
-#~ "conversion. Either configure PHP to enable these extensions or disable "
-#~ "charset conversion in phpMyAdmin."
-#~ msgstr ""
-#~ "无法加载 iconv 或可用于转换字符集所需的重编码扩展,请配置 PHP 启用这些扩展"
-#~ "或在 phpMyAdmin 中禁用字符集转换功能。"
-
-#~ msgid ""
-#~ "Couldn't use the iconv, libiconv, or recode_string functions, although "
-#~ "the necessary extensions appear to be loaded. Check your PHP "
-#~ "configuration."
-#~ msgstr ""
-#~ "虽然必须的扩展已经加载,但还是无法使用 iconv、libiconv 和 recode_string 函"
-#~ "数。请检查您的 PHP 配置。"
-
-#~ msgid "Allow character set conversion"
-#~ msgstr "允许转换字符集"
-
-#~ msgid "Default character set used for conversions"
-#~ msgstr "转换时的默认字符集"
-
-#~ msgid "Default character set"
-#~ msgstr "默认字符集"
-
-#~| msgid "Add new field"
-#~ msgid "Add field"
-#~ msgstr "添加字段"
-
-#~ msgid "Field"
-#~ msgstr "字段"
-
-#~ msgid "Records"
-#~ msgstr "记录数"
-
-#~ msgid "Fields terminated by"
-#~ msgstr "字段分隔符"
-
-#~ msgid "Fields"
-#~ msgstr "字段数"
-
-#~ msgid "Add %s field(s)"
-#~ msgstr "添加 %s 个字段"
-
-#~ msgid "Field %s has been dropped"
-#~ msgstr "已删除字段 %s "
-
-#~ msgid "See image/jpeg: inline"
-#~ msgstr "参见 image/jpeg: inline"
-
-#~ msgid "zipped"
-#~ msgstr "zip 压缩"
-
-#~ msgid "gzipped"
-#~ msgstr "gzip 压缩"
-
-#~ msgid "bzipped"
-#~ msgstr "bzip 压缩"
-
-#~ msgid ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-#~ msgstr ""
-#~ "在文件头添加自定义注释 (\n"
-#~ " 为换行)"
-
-#~ msgid "and"
-#~ msgstr "和"
-
-#~ msgctxt "$strBLOBRepositoryDisabled"
-#~ msgid "Disabled"
-#~ msgstr "已禁用"
-
-#~ msgctxt "$strBLOBRepositoryEnabled"
-#~ msgid "Enabled"
-#~ msgstr "已启用"
-
-#~ msgctxt "$strBLOBRepositoryRepair"
-#~ msgid "Repair"
-#~ msgstr "修复"
-
-#~ msgid "Calendar"
-#~ msgstr "日历"
-
-#~ msgid "MySQL 4.0 compatible"
-#~ msgstr "兼容 MySQL 4.0"
-
-#~ msgid "Could not load default configuration from: \"%1$s\""
-#~ msgstr "无法加载默认配置: \"%1$s\""
-
-#~ msgid "Create an index on %s columns"
-#~ msgstr "在第 %s 个字段创建索引"
-
-#~ msgctxt "$strCreateTableShort"
-#~ msgid "Create table"
-#~ msgstr "新建数据表"
-
-#~ msgctxt "$strCreateUserDatabaseNone"
-#~ msgid "None"
-#~ msgstr "无"
-
-#~ msgid "Flush the table (\"FLUSH\")"
-#~ msgstr "强制更新表 (\"FLUSH\")"
-
-#~ msgid "Invalid server index: \"%s\""
-#~ msgstr "无效的服务器索引:“%s”"
-
-#~ msgctxt "$strMIME_description"
-#~ msgid "Description"
-#~ msgstr "说明"
-
-#~ msgctxt "$strNoneDefault"
-#~ msgid "None"
-#~ msgstr "无"
-
-#~ msgid "Schema of the \"%s\" database - Page %s"
-#~ msgstr "数据库“%s”的大纲 - 第 %s 页"
-
-#~ msgid "The \"%s\" table doesn't exist!"
-#~ msgstr "表“%s”不存在!"
-
-#~ msgid ""
-#~ "This MySQL server works as %s in replication process. For further "
-#~ "information about replication status on the server, please visit the replication section."
-#~ msgstr ""
-#~ "此 MySQL 服务器运行于 %s 复制 进程。要获得更多关于此服务器的复制状"
-#~ "态,请浏览 复制状态信息."
-
-#~ msgid "running on %s"
-#~ msgstr "运行于 %s"
-
-#~ msgid "The scale factor is too small to fit the schema on one page"
-#~ msgstr "比例因子太小,无法在一页中显示大纲"
-
-#~ msgid ""
-#~ "Cannot start session without errors, please check errors given in your "
-#~ "PHP and/or webserver log file and configure your PHP installation "
-#~ "properly."
-#~ msgstr ""
-#~ "无法在发生错误时创建会话,请检查 PHP 或网站服务器日志,并正确配置 PHP 安"
-#~ "装。"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index d222d219c..9b9a8caa2 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-07-28 05:45-0400\n"
+"POT-Creation-Date: 2010-08-06 08:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional \n"
@@ -88,6 +88,7 @@ msgid "Use this value"
msgstr "使用此值"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
+#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
msgstr ""
@@ -1404,7 +1405,8 @@ msgstr ""
msgid "Databases"
msgstr "資料庫"
-#: libraries/Message.class.php:210 libraries/common.lib.php:574
+#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:574
#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30
#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210
#: tbl_relation.php:287 view_operations.php:60
@@ -1610,22 +1612,45 @@ msgstr ""
msgid "Authenticating..."
msgstr ""
-#: libraries/blobstreaming.lib.php:340
+#: libraries/blobstreaming.lib.php:241
+msgid "PBMS error"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:267
+#, fuzzy
+#| msgid "MySQL connection collation"
+msgid "PBMS connection failed:"
+msgstr "MySQL 連線校對"
+
+#: libraries/blobstreaming.lib.php:312
+msgid "PBMS get BLOB info failed:"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:320
+msgid "get BLOB Content-Type failed"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:347
msgid "View image"
msgstr ""
-#: libraries/blobstreaming.lib.php:344
+#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
msgstr ""
-#: libraries/blobstreaming.lib.php:349
+#: libraries/blobstreaming.lib.php:356
msgid "View video"
msgstr ""
-#: libraries/blobstreaming.lib.php:353
+#: libraries/blobstreaming.lib.php:360
msgid "Download file"
msgstr ""
+#: libraries/blobstreaming.lib.php:421
+#, php-format
+msgid "Could not open file: %s"
+msgstr ""
+
#: libraries/common.inc.php:567
msgid ""
"phpMyAdmin was unable to read your configuration file! This might "
@@ -1922,16 +1947,16 @@ msgstr "可能接近. 請參看 FAQ 3.11"
msgid "Overhead"
msgstr "多餘"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351
-#: libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysqli.dbi.lib.php:404
msgid "The server is not responding"
msgstr "伺服器並無回應"
-#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405
+#: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:404
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)"
@@ -3251,7 +3276,7 @@ msgstr "索引鍵 INDEX"
msgid "Fulltext"
msgstr "全文檢索"
-#: libraries/mult_submits.inc.php:433 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:433 tbl_replace.php:326
msgid "No change"
msgstr "沒有變更"
@@ -7554,7 +7579,7 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:494 tbl_replace.php:384
+#: sql.php:494 tbl_replace.php:380
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -7563,7 +7588,7 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:514 tbl_replace.php:358
+#: sql.php:514 tbl_replace.php:354
msgid "Showing SQL query"
msgstr ""
diff --git a/sql.php b/sql.php
index 7dee1cd7f..b174a4959 100644
--- a/sql.php
+++ b/sql.php
@@ -531,7 +531,12 @@ if (0 == $num_rows || $is_affected) {
$goto = PMA_securePath($goto);
// Checks for a valid target script
$is_db = $is_table = false;
+ if (isset($_REQUEST['purge'])) {
+ $table = '';
+ unset($url_params['table']);
+ }
include 'libraries/db_table_exists.lib.php';
+
if (strpos($goto, 'tbl_') === 0 && ! $is_table) {
if (strlen($table)) {
$table = '';
diff --git a/tbl_operations.php b/tbl_operations.php
index e2de481cb..666f6f331 100644
--- a/tbl_operations.php
+++ b/tbl_operations.php
@@ -668,7 +668,9 @@ if (! (isset($db_is_information_schema) && $db_is_information_schema)) {
'reload' => '1',
'purge' => '1',
'zero_rows' => sprintf(($tbl_is_view ? __('View %s has been dropped') : __('Table %s has been dropped')), htmlspecialchars($table)),
- 'table' => NULL,
+ // table name is needed to avoid running
+ // PMA_relationsCleanupDatabase() on the whole db later
+ 'table' => $GLOBALS['table'],
));
?>
-
diff --git a/tbl_replace.php b/tbl_replace.php
index 92331b9c3..e372bd0ab 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -210,10 +210,6 @@ foreach ($loop_array as $rowcount => $where_clause) {
? $_REQUEST['auto_increment']['multi_edit'][$rowcount]
: null;
- if ($blob_streaming_active) {
- $primary_field = PMA_BS_GetPrimaryField($GLOBALS['db'], $GLOBALS['table']);
- }
-
// Fetch the current values of a row to use in case we have a protected field
// @todo possibly move to ./libraries/tbl_replace_fields.inc.php
if ($is_insert && $using_key && isset($me_fields_type) && is_array($me_fields_type) && isset($where_clause)) {
@@ -226,7 +222,7 @@ foreach ($loop_array as $rowcount => $where_clause) {
require './libraries/tbl_replace_fields.inc.php';
// for blobstreaming
- if ($blob_streaming_active && (NULL != $primary_field || strlen($primary_field) > 0)) {
+ if ($blob_streaming_active) {
$remove_blob_repo = isset($_REQUEST['remove_blob_repo_' . $key]) ? $_REQUEST['remove_blob_repo_' . $key] : NULL;
$upload_blob_repo = isset($_REQUEST['upload_blob_repo_' . $key]) ? $_REQUEST['upload_blob_repo_' . $key] : NULL;
@@ -234,7 +230,7 @@ foreach ($loop_array as $rowcount => $where_clause) {
if (isset($remove_blob_repo) && ! isset($upload_blob_repo)) {
$remove_blob_reference = $_REQUEST['remove_blob_ref_' . $key];
if (isset($remove_blob_reference)) {
- $val = "''";
+ $val = "NULL";
}
}
|