database abstraction, part I
This commit is contained in:
@@ -5,6 +5,15 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-01-17 Alexander M. Turek <roomservice@derrabus.de>
|
||||||
|
* config.inc.php, Documentation.html, footer.inc.php, lang/*.inc.php,
|
||||||
|
libraries/common.lib.php, libraries/config_import.lib.php,
|
||||||
|
libraries/database_interface.lib.php, libraries/defines.lib.php,
|
||||||
|
libraries/auth/config.auth.lib.php, libraries/auth/cookie.lib.php,
|
||||||
|
libraries/dbi/mysql.dbi.lib.php: Database abstraction, part I - Added
|
||||||
|
new procedures for connecting and querying.
|
||||||
|
* main.php: Changed all calls to PMA_mysql_query by the new functions.
|
||||||
|
|
||||||
2004-01-14 Marc Delisle <lem9@users.sourceforge.net>
|
2004-01-14 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* mult_submits.inc.php: bug 876805, dropping a field with the
|
* mult_submits.inc.php: bug 876805, dropping a field with the
|
||||||
multi-submit mechanism removes all internal relations of a table,
|
multi-submit mechanism removes all internal relations of a table,
|
||||||
|
@@ -449,11 +449,29 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt><b>$cfg['Servers'][$i]['extension']</b> string</dt>
|
||||||
|
<dd>
|
||||||
|
What php MySQL extension to use for the connection. Valid options are:
|
||||||
|
<br /><br />
|
||||||
|
<tt><i>mysql</i></tt> :
|
||||||
|
The classic MySQL extension. This is the recommended and default
|
||||||
|
method at this time.
|
||||||
|
<br /><br />
|
||||||
|
<tt><i>mysqli</i></tt> :
|
||||||
|
The improved MySQL extension. This extension became available
|
||||||
|
with php 5.0.0 and is the recommended way to connect to a server
|
||||||
|
running MySQL 4.1.x.
|
||||||
|
<br />
|
||||||
|
Note: phpMyAdmin's MySQL 4.1 support is experimental!
|
||||||
|
<br /><br />
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfg['Servers'][$i]['compress']</b> boolean</dt>
|
<dt><b>$cfg['Servers'][$i]['compress']</b> boolean</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Whether to use a compressed protocol for the MySQL server connection
|
Whether to use a compressed protocol for the MySQL server connection
|
||||||
or not (experimental).<br />
|
or not (experimental).<br />
|
||||||
This feature requires PHP >= 4.3.0.
|
This feature requires PHP >= 4.3.0.
|
||||||
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
@@ -70,6 +70,7 @@ $cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP addr
|
|||||||
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
|
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
|
||||||
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
|
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
|
||||||
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
|
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
|
||||||
|
$cfg['Servers'][$i]['extension'] = 'mysql'; // The php MySQL extension to use ('mysql' or 'mysqli')
|
||||||
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
|
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
|
||||||
// (requires PHP >= 4.3.0)
|
// (requires PHP >= 4.3.0)
|
||||||
$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
|
$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
|
||||||
@@ -127,6 +128,7 @@ $cfg['Servers'][$i]['host'] = '';
|
|||||||
$cfg['Servers'][$i]['port'] = '';
|
$cfg['Servers'][$i]['port'] = '';
|
||||||
$cfg['Servers'][$i]['socket'] = '';
|
$cfg['Servers'][$i]['socket'] = '';
|
||||||
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
||||||
|
$cfg['Servers'][$i]['extension'] = 'mysql';
|
||||||
$cfg['Servers'][$i]['compress'] = FALSE;
|
$cfg['Servers'][$i]['compress'] = FALSE;
|
||||||
$cfg['Servers'][$i]['controluser'] = '';
|
$cfg['Servers'][$i]['controluser'] = '';
|
||||||
$cfg['Servers'][$i]['controlpass'] = '';
|
$cfg['Servers'][$i]['controlpass'] = '';
|
||||||
@@ -154,6 +156,7 @@ $cfg['Servers'][$i]['host'] = '';
|
|||||||
$cfg['Servers'][$i]['port'] = '';
|
$cfg['Servers'][$i]['port'] = '';
|
||||||
$cfg['Servers'][$i]['socket'] = '';
|
$cfg['Servers'][$i]['socket'] = '';
|
||||||
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
||||||
|
$cfg['Servers'][$i]['extension'] = 'mysql';
|
||||||
$cfg['Servers'][$i]['compress'] = FALSE;
|
$cfg['Servers'][$i]['compress'] = FALSE;
|
||||||
$cfg['Servers'][$i]['controluser'] = '';
|
$cfg['Servers'][$i]['controluser'] = '';
|
||||||
$cfg['Servers'][$i]['controlpass'] = '';
|
$cfg['Servers'][$i]['controlpass'] = '';
|
||||||
|
@@ -120,13 +120,13 @@ if (isset($focus_querywindow) && $focus_querywindow == "true") {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Close MySql non-persistent connections
|
* Close database connections
|
||||||
*/
|
*/
|
||||||
if (isset($GLOBALS['dbh']) && $GLOBALS['dbh']) {
|
if (isset($GLOBALS['dbh']) && $GLOBALS['dbh']) {
|
||||||
@mysql_close($GLOBALS['dbh']);
|
@PMA_DBI_close($GLOBALS['dbh']);
|
||||||
}
|
}
|
||||||
if (isset($GLOBALS['userlink']) && $GLOBALS['userlink']) {
|
if (isset($GLOBALS['userlink']) && $GLOBALS['userlink']) {
|
||||||
@mysql_close($GLOBALS['userlink']);
|
@PMA_DBI_close($GLOBALS['userlink']);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@@ -735,4 +735,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -730,4 +730,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -724,4 +724,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -725,4 +725,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strServerStatus = 'Runtime Information'; //to translate
|
|||||||
|
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strServerStatus = 'Runtime Information'; //to translate
|
|||||||
|
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -749,4 +749,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -732,4 +732,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -732,4 +732,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -722,4 +722,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -726,4 +726,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -726,4 +726,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -748,4 +748,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -749,4 +749,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -748,4 +748,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -726,4 +726,5 @@ $strYes = 'Ano';
|
|||||||
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
||||||
$strZip = '"zazipov<6F>no"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
|
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strYes = 'Ano';
|
|||||||
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
|
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
|
||||||
$strZip = '"zazipováno"';
|
$strZip = '"zazipováno"';
|
||||||
|
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -726,4 +726,5 @@ $strYes = 'Ano';
|
|||||||
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
||||||
$strZip = '"zazipov<6F>no"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
|
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -722,4 +722,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -720,4 +720,5 @@ $strZip = '"zipped"';
|
|||||||
|
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Max: %s%s';
|
$strMaximumSize = 'Max: %s%s';
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strZip = '"zipped"';
|
|||||||
|
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Max: %s%s';
|
$strMaximumSize = 'Max: %s%s';
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -720,4 +720,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -745,4 +745,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -746,4 +746,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -722,4 +722,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -723,4 +723,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -749,4 +749,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strZip = 'Zip-komprimiert';
|
|||||||
|
|
||||||
$strTransformation_application_octetstream__download = 'Zeigt einen Link an, um die bin<69>ren Daten eines Feldes downloaden zu k<>nnen. Die erste Option benennt den Dateinamen. Die zweite Option kann einen Spaltennamen der Tabelle benennen, aus dem der Dateiname geholt werden soll. Sollte die zweite Option gesetzt sein ist es notwendig, die erste Option auf einen Leerstring zu setzen (\'\')';
|
$strTransformation_application_octetstream__download = 'Zeigt einen Link an, um die bin<69>ren Daten eines Feldes downloaden zu k<>nnen. Die erste Option benennt den Dateinamen. Die zweite Option kann einen Spaltennamen der Tabelle benennen, aus dem der Dateiname geholt werden soll. Sollte die zweite Option gesetzt sein ist es notwendig, die erste Option auf einen Leerstring zu setzen (\'\')';
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,5 @@ $strZip = 'Zip-komprimiert';
|
|||||||
|
|
||||||
$strTransformation_application_octetstream__download = 'Zeigt einen Link an, um die binären Daten eines Feldes downloaden zu können. Die erste Option benennt den Dateinamen. Die zweite Option kann einen Spaltennamen der Tabelle benennen, aus dem der Dateiname geholt werden soll. Sollte die zweite Option gesetzt sein ist es notwendig, die erste Option auf einen Leerstring zu setzen (\'\')';
|
$strTransformation_application_octetstream__download = 'Zeigt einen Link an, um die binären Daten eines Feldes downloaden zu können. Die erste Option benennt den Dateinamen. Die zweite Option kann einen Spaltennamen der Tabelle benennen, aus dem der Dateiname geholt werden soll. Sollte die zweite Option gesetzt sein ist es notwendig, die erste Option auf einen Leerstring zu setzen (\'\')';
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -730,4 +730,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -745,4 +745,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -753,4 +753,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -720,4 +720,5 @@ $strYes = 'Ya';
|
|||||||
$strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
$strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
||||||
$strZip = '"Dikompress dengan Zip"';
|
$strZip = '"Dikompress dengan Zip"';
|
||||||
|
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strYes = 'Ya';
|
|||||||
$strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
$strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
||||||
$strZip = '"Dikompress dengan Zip"';
|
$strZip = '"Dikompress dengan Zip"';
|
||||||
|
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -726,4 +726,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -725,4 +725,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strYes = 'Taip';
|
|||||||
$strZeroRemovesTheLimit = 'Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui).';
|
$strZeroRemovesTheLimit = 'Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui).';
|
||||||
$strZip = '"zip"';
|
$strZip = '"zip"';
|
||||||
|
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -720,4 +720,5 @@ $strYes = 'Taip';
|
|||||||
$strZeroRemovesTheLimit = 'Pastaba: n<>ra joki<6B> apribojim<69> jeigu reik<69>m<EFBFBD> nurodyta lygi 0 (nuliui).';
|
$strZeroRemovesTheLimit = 'Pastaba: n<>ra joki<6B> apribojim<69> jeigu reik<69>m<EFBFBD> nurodyta lygi 0 (nuliui).';
|
||||||
$strZip = '"zip"';
|
$strZip = '"zip"';
|
||||||
|
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -746,4 +746,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -726,4 +726,5 @@ $strZip = 'Komprimert (zip)';
|
|||||||
|
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strZip = 'Komprimert (zip)';
|
|||||||
|
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -751,4 +751,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -722,4 +722,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -740,4 +740,5 @@ $strViewDumpDatabases = 'View dump (schema) of databases';//to translate
|
|||||||
$strWildcard = 'wildcard'; //to translate
|
$strWildcard = 'wildcard'; //to translate
|
||||||
$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
|
$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
|
||||||
|
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strViewDumpDatabases = 'View dump (schema) of databases';//to translate
|
|||||||
$strWildcard = 'wildcard'; //to translate
|
$strWildcard = 'wildcard'; //to translate
|
||||||
$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
|
$strWindowNotFound = 'The target browser window could not be updated. Maybe you have closed the parent window or your browser is blocking cross-window updates of your security settings'; //to translate
|
||||||
|
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -722,4 +722,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -723,4 +723,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -729,4 +729,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -728,4 +728,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -727,4 +727,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -722,4 +722,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -723,4 +723,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -722,4 +722,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -723,4 +723,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -724,4 +724,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -723,4 +723,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -720,4 +720,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -720,4 +720,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Anm: Genom att s<>tta dessa alternativ till 0 (noll) tas begr<67>nsningarna bort.';
|
$strZeroRemovesTheLimit = 'Anm: Genom att s<>tta dessa alternativ till 0 (noll) tas begr<67>nsningarna bort.';
|
||||||
$strZip = '"zippad"';
|
$strZip = '"zippad"';
|
||||||
|
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -721,4 +721,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort.';
|
$strZeroRemovesTheLimit = 'Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort.';
|
||||||
$strZip = '"zippad"';
|
$strZip = '"zippad"';
|
||||||
|
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -733,4 +733,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
= 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strGeorgian = 'Georgian'; //to translate
|
|||||||
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
$strCzechSlovak = 'Czech-Slovak'; //to translate
|
||||||
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
$strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate
|
||||||
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
$strMaximumSize = 'Maximum size: %s%s'; //to translate
|
||||||
|
$strConnectionError = 'Cannot connect: invalid settings.'; //to translate
|
||||||
?>
|
?>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user