Show better error messages when checking numerical inputs (bug #1207402).
This commit is contained in:
@@ -17,6 +17,11 @@ $Source$
|
||||
* mult_submits.inc.php, libraries/display_tbl.lib.php: Don't forget
|
||||
browsing state while deleting multiple rows (bug #1232624).
|
||||
* tbl_row_action.php: Fix undefined variable warning.
|
||||
* db_details_structure.php, db_operations.php, header.inc.php,
|
||||
querywindow.php, tbl_indexes.php, tbl_properties.inc.php,
|
||||
tbl_properties_structure.php, lang/*, libraries/display_tbl.lib.php,
|
||||
libraries/functions.js, libraries/indexes.js: Show better error messages
|
||||
when checking numerical inputs (bug #1207402).
|
||||
|
||||
2005-07-10 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/display_tbl.lib.php: bug #1235473 display_tbl.lib.php,
|
||||
|
@@ -632,7 +632,7 @@ if ($num_tables > 0) {
|
||||
} // end if
|
||||
?>
|
||||
<!-- Create a new table -->
|
||||
<form method="post" action="tbl_create.php" onsubmit="return (emptyFormElements(this, 'table') && checkFormElementInRange(this, 'num_fields', 1))">
|
||||
<form method="post" action="tbl_create.php" onsubmit="return (emptyFormElements(this, 'table') && checkFormElementInRange(this, 'num_fields', '<?php echo str_replace('\'', '\\\'', $GLOBALS['strInvalidFieldCount']); ?>', 1))">
|
||||
<table border="0" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="tblHeaders" colspan="3" nowrap="nowrap"><?php
|
||||
|
@@ -138,7 +138,7 @@ if (PMA_MYSQL_INT_VERSION >= 40101) {
|
||||
|
||||
<table border="0" cellpadding="2" cellspacing="0">
|
||||
<!-- Create a new table -->
|
||||
<form method="post" action="tbl_create.php" onsubmit="return (emptyFormElements(this, 'table') && checkFormElementInRange(this, 'num_fields', 1))">
|
||||
<form method="post" action="tbl_create.php" onsubmit="return (emptyFormElements(this, 'table') && checkFormElementInRange(this, 'num_fields', '<?php echo str_replace('\'', '\\\'', $GLOBALS['strInvalidFieldCount']); ?>', 1))">
|
||||
<tr>
|
||||
<td class="tblHeaders" colspan="3" nowrap="nowrap"><?php
|
||||
echo PMA_generate_common_hidden_inputs($db);
|
||||
|
@@ -74,7 +74,6 @@ if (empty($GLOBALS['is_header_sent'])) {
|
||||
// js form validation stuff
|
||||
var errorMsg0 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
|
||||
var errorMsg1 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
|
||||
var errorMsg2 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
|
||||
var noDropDbMsg = '<?php echo((!$GLOBALS['cfg']['AllowUserDropDatabase']) ? str_replace('\'', '\\\'', $GLOBALS['strNoDropDatabases']) : ''); ?>';
|
||||
var confirmMsg = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDoYouReally']) : ''); ?>';
|
||||
var confirmMsgDropDB = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDropDatabaseStrongWarning']) : ''); ?>';
|
||||
@@ -112,7 +111,6 @@ if (empty($GLOBALS['is_header_sent'])) {
|
||||
// js index validation stuff
|
||||
var errorMsg0 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
|
||||
var errorMsg1 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
|
||||
var errorMsg2 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
|
||||
//-->
|
||||
</script>
|
||||
<script src="libraries/indexes.js" type="text/javascript" language="javascript"></script>
|
||||
|
@@ -228,7 +228,6 @@ $strNoTablesFound = 'Geen tabelle in databasis gevind nie.';
|
||||
$strNotNumber = 'Hierdie is nie \'n nommer nie';
|
||||
$strNotOK = 'nie OK';
|
||||
$strNotSet = '<b>%s</b> tabel nie gevind nie of nie gesetel in %s';
|
||||
$strNotValidNumber = ' is nie \'n geldige ry-nommer nie!';
|
||||
$strNoUsersFound = 'Geen gebruiker(s) gevind nie.';
|
||||
$strNoValidateSQL = 'Ignoreer SQL Validasie';
|
||||
$strNull = 'Null';
|
||||
@@ -823,4 +822,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -229,7 +229,6 @@ $strNoTablesFound = 'Geen tabelle in databasis gevind nie.';
|
||||
$strNotNumber = 'Hierdie is nie \'n nommer nie';
|
||||
$strNotOK = 'nie OK';
|
||||
$strNotSet = '<b>%s</b> tabel nie gevind nie of nie gesetel in %s';
|
||||
$strNotValidNumber = ' is nie \'n geldige ry-nommer nie!';
|
||||
$strNoUsersFound = 'Geen gebruiker(s) gevind nie.';
|
||||
$strNoValidateSQL = 'Ignoreer SQL Validasie';
|
||||
$strNull = 'Null';
|
||||
@@ -824,4 +823,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -406,7 +406,6 @@ $strNone = 'Asnj
|
||||
$strNotNumber = 'Ky nuk <20>sht<68> nj<6E> num<75>r!';
|
||||
$strNotOK = 'jo OK';
|
||||
$strNotSet = '<b>%s</b> tabela nuk u gjet ose nuk <20>sht<68> p<>rcaktuar tek %s';
|
||||
$strNotValidNumber = ' nuk <20>sht<68> nj<6E> rresht i vlefsh<73>m!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s korrispondon(jn<6A>) tek tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Gjithsej:</b> <i>%s</i> korrispondues(<28>)';
|
||||
@@ -813,4 +812,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -407,7 +407,6 @@ $strNone = 'Asnjë lloj';
|
||||
$strNotNumber = 'Ky nuk është një numër!';
|
||||
$strNotOK = 'jo OK';
|
||||
$strNotSet = '<b>%s</b> tabela nuk u gjet ose nuk është përcaktuar tek %s';
|
||||
$strNotValidNumber = ' nuk është një rresht i vlefshëm!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s korrispondon(jnë) tek tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Gjithsej:</b> <i>%s</i> korrispondues(ë)';
|
||||
@@ -814,4 +813,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -387,7 +387,6 @@ $strNone = 'لاشئ';
|
||||
$strNotNumber = 'هذا ليس رقم!';
|
||||
$strNotOK = 'ليس صالحاً';
|
||||
$strNotSet = 'الجدول <b>%s</b> غير موجود أو محدد في %s';
|
||||
$strNotValidNumber = ' هذا ليس عدد صف صحيح!';
|
||||
$strNull = 'خالي';
|
||||
$strNumSearchResultsInTable = '%s مطابقة في الجدول <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>المجموع:</b> <i>%s</i>مطابقة';
|
||||
@@ -817,4 +816,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -386,7 +386,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD>!';
|
||||
$strNotOK = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><> %s';
|
||||
$strNotValidNumber = ' <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>!';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -816,4 +815,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -327,7 +327,6 @@ $strNone = 'He
|
||||
$strNotNumber = 'Bu reqem deyildir!';
|
||||
$strNotOK = 'M<>veffeqiyyetsiz';
|
||||
$strNotSet = '<b>%s</b> cedveli %s i<>erisinde ya <b>tap<61>lmad<61></b> ya da qurulmam<61><6D>d<EFBFBD>r';
|
||||
$strNotValidNumber = ' e\'tibarl<72> setir n<>mresi deyildir!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s uy<75>unluq tap<61>ld<6C> (<i>%s</i> cedvelinde)';
|
||||
$strNumSearchResultsTotal = '<b>Cemi:</b> <i>%s</i> uy<75>unluq';
|
||||
@@ -812,4 +811,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -328,7 +328,6 @@ $strNone = 'Heç biri';
|
||||
$strNotNumber = 'Bu reqem deyildir!';
|
||||
$strNotOK = 'Müveffeqiyyetsiz';
|
||||
$strNotSet = '<b>%s</b> cedveli %s içerisinde ya <b>tapılmadı</b> ya da qurulmamışdır';
|
||||
$strNotValidNumber = ' e\'tibarlı setir nömresi deyildir!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s uyğunluq tapıldı (<i>%s</i> cedvelinde)';
|
||||
$strNumSearchResultsTotal = '<b>Cemi:</b> <i>%s</i> uyğunluq';
|
||||
@@ -813,4 +812,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -373,7 +373,6 @@ $strNone = 'Batez';
|
||||
$strNotNumber = 'Hau ez da zenbaki bat!';
|
||||
$strNotOK = 'Okerra';
|
||||
$strNotSet = '<b>%s</b> taula ez da aurkitu edo ez da definitu hemen: %s';
|
||||
$strNotValidNumber = ' ez da errenkada-zenbaki baliogarria!';
|
||||
$strNull = 'Nulua';
|
||||
$strNumSearchResultsInTable = '%s emaitza(k) <i>%s</i> taulan';
|
||||
$strNumSearchResultsTotal = '<b>Guztira:</b> <i>%s</i> emaitza(k)';
|
||||
@@ -815,4 +814,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -374,7 +374,6 @@ $strNone = 'Batez';
|
||||
$strNotNumber = 'Hau ez da zenbaki bat!';
|
||||
$strNotOK = 'Okerra';
|
||||
$strNotSet = '<b>%s</b> taula ez da aurkitu edo ez da definitu hemen: %s';
|
||||
$strNotValidNumber = ' ez da errenkada-zenbaki baliogarria!';
|
||||
$strNull = 'Nulua';
|
||||
$strNumSearchResultsInTable = '%s emaitza(k) <i>%s</i> taulan';
|
||||
$strNumSearchResultsTotal = '<b>Guztira:</b> <i>%s</i> emaitza(k)';
|
||||
@@ -816,4 +815,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -475,7 +475,6 @@ $strNone = 'Няма';
|
||||
$strNotNumber = 'Гэта ня лік!';
|
||||
$strNotOK = 'не OK';
|
||||
$strNotSet = 'Табліца <b>%s</b> ня знойдзеная або ня вызначаная ў %s';
|
||||
$strNotValidNumber = ' не зьяўляецца дапушчальным нумарам радку!';
|
||||
$strNull = 'Нуль';
|
||||
$strNumSearchResultsInTable = '%s супадзеньняў у табліцы <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Агулам:</b> <i>%s</i> супадзеньняў';
|
||||
@@ -815,4 +814,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -474,7 +474,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>!';
|
||||
$strNotOK = '<27><> OK';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s';
|
||||
$strNotValidNumber = ' <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -814,4 +813,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -473,7 +473,6 @@ $strNone = 'Niama';
|
||||
$strNotNumber = 'Heta nia lik!';
|
||||
$strNotOK = 'nie OK';
|
||||
$strNotSet = 'Tablica <b>%s</b> nia znojdzienaja abo nia vyznačanaja ŭ %s';
|
||||
$strNotValidNumber = ' nie źjaŭlajecca dapuščalnym numaram radku!';
|
||||
$strNull = 'Nul';
|
||||
$strNumSearchResultsInTable = '%s supadzieńniaŭ u tablicy <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Ahułam:</b> <i>%s</i> supadzieńniaŭ';
|
||||
@@ -813,4 +812,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -366,7 +366,6 @@ $strNone = 'nema';
|
||||
$strNotNumber = 'Ovo nije broj!';
|
||||
$strNotOK = 'nije u redu';
|
||||
$strNotSet = '<b>%s</b> tabela nije pronađena ili nije postavljena u %s';
|
||||
$strNotValidNumber = 'nije odgovarajući broj kolone!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s pogodaka unutar tabele <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Ukupno:</b> <i>%s</i> pogodaka';
|
||||
@@ -822,4 +821,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -365,7 +365,6 @@ $strNone = 'nema';
|
||||
$strNotNumber = 'Ovo nije broj!';
|
||||
$strNotOK = 'nije u redu';
|
||||
$strNotSet = '<b>%s</b> tabela nije prona<6E>ena ili nije postavljena u %s';
|
||||
$strNotValidNumber = 'nije odgovaraju<6A>i broj kolone!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s pogodaka unutar tabele <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Ukupno:</b> <i>%s</i> pogodaka';
|
||||
@@ -821,4 +820,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -430,7 +430,6 @@ $strNone = 'Nenhum';
|
||||
$strNotNumber = 'Isto n<>o <20> um n<>mero!';
|
||||
$strNotOK = 'n<>o OK';
|
||||
$strNotSet = '<b>%s</b> tabela n<>o encontra ou n<>o configurada em %s';
|
||||
$strNotValidNumber = ' n<>o <20> um n<>mero de registro valido!';
|
||||
$strNull = 'Nulo';
|
||||
$strNumSearchResultsInTable = '%s resultado(s) dentro da tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> resultado(s)';
|
||||
@@ -830,4 +829,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -431,7 +431,6 @@ $strNone = 'Nenhum';
|
||||
$strNotNumber = 'Isto não é um número!';
|
||||
$strNotOK = 'não OK';
|
||||
$strNotSet = '<b>%s</b> tabela não encontra ou não configurada em %s';
|
||||
$strNotValidNumber = ' não é um número de registro valido!';
|
||||
$strNull = 'Nulo';
|
||||
$strNumSearchResultsInTable = '%s resultado(s) dentro da tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> resultado(s)';
|
||||
@@ -831,4 +830,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -412,7 +412,6 @@ $strNoTablesFound = '
|
||||
$strNotNumber = '<27><><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNotOK = '<27><> <20> OK';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s';
|
||||
$strNotValidNumber = ' <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>!';
|
||||
$strNoUsersFound = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28>).';
|
||||
$strNoValidateSQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Validate SQL';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -833,4 +832,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -413,7 +413,6 @@ $strNoTablesFound = 'В базата от данни няма таблици.';
|
||||
$strNotNumber = 'Това не е число!';
|
||||
$strNotOK = 'не е OK';
|
||||
$strNotSet = 'таблица <b>%s</b> не е намерена или не е установена в %s';
|
||||
$strNotValidNumber = ' не е валиден номер на ред!';
|
||||
$strNoUsersFound = 'Няма потребител(и).';
|
||||
$strNoValidateSQL = 'Пропусни Validate SQL';
|
||||
$strNull = 'Празно';
|
||||
@@ -834,4 +833,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -412,7 +412,6 @@ $strNoTablesFound = '
|
||||
$strNotNumber = '<27><><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNotOK = '<27><> <20> OK';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s';
|
||||
$strNotValidNumber = ' <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>!';
|
||||
$strNoUsersFound = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28>).';
|
||||
$strNoValidateSQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Validate SQL';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -833,4 +832,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -459,7 +459,6 @@ $strNone = 'Res';
|
||||
$strNotNumber = 'Aquest valor no <20>s un n<>mero!';
|
||||
$strNotOK = 'Incorrecte';
|
||||
$strNotSet = 'Taula <b>%s</b> no trobada o no definida a %s';
|
||||
$strNotValidNumber = ' no es un n<>mero de columna v<>lid!';
|
||||
$strNull = 'Nul';
|
||||
$strNumSearchResultsInTable = '%s resultat(s) a la taula <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> resultat(s)';
|
||||
@@ -794,4 +793,9 @@ $strYes = 'Si';
|
||||
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
|
||||
$strZip = '"comprimit amb zip"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -460,7 +460,6 @@ $strNone = 'Res';
|
||||
$strNotNumber = 'Aquest valor no és un número!';
|
||||
$strNotOK = 'Incorrecte';
|
||||
$strNotSet = 'Taula <b>%s</b> no trobada o no definida a %s';
|
||||
$strNotValidNumber = ' no es un número de columna vàlid!';
|
||||
$strNull = 'Nul';
|
||||
$strNumSearchResultsInTable = '%s resultat(s) a la taula <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> resultat(s)';
|
||||
@@ -795,4 +794,9 @@ $strYes = 'Si';
|
||||
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
|
||||
$strZip = '"comprimit amb zip"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -430,7 +430,6 @@ $strNone = '
|
||||
$strNotNumber = '<27>ⲻ<EFBFBD><E2B2BB>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD>֣<EFBFBD>';
|
||||
$strNotOK = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNotSet = '<b>%s</b> <20><><EFBFBD>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>δ<EFBFBD><CEB4> %s <20>趨';
|
||||
$strNotValidNumber = ' <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ч<EFBFBD><D0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s <20><>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD> - <20>ڱ<EFBFBD> <i>%s</i> <20><>';
|
||||
$strNumSearchResultsTotal = '<b><3E>ܼƣ<DCBC></b> <i>%s</i> <20><>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>';
|
||||
@@ -830,4 +829,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -431,7 +431,6 @@ $strNone = '无';
|
||||
$strNotNumber = '这不是一个数字!';
|
||||
$strNotOK = '不好';
|
||||
$strNotSet = '<b>%s</b> 表找不到或还未在 %s 设定';
|
||||
$strNotValidNumber = ' 不是有效的行数!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s 个匹配项 - 于表 <i>%s</i> 中';
|
||||
$strNumSearchResultsTotal = '<b>总计:</b> <i>%s</i> 个匹配项';
|
||||
@@ -831,4 +830,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -477,7 +477,6 @@ $strNone = '
|
||||
$strNotNumber = '<27>o<EFBFBD><6F><EFBFBD>O<EFBFBD>@<40>ӼƦr!';
|
||||
$strNotOK = '<27><><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD>w';
|
||||
$strNotSet = '<b>%s</b> <20><><EFBFBD>ƪ<EFBFBD><C6AA>䤣<EFBFBD><E4A4A3><EFBFBD><EFBFBD><EFBFBD>٥<EFBFBD><D9A5>b %s <20>]<5D>w';
|
||||
$strNotValidNumber = '<27><><EFBFBD>O<EFBFBD><4F><EFBFBD>Ī<EFBFBD><C4AA>C<EFBFBD><43>!';
|
||||
$strNull = 'Null'; //should expressed in English
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD>ƲŦX - <20><><EFBFBD><EFBFBD><EFBFBD>ƪ<EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E>`<60>p:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD>ƲŦX';
|
||||
@@ -814,4 +813,9 @@ $strYes = '
|
||||
$strZeroRemovesTheLimit = '<27><>: <20>]<5D>w<EFBFBD>o<EFBFBD>ǿﶵ<C7BF><EFB6B5> 0 (<28>s) <20>i<EFBFBD>Ѱ<EFBFBD><D1B0><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strZip = '"zipped"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -478,7 +478,6 @@ $strNone = '不適用';
|
||||
$strNotNumber = '這不是一個數字!';
|
||||
$strNotOK = '未能確定';
|
||||
$strNotSet = '<b>%s</b> 資料表找不到或還未在 %s 設定';
|
||||
$strNotValidNumber = '不是有效的列數!';
|
||||
$strNull = 'Null'; //should expressed in English
|
||||
$strNumSearchResultsInTable = '%s 項資料符合 - 於資料表 <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>總計:</b> <i>%s</i> 項資料符合';
|
||||
@@ -815,4 +814,9 @@ $strYes = ' 是 ';
|
||||
$strZeroRemovesTheLimit = '註: 設定這些選項為 0 (零) 可解除限制.';
|
||||
$strZip = '"zipped"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -191,7 +191,6 @@ $strNoQuery = 'Nema SQL upita!';
|
||||
$strNoRights = 'Nemate dovoljno prava za ovo podru<72>je!';
|
||||
$strNoTablesFound = 'Tablica nije prona<6E>ena u bazi.';
|
||||
$strNotNumber = 'To nije broj!';
|
||||
$strNotValidNumber = ' nije odgovaraju<6A>i broj redaka!';
|
||||
$strNoUsersFound = 'Korisnik(ci) nije prona<6E>en.';
|
||||
$strNull = 'Null';
|
||||
|
||||
@@ -836,4 +835,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -192,7 +192,6 @@ $strNoQuery = 'Nema SQL upita!';
|
||||
$strNoRights = 'Nemate dovoljno prava za ovo područje!';
|
||||
$strNoTablesFound = 'Tablica nije pronađena u bazi.';
|
||||
$strNotNumber = 'To nije broj!';
|
||||
$strNotValidNumber = ' nije odgovarajući broj redaka!';
|
||||
$strNoUsersFound = 'Korisnik(ci) nije pronađen.';
|
||||
$strNull = 'Null';
|
||||
|
||||
@@ -837,4 +836,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -191,7 +191,6 @@ $strNoQuery = 'Nema SQL upita!';
|
||||
$strNoRights = 'Nemate dovoljno prava za ovo podru<72>je!';
|
||||
$strNoTablesFound = 'Tablica nije prona<6E>ena u bazi.';
|
||||
$strNotNumber = 'To nije broj!';
|
||||
$strNotValidNumber = ' nije odgovaraju<6A>i broj redaka!';
|
||||
$strNoUsersFound = 'Korisnik(ci) nije prona<6E>en.';
|
||||
$strNull = 'Null';
|
||||
|
||||
@@ -836,4 +835,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -359,6 +359,11 @@ $strInstructions = 'Instrukce';
|
||||
$strInternalNotNecessary = '* Intern<72> relace nen<65> pot<6F>ebn<62>, pokud ji<6A> relace existuje v InnoDB.';
|
||||
$strInternalRelations = 'Intern<72> relace';
|
||||
$strInUse = 'pr<70>v<EFBFBD> se pou<6F><75>v<EFBFBD>';
|
||||
$strInvalidColumnCount = 'Po<50>et sloupc<70> mus<75> b<>t v<>t<EFBFBD><74> ne<6E> nula.';
|
||||
$strInvalidFieldAddCount = 'Mus<75>te p<>idat alespo<70> jeden sloupec.';
|
||||
$strInvalidFieldCount = 'Tabulka mus<75> m<>t alespo<70> jeden sloupec.';
|
||||
$strInvalidRowCount = 'Mus<75>te p<>idat alespo<70> jeden <20><>dek.';
|
||||
$strInvalidRowNumber = '%d nen<65> platn<74> <20><>slo <20><>dku.';
|
||||
|
||||
$strJapanese = 'Japon<6F>tina';
|
||||
$strJumpToDB = 'Na datab<61>zi "%s".';
|
||||
@@ -475,7 +480,6 @@ $strNoThemeSupport = 'Nen
|
||||
$strNotNumber = 'Nebylo zad<61>no <20><>slo!';
|
||||
$strNotOK = 'nen<65> v po<70><6F>dku';
|
||||
$strNotSet = '<b>%s</b> tabulka nenalezena nebo nen<65> nastavena v %s';
|
||||
$strNotValidNumber = ' nen<65> platn<74> <20><>slo <20><>dku!';
|
||||
$strNoUsersFound = '<27><>dn<64> u<>ivatel nenalezen.';
|
||||
$strNoValidateSQL = 'Bez kontroly SQL';
|
||||
$strNull = 'Nulov<6F>';
|
||||
|
@@ -360,6 +360,11 @@ $strInstructions = 'Instrukce';
|
||||
$strInternalNotNecessary = '* Interní relace není potřebná, pokud již relace existuje v InnoDB.';
|
||||
$strInternalRelations = 'Interní relace';
|
||||
$strInUse = 'právě se používá';
|
||||
$strInvalidColumnCount = 'Počet sloupců musí být větší než nula.';
|
||||
$strInvalidFieldAddCount = 'Musíte přidat alespoň jeden sloupec.';
|
||||
$strInvalidFieldCount = 'Tabulka musí mít alespoň jeden sloupec.';
|
||||
$strInvalidRowCount = 'Musíte přidat alespoň jeden řádek.';
|
||||
$strInvalidRowNumber = '%d není platné číslo řádku.';
|
||||
|
||||
$strJapanese = 'Japonština';
|
||||
$strJumpToDB = 'Na databázi "%s".';
|
||||
@@ -476,7 +481,6 @@ $strNoThemeSupport = 'Není podporována změna tématu, zkontrolujte nastavení
|
||||
$strNotNumber = 'Nebylo zadáno číslo!';
|
||||
$strNotOK = 'není v pořádku';
|
||||
$strNotSet = '<b>%s</b> tabulka nenalezena nebo není nastavena v %s';
|
||||
$strNotValidNumber = ' není platné číslo řádku!';
|
||||
$strNoUsersFound = 'Žádný uživatel nenalezen.';
|
||||
$strNoValidateSQL = 'Bez kontroly SQL';
|
||||
$strNull = 'Nulový';
|
||||
|
@@ -359,6 +359,11 @@ $strInstructions = 'Instrukce';
|
||||
$strInternalNotNecessary = '* Intern<72> relace nen<65> pot<6F>ebn<62>, pokud ji<6A> relace existuje v InnoDB.';
|
||||
$strInternalRelations = 'Intern<72> relace';
|
||||
$strInUse = 'pr<70>v<EFBFBD> se pou<6F><75>v<EFBFBD>';
|
||||
$strInvalidColumnCount = 'Po<50>et sloupc<70> mus<75> b<>t v<>t<EFBFBD><74> ne<6E> nula.';
|
||||
$strInvalidFieldAddCount = 'Mus<75>te p<>idat alespo<70> jeden sloupec.';
|
||||
$strInvalidFieldCount = 'Tabulka mus<75> m<>t alespo<70> jeden sloupec.';
|
||||
$strInvalidRowCount = 'Mus<75>te p<>idat alespo<70> jeden <20><>dek.';
|
||||
$strInvalidRowNumber = '%d nen<65> platn<74> <20><>slo <20><>dku.';
|
||||
|
||||
$strJapanese = 'Japon<6F>tina';
|
||||
$strJumpToDB = 'Na datab<61>zi "%s".';
|
||||
@@ -475,7 +480,6 @@ $strNoThemeSupport = 'Nen
|
||||
$strNotNumber = 'Nebylo zad<61>no <20><>slo!';
|
||||
$strNotOK = 'nen<65> v po<70><6F>dku';
|
||||
$strNotSet = '<b>%s</b> tabulka nenalezena nebo nen<65> nastavena v %s';
|
||||
$strNotValidNumber = ' nen<65> platn<74> <20><>slo <20><>dku!';
|
||||
$strNoUsersFound = '<27><>dn<64> u<>ivatel nenalezen.';
|
||||
$strNoValidateSQL = 'Bez kontroly SQL';
|
||||
$strNull = 'Nulov<6F>';
|
||||
|
@@ -472,7 +472,6 @@ $strNone = 'Intet';
|
||||
$strNotNumber = 'Dette er ikke et tal!';
|
||||
$strNotOK = 'ikke OK';
|
||||
$strNotSet = 'Tabel <b>%s</b> findes ikke eller er ikke sat i %s';
|
||||
$strNotValidNumber = ' er ikke et gyldigt r<>kkenummer!';
|
||||
$strNull = 'Nulv<6C>rdi';
|
||||
$strNumSearchResultsInTable = '%s hit(s) i tabel <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> hit(s)';
|
||||
@@ -810,4 +809,9 @@ $strYes = 'Ja';
|
||||
$strZeroRemovesTheLimit = 'Bem<65>rk: Indstilling af disse v<>rdier til 0 (nul) fjerner begr<67>nsningen.';
|
||||
$strZip = '"zippet"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -473,7 +473,6 @@ $strNone = 'Intet';
|
||||
$strNotNumber = 'Dette er ikke et tal!';
|
||||
$strNotOK = 'ikke OK';
|
||||
$strNotSet = 'Tabel <b>%s</b> findes ikke eller er ikke sat i %s';
|
||||
$strNotValidNumber = ' er ikke et gyldigt rækkenummer!';
|
||||
$strNull = 'Nulværdi';
|
||||
$strNumSearchResultsInTable = '%s hit(s) i tabel <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> hit(s)';
|
||||
@@ -811,4 +810,9 @@ $strYes = 'Ja';
|
||||
$strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen.';
|
||||
$strZip = '"zippet"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -428,7 +428,6 @@ $strNone = 'Geen';
|
||||
$strNotNumber = 'Dit is geen cijfer!';
|
||||
$strNotOK = 'Niet Goed';
|
||||
$strNotSet = '<b>%s</b> tabel niet gevonden of niet ingesteld in %s';
|
||||
$strNotValidNumber = ' geen geldig rij nummer!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s overeenkomst(en) in de tabel<i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totaal:</b> <i>%s</i> overeenkomst(en)';
|
||||
@@ -812,4 +811,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -428,7 +428,6 @@ $strNone = 'Geen';
|
||||
$strNotNumber = 'Dit is geen cijfer!';
|
||||
$strNotOK = 'Niet Goed';
|
||||
$strNotSet = '<b>%s</b> tabel niet gevonden of niet ingesteld in %s';
|
||||
$strNotValidNumber = ' geen geldig rij nummer!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s overeenkomst(en) in de tabel<i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totaal:</b> <i>%s</i> overeenkomst(en)';
|
||||
@@ -812,4 +811,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -429,7 +429,6 @@ $strNone = 'Geen';
|
||||
$strNotNumber = 'Dit is geen cijfer!';
|
||||
$strNotOK = 'Niet Goed';
|
||||
$strNotSet = '<b>%s</b> tabel niet gevonden of niet ingesteld in %s';
|
||||
$strNotValidNumber = ' geen geldig rij nummer!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s overeenkomst(en) in de tabel<i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totaal:</b> <i>%s</i> overeenkomst(en)';
|
||||
@@ -813,4 +812,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -353,6 +353,11 @@ $strInstructions = 'Instructions';
|
||||
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.';
|
||||
$strInternalRelations = 'Internal relations';
|
||||
$strInUse = 'in use';
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.';
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.';
|
||||
$strInvalidFieldCount = 'Table must have at least one field.';
|
||||
$strInvalidRowCount = 'You have to add at least one row.';
|
||||
$strInvalidRowNumber = '%d is not valid row number.';
|
||||
|
||||
$strJapanese = 'Japanese';
|
||||
$strJumpToDB = 'Jump to database "%s".';
|
||||
@@ -469,7 +474,6 @@ $strNoThemeSupport = 'No themes support; please check your configuration and/or
|
||||
$strNotNumber = 'This is not a number!';
|
||||
$strNotOK = 'not OK';
|
||||
$strNotSet = '<b>%s</b> table not found or not set in %s';
|
||||
$strNotValidNumber = ' is not a valid row number!';
|
||||
$strNoUsersFound = 'No user(s) found.';
|
||||
$strNoValidateSQL = 'Skip Validate SQL';
|
||||
$strNull = 'Null';
|
||||
|
@@ -353,6 +353,11 @@ $strInstructions = 'Instructions';
|
||||
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.';
|
||||
$strInternalRelations = 'Internal relations';
|
||||
$strInUse = 'in use';
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.';
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.';
|
||||
$strInvalidFieldCount = 'Table must have at least one field.';
|
||||
$strInvalidRowCount = 'You have to add at least one row.';
|
||||
$strInvalidRowNumber = '%d is not valid row number.';
|
||||
|
||||
$strJapanese = 'Japanese';
|
||||
$strJumpToDB = 'Jump to database "%s".';
|
||||
@@ -469,7 +474,6 @@ $strNoThemeSupport = 'No themes support; please check your configuration and/or
|
||||
$strNotNumber = 'This is not a number!';
|
||||
$strNotOK = 'not OK';
|
||||
$strNotSet = '<b>%s</b> table not found or not set in %s';
|
||||
$strNotValidNumber = ' is not a valid row number!';
|
||||
$strNoUsersFound = 'No user(s) found.';
|
||||
$strNoValidateSQL = 'Skip Validate SQL';
|
||||
$strNull = 'Null';
|
||||
|
@@ -354,6 +354,11 @@ $strInstructions = 'Instructions';
|
||||
$strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.';
|
||||
$strInternalRelations = 'Internal relations';
|
||||
$strInUse = 'in use';
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.';
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.';
|
||||
$strInvalidFieldCount = 'Table must have at least one field.';
|
||||
$strInvalidRowCount = 'You have to add at least one row.';
|
||||
$strInvalidRowNumber = '%d is not valid row number.';
|
||||
|
||||
$strJapanese = 'Japanese';
|
||||
$strJumpToDB = 'Jump to database "%s".';
|
||||
@@ -470,7 +475,6 @@ $strNoThemeSupport = 'No themes support; please check your configuration and/or
|
||||
$strNotNumber = 'This is not a number!';
|
||||
$strNotOK = 'not OK';
|
||||
$strNotSet = '<b>%s</b> table not found or not set in %s';
|
||||
$strNotValidNumber = ' is not a valid row number!';
|
||||
$strNoUsersFound = 'No user(s) found.';
|
||||
$strNoValidateSQL = 'Skip Validate SQL';
|
||||
$strNull = 'Null';
|
||||
|
@@ -443,7 +443,6 @@ $strNone = 'Pole';
|
||||
$strNotNumber = 'See pole number!';
|
||||
$strNotOK = 'Ei ole korras';
|
||||
$strNotSet = '<b>%s</b> tabelit ei leitud v<>i ei eksisteeri %s';
|
||||
$strNotValidNumber = ' pole korrektne reanumber!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s vaste(t) tabelis <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Kokku:</b> <i>%s</i> vaste(t)';
|
||||
@@ -820,4 +819,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -444,7 +444,6 @@ $strNone = 'Pole';
|
||||
$strNotNumber = 'See pole number!';
|
||||
$strNotOK = 'Ei ole korras';
|
||||
$strNotSet = '<b>%s</b> tabelit ei leitud või ei eksisteeri %s';
|
||||
$strNotValidNumber = ' pole korrektne reanumber!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s vaste(t) tabelis <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Kokku:</b> <i>%s</i> vaste(t)';
|
||||
@@ -821,4 +820,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -484,7 +484,6 @@ $strNone = 'Ei mit
|
||||
$strNotNumber = 'T<>m<EFBFBD> ei ole numero!';
|
||||
$strNotOK = 'Ei kunnossa';
|
||||
$strNotSet = '<b>%s</b>-taulukkoa ei l<>ytynyt tai sit<69> ei ole m<><6D>ritelty %s-tiedostossa';
|
||||
$strNotValidNumber = ' ei ole hyv<79>ksytt<74>v<EFBFBD> rivin numero!';
|
||||
$strNull = 'Tyhj<68>';
|
||||
$strNumSearchResultsInTable = '%s hakutulosta taulukossa <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Yhteens<6E>:</b> <i>%s</i> hakutulosta';
|
||||
@@ -821,4 +820,9 @@ $strZeroRemovesTheLimit = 'Huom: N
|
||||
$strZip = '"zip-pakattu"';
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -484,7 +484,6 @@ $strNone = 'Ei mit
|
||||
$strNotNumber = 'T<>m<EFBFBD> ei ole numero!';
|
||||
$strNotOK = 'Ei kunnossa';
|
||||
$strNotSet = '<b>%s</b>-taulukkoa ei l<>ytynyt tai sit<69> ei ole m<><6D>ritelty %s-tiedostossa';
|
||||
$strNotValidNumber = ' ei ole hyv<79>ksytt<74>v<EFBFBD> rivin numero!';
|
||||
$strNull = 'Tyhj<68>';
|
||||
$strNumSearchResultsInTable = '%s hakutulosta taulukossa <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Yhteens<6E>:</b> <i>%s</i> hakutulosta';
|
||||
@@ -821,4 +820,9 @@ $strZeroRemovesTheLimit = 'Huom: N
|
||||
$strZip = '"zip-pakattu"';
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -485,7 +485,6 @@ $strNone = 'Ei mitään';
|
||||
$strNotNumber = 'Tämä ei ole numero!';
|
||||
$strNotOK = 'Ei kunnossa';
|
||||
$strNotSet = '<b>%s</b>-taulukkoa ei löytynyt tai sitä ei ole määritelty %s-tiedostossa';
|
||||
$strNotValidNumber = ' ei ole hyväksyttävä rivin numero!';
|
||||
$strNull = 'Tyhjä';
|
||||
$strNumSearchResultsInTable = '%s hakutulosta taulukossa <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Yhteensä:</b> <i>%s</i> hakutulosta';
|
||||
@@ -822,4 +821,9 @@ $strZeroRemovesTheLimit = 'Huom: Näiden valintojen asettaminen nollaksi (0) poi
|
||||
$strZip = '"zip-pakattu"';
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -472,7 +472,6 @@ $strNone = 'aucune';
|
||||
$strNotNumber = 'Ce n\'est pas un nombre !';
|
||||
$strNotOK = 'en erreur';
|
||||
$strNotSet = 'La table <b>%s</b> est absente ou non d<>finie dans %s';
|
||||
$strNotValidNumber = ' n\'est pas un nombre valide !';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s occurence(s) dans la table <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total :</b> <i>%s</i> occurence(s)';
|
||||
@@ -810,4 +809,9 @@ $strYes = 'Oui';
|
||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
||||
$strZip = '"zipp<70>"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -472,7 +472,6 @@ $strNone = 'aucune';
|
||||
$strNotNumber = 'Ce n\'est pas un nombre !';
|
||||
$strNotOK = 'en erreur';
|
||||
$strNotSet = 'La table <b>%s</b> est absente ou non d<>finie dans %s';
|
||||
$strNotValidNumber = ' n\'est pas un nombre valide !';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s occurence(s) dans la table <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total :</b> <i>%s</i> occurence(s)';
|
||||
@@ -810,4 +809,9 @@ $strYes = 'Oui';
|
||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
||||
$strZip = '"zipp<70>"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -473,7 +473,6 @@ $strNone = 'aucune';
|
||||
$strNotNumber = 'Ce n\'est pas un nombre !';
|
||||
$strNotOK = 'en erreur';
|
||||
$strNotSet = 'La table <b>%s</b> est absente ou non définie dans %s';
|
||||
$strNotValidNumber = ' n\'est pas un nombre valide !';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s occurence(s) dans la table <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total :</b> <i>%s</i> occurence(s)';
|
||||
@@ -811,4 +810,9 @@ $strYes = 'Oui';
|
||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
||||
$strZip = '"zippé"';
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -473,7 +473,6 @@ $strNone = 'Nengun';
|
||||
$strNotNumber = 'Non <20> un n<>mero!';
|
||||
$strNotOK = 'non conforme';
|
||||
$strNotSet = 'Non se atopou a tabela <b>%s</b>ou non se indicou en %s';
|
||||
$strNotValidNumber = ' non <20> un n<>mero v<>lido para unha fileira!';
|
||||
$strNull = 'Nulo';
|
||||
$strNumSearchResultsInTable = '%s ocorrencias(s) dentro da tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> ocorrencia(s)';
|
||||
@@ -813,4 +812,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -474,7 +474,6 @@ $strNone = 'Nengun';
|
||||
$strNotNumber = 'Non é un número!';
|
||||
$strNotOK = 'non conforme';
|
||||
$strNotSet = 'Non se atopou a tabela <b>%s</b>ou non se indicou en %s';
|
||||
$strNotValidNumber = ' non é un número válido para unha fileira!';
|
||||
$strNull = 'Nulo';
|
||||
$strNumSearchResultsInTable = '%s ocorrencias(s) dentro da tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> ocorrencia(s)';
|
||||
@@ -814,4 +813,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -214,7 +214,6 @@ $strNoRights = 'თქვენ არაგაქვთ ამის უფლ
|
||||
$strNoTablesFound = 'მონაცემთა ბაზა არ შეიცავს ცხრილებს.';
|
||||
$strNotNumber = 'ეს რიცხვი არაა!';
|
||||
$strNotSet = '<b>%s</b> ცხრილი ვერ ვიპვე ან უწესრიგობაა %s-ში';
|
||||
$strNotValidNumber = ' სტრიქონების მიუწვდომელი რაოდენობა!';
|
||||
$strNoUsersFound = 'მომხმარებელი არ არის ნაპოვნი.';
|
||||
$strNull = 'ნული';
|
||||
$strNumSearchResultsInTable = '%s შესაბამისობა ცხრილის შიგნით<i>%s</i>';
|
||||
@@ -837,4 +836,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -477,7 +477,6 @@ $strNoThemeSupport = 'Die Unterst
|
||||
$strNotNumber = 'Das ist keine Zahl!';
|
||||
$strNotOK = 'fehlerhaft';
|
||||
$strNotSet = 'Die Tabelle <b>%s</b> wurde entweder nicht gefunden oder in der Kofigurationsdatei %s nicht gesetzt.';
|
||||
$strNotValidNumber = ' ist keine g<>ltige Zeilennummer!';
|
||||
$strNoUsersFound = 'Es wurden keine Benutzer gefunden.';
|
||||
$strNoValidateSQL = 'SQL-Validierung umgehen';
|
||||
$strNull = 'Null';
|
||||
@@ -820,4 +819,9 @@ $strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to tran
|
||||
$strRoutines = 'Routines'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -477,7 +477,6 @@ $strNoThemeSupport = 'Die Unterst
|
||||
$strNotNumber = 'Das ist keine Zahl!';
|
||||
$strNotOK = 'fehlerhaft';
|
||||
$strNotSet = 'Die Tabelle <b>%s</b> wurde entweder nicht gefunden oder in der Kofigurationsdatei %s nicht gesetzt.';
|
||||
$strNotValidNumber = ' ist keine g<>ltige Zeilennummer!';
|
||||
$strNoUsersFound = 'Es wurden keine Benutzer gefunden.';
|
||||
$strNoValidateSQL = 'SQL-Validierung umgehen';
|
||||
$strNull = 'Null';
|
||||
@@ -820,4 +819,9 @@ $strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to tran
|
||||
$strRoutines = 'Routines'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -478,7 +478,6 @@ $strNoThemeSupport = 'Die Unterstützung für Oberflächendesigns ist deaktivier
|
||||
$strNotNumber = 'Das ist keine Zahl!';
|
||||
$strNotOK = 'fehlerhaft';
|
||||
$strNotSet = 'Die Tabelle <b>%s</b> wurde entweder nicht gefunden oder in der Kofigurationsdatei %s nicht gesetzt.';
|
||||
$strNotValidNumber = ' ist keine gültige Zeilennummer!';
|
||||
$strNoUsersFound = 'Es wurden keine Benutzer gefunden.';
|
||||
$strNoValidateSQL = 'SQL-Validierung umgehen';
|
||||
$strNull = 'Null';
|
||||
@@ -821,4 +820,9 @@ $strPrivDescShowView = 'Allows performing SHOW CREATE VIEW queries.'; //to tran
|
||||
$strRoutines = 'Routines'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -359,7 +359,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNotOK = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotSet = '<27> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> %s';
|
||||
$strNotValidNumber = ' <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -817,4 +816,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -360,7 +360,6 @@ $strNone = 'Κανένα';
|
||||
$strNotNumber = 'Αυτό δεν είναι αριθμός!';
|
||||
$strNotOK = 'ΛΑΘΟΣ';
|
||||
$strNotSet = 'Ο πίνακας <b>%s</b> δεν βρέθηκε ή δεν ορίστηκε στη %s';
|
||||
$strNotValidNumber = ' δεν είναι υπαρκτός αριθμός Εγγραφής!';
|
||||
$strNull = 'Κενό';
|
||||
$strNumSearchResultsInTable = '%s αποτελέσματα στον πίνακα <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Σύνολο:</b> <i>%s</i> αποτελέσματα';
|
||||
@@ -818,4 +817,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -239,7 +239,6 @@ $strNoUsersFound = '
|
||||
$strNone = 'NULL';
|
||||
$strNotNumber = '<27><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> !';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20>- %s';
|
||||
$strNotValidNumber = ' <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> !';
|
||||
$strNull = 'NULL';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -833,4 +832,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -240,7 +240,6 @@ $strNoUsersFound = 'אף משתמש/משתמשים נמצאו.';
|
||||
$strNone = 'NULL';
|
||||
$strNotNumber = 'זהו לא מספר !';
|
||||
$strNotSet = 'הטבלה <b>%s</b> לא נמצאה ב- %s';
|
||||
$strNotValidNumber = ' הוא לא מספר שורה בר תוקף !';
|
||||
$strNull = 'NULL';
|
||||
$strNumSearchResultsInTable = '%s תוצאה/תוצאות בתוך הטבלה <i>%s</i>';
|
||||
$strNumTables = 'טבלאות';
|
||||
@@ -834,4 +833,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -500,7 +500,6 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
|
||||
$strNone = 'None'; //to translate
|
||||
$strNotOK = 'not OK'; //to translate
|
||||
$strNotSet = '<b>%s</b> table not found or not set in %s'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
$strNull = 'Null'; //to translate
|
||||
$strNumSearchResultsInTable = '%s match(es) inside table <i>%s</i>'; //to translate
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> match(es)'; //to translate
|
||||
@@ -841,4 +840,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -428,7 +428,6 @@ $strNone = 'Nincs';
|
||||
$strNotNumber = 'Ez nem egy sz<73>m!';
|
||||
$strNotOK = 'Nincs rendben';
|
||||
$strNotSet = '<b>%s</b> t<>bl<62>t nem tal<61>ltam vagy nincs benne: %s';
|
||||
$strNotValidNumber = ' nem <20>rv<72>nyes sorsz<73>m!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s tal<61>lat <i>%s</i> t<>bl<62>ban';
|
||||
$strNumSearchResultsTotal = '<b><3E>sszes:</b> <i>%s</i> tal<61>lat';
|
||||
@@ -830,4 +829,9 @@ $strTransformation_application_octetstream__hex = 'Displays hexadecimal represen
|
||||
|
||||
$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -429,7 +429,6 @@ $strNone = 'Nincs';
|
||||
$strNotNumber = 'Ez nem egy szám!';
|
||||
$strNotOK = 'Nincs rendben';
|
||||
$strNotSet = '<b>%s</b> táblát nem találtam vagy nincs benne: %s';
|
||||
$strNotValidNumber = ' nem érvényes sorszám!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s találat <i>%s</i> táblában';
|
||||
$strNumSearchResultsTotal = '<b>Összes:</b> <i>%s</i> találat';
|
||||
@@ -831,4 +830,9 @@ $strTransformation_application_octetstream__hex = 'Displays hexadecimal represen
|
||||
|
||||
$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -443,7 +443,6 @@ $strNone = 'tanpa';
|
||||
$strNotNumber = 'Ini bukan angka!';
|
||||
$strNotOK = 'tidak oke';
|
||||
$strNotSet = '<b>%s</b> tabel tidak ditemukan atau tidak diset di %s';
|
||||
$strNotValidNumber = ' bukan nomor baris yang berlaku!';
|
||||
$strNull = 'Kosong';
|
||||
$strNumSearchResultsInTable = '%s catatan dalam tabel <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Jumlah:</b> <i>%s</i> rekord';
|
||||
@@ -820,4 +819,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -444,7 +444,6 @@ $strNone = 'tanpa';
|
||||
$strNotNumber = 'Ini bukan angka!';
|
||||
$strNotOK = 'tidak oke';
|
||||
$strNotSet = '<b>%s</b> tabel tidak ditemukan atau tidak diset di %s';
|
||||
$strNotValidNumber = ' bukan nomor baris yang berlaku!';
|
||||
$strNull = 'Kosong';
|
||||
$strNumSearchResultsInTable = '%s catatan dalam tabel <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Jumlah:</b> <i>%s</i> rekord';
|
||||
@@ -821,4 +820,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -472,7 +472,6 @@ $strNone = 'Nessuno';
|
||||
$strNotNumber = 'Questo non <20> un numero!';
|
||||
$strNotOK = 'non OK';
|
||||
$strNotSet = '<b>%s</b> tabella non trovata o non settata in %s';
|
||||
$strNotValidNumber = ' non <20> una riga valida!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s corrisponde/ono nella tabella <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totale:</b> <i>%s</i> corrispondenza/e';
|
||||
@@ -816,4 +815,9 @@ $strBufferWriteWaits = 'Write waits'; //to translate
|
||||
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -472,7 +472,6 @@ $strNone = 'Nessuno';
|
||||
$strNotNumber = 'Questo non <20> un numero!';
|
||||
$strNotOK = 'non OK';
|
||||
$strNotSet = '<b>%s</b> tabella non trovata o non settata in %s';
|
||||
$strNotValidNumber = ' non <20> una riga valida!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s corrisponde/ono nella tabella <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totale:</b> <i>%s</i> corrispondenza/e';
|
||||
@@ -816,4 +815,9 @@ $strBufferWriteWaits = 'Write waits'; //to translate
|
||||
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -473,7 +473,6 @@ $strNone = 'Nessuno';
|
||||
$strNotNumber = 'Questo non è un numero!';
|
||||
$strNotOK = 'non OK';
|
||||
$strNotSet = '<b>%s</b> tabella non trovata o non settata in %s';
|
||||
$strNotValidNumber = ' non è una riga valida!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s corrisponde/ono nella tabella <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totale:</b> <i>%s</i> corrispondenza/e';
|
||||
@@ -817,4 +816,9 @@ $strBufferWriteWaits = 'Write waits'; //to translate
|
||||
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -475,7 +475,6 @@ $strNone = '̵
|
||||
$strNotNumber = '<27><><EFBFBD><EFBFBD><EFBFBD>Ͽ<EFBFBD><CFBF>ͤǤϤ<C7A4><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotOK = 'OK <20>ǤϤ<C7A4><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotSet = '<b>%s</b> <20>ơ<EFBFBD><C6A1>֥뤬<D6A5><EBA4AC><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ʤ<EFBFBD><CAA4><EFBFBD><EFBFBD><EFBFBD>%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotValidNumber = ' <20>ϹԤ<CFB9><D4A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><D6B9>ǤϤ<C7A4><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD> ';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(NULL)';
|
||||
$strNumSearchResultsInTable = '%s <20>郎 <i>%s</i> <20>ơ<EFBFBD><C6A1>֥<EFBFBD><D6A5>Ǹ<EFBFBD><C7B8>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD>Ĥ<EFBFBD><C4A4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -828,4 +827,9 @@ $strMyISAMMaxExtraSortFileSizeDesc = 'If the temporary file used for fast MyISAM
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -475,7 +475,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD><EFBFBD><EFBFBD>͐<EFBFBD><CD90>l<EFBFBD>ł͂<C582><CD82><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD><EFBFBD>B';
|
||||
$strNotOK = 'OK <20>ł͂<C582><CD82><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD><EFBFBD>B';
|
||||
$strNotSet = '<b>%s</b> <20>e<EFBFBD>[<5B>u<EFBFBD><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><C282><EFBFBD><EFBFBD>Ȃ<EFBFBD><C882><EFBFBD><EFBFBD>A%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD><EFBFBD>B';
|
||||
$strNotValidNumber = ' <20>͍s<CD8D>̐<EFBFBD><CC90><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԍ<EFBFBD><D48D>ł͂<C582><CD82><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD> ';
|
||||
$strNull = '<27><><EFBFBD>̒l(NULL)';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD> <i>%s</i> <20>e<EFBFBD>[<5B>u<EFBFBD><75><EFBFBD>Ō<EFBFBD><C58C><EFBFBD><C282><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD><EFBFBD>B';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><C282><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD><EFBFBD>B';
|
||||
@@ -828,4 +827,9 @@ $strMyISAMMaxExtraSortFileSizeDesc = 'If the temporary file used for fast MyISAM
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -475,7 +475,6 @@ $strNone = '無し';
|
||||
$strNotNumber = 'これは数値ではありません。';
|
||||
$strNotOK = 'OK ではありません。';
|
||||
$strNotSet = '<b>%s</b> テーブルが見つからないか、%s がありません。';
|
||||
$strNotValidNumber = ' は行の正しい番号ではありません ';
|
||||
$strNull = '空の値(NULL)';
|
||||
$strNumSearchResultsInTable = '%s 件が <i>%s</i> テーブルで見つかりました。';
|
||||
$strNumSearchResultsTotal = '<b>件数:</b> <i>%s</i> が見つかりました。';
|
||||
@@ -828,4 +827,9 @@ $strMyISAMMaxExtraSortFileSizeDesc = 'If the temporary file used for fast MyISAM
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -241,7 +241,6 @@ $strNoTablesFound = '
|
||||
$strNoUsersFound = '<27><><EFBFBD><EFBFBD><EFBFBD>ڰ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>.';
|
||||
$strNone = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNotNumber = '<27><> <20><><EFBFBD><EFBFBD>(<28><>ȣ)<29><> <20>ƴմϴ<D5B4>!';
|
||||
$strNotValidNumber = '<27><> <20>ùٸ<C3B9> <20><> <20><>ȣ<EFBFBD><C8A3> <20>ƴմϴ<D5B4>!';
|
||||
$strNumTables = '<27><><EFBFBD>̺<EFBFBD> <20><>';
|
||||
|
||||
$strOperations = '<27><><EFBFBD>̺<EFBFBD> <20>۾<EFBFBD>';
|
||||
@@ -831,4 +830,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -242,7 +242,6 @@ $strNoTablesFound = '데이터베이스에 테이블이 없습니다.';
|
||||
$strNoUsersFound = '사용자가 없습니다.';
|
||||
$strNone = '없음';
|
||||
$strNotNumber = '은 숫자(번호)가 아닙니다!';
|
||||
$strNotValidNumber = '은 올바른 열 번호가 아닙니다!';
|
||||
$strNumTables = '테이블 수';
|
||||
|
||||
$strOperations = '테이블 작업';
|
||||
@@ -832,4 +831,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -427,7 +427,6 @@ $strNone = 'Nav';
|
||||
$strNotNumber = 'Tas nav numurs!';
|
||||
$strNotOK = 'nav OK';
|
||||
$strNotSet = 'Tabula <b>%s</b> nav atrasta vai nav atzīmeta iekš %s';
|
||||
$strNotValidNumber = ' nav derīgs lauku skaits!';
|
||||
$strNull = 'Nulle';
|
||||
$strNumSearchResultsInTable = '%s rezultāti tabulā <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Kopumā:</b> <i>%s</i> rezultāti';
|
||||
@@ -818,4 +817,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -426,7 +426,6 @@ $strNone = 'Nav';
|
||||
$strNotNumber = 'Tas nav numurs!';
|
||||
$strNotOK = 'nav OK';
|
||||
$strNotSet = 'Tabula <b>%s</b> nav atrasta vai nav atz<74>meta iek<65> %s';
|
||||
$strNotValidNumber = ' nav der<65>gs lauku skaits!';
|
||||
$strNull = 'Nulle';
|
||||
$strNumSearchResultsInTable = '%s rezult<6C>ti tabul<75> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Kopum<75>:</b> <i>%s</i> rezult<6C>ti';
|
||||
@@ -817,4 +816,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -451,7 +451,6 @@ $strNone = 'Nėra';
|
||||
$strNotNumber = 'Įveskite skaičių!';
|
||||
$strNotOK = 'Negerai';
|
||||
$strNotSet = 'Lentelė <b>%s</b> nerasta arba nenurodyta %s byloje';
|
||||
$strNotValidNumber = ' netinkamas eilutės numeris!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s atitikmuo(enys) lentelėje <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Viso:</b> <i>%s</i> atitikmuo(enys)';
|
||||
@@ -821,4 +820,9 @@ $strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -450,7 +450,6 @@ $strNone = 'N
|
||||
$strNotNumber = '<27>veskite skai<61>i<EFBFBD>!';
|
||||
$strNotOK = 'Negerai';
|
||||
$strNotSet = 'Lentel<65> <b>%s</b> nerasta arba nenurodyta %s byloje';
|
||||
$strNotValidNumber = ' netinkamas eilut<75>s numeris!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s atitikmuo(enys) lentel<65>je <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Viso:</b> <i>%s</i> atitikmuo(enys)';
|
||||
@@ -820,4 +819,9 @@ $strPrivDescExecute5 = 'Allows executing stored routines.'; //to translate
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -260,7 +260,6 @@ $strNone = 'Tiada';
|
||||
$strNotNumber = 'Ini adalah bukan nombor!!';
|
||||
$strNotOK = 'tidak OK';
|
||||
$strNotSet = 'Jadual <b>%s</b> tidak dijumpai atau ditetapkan pada %s';
|
||||
$strNotValidNumber = ' adalah bukan baris yang sah!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s padanan di dalam jadual <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Jumlah</b>: <i>%s</i> padanan';
|
||||
@@ -832,4 +831,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -261,7 +261,6 @@ $strNone = 'Tiada';
|
||||
$strNotNumber = 'Ini adalah bukan nombor!!';
|
||||
$strNotOK = 'tidak OK';
|
||||
$strNotSet = 'Jadual <b>%s</b> tidak dijumpai atau ditetapkan pada %s';
|
||||
$strNotValidNumber = ' adalah bukan baris yang sah!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s padanan di dalam jadual <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Jumlah</b>: <i>%s</i> padanan';
|
||||
@@ -833,4 +832,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -478,7 +478,6 @@ $strNone = 'Үгүй';
|
||||
$strNotNumber = 'Энэ тоо биш!';
|
||||
$strNotOK = 'Бэлэн биш';
|
||||
$strNotSet = '<b>%s</b> хүснэгт олдсонгүй эсвэл %s-д сонгогдоогүй';
|
||||
$strNotValidNumber = ' зөв мөрийн тоо биш!';
|
||||
$strNull = 'Хоосон';
|
||||
$strNumSearchResultsInTable = '%s олдоц(ууд) хүснэгт <i>%s</i>-д';
|
||||
$strNumSearchResultsTotal = '<b>Нийт:</b> <i>%s</i> олдоц(ууд)';
|
||||
@@ -816,4 +815,9 @@ $strZeroRemovesTheLimit = 'Тэмдэглэл: Тохируулгын сонго
|
||||
$strZip = 'zip-ээр шахах';
|
||||
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -475,7 +475,6 @@ $strNone = 'Ingen';
|
||||
$strNotNumber = 'Dette er ikke ett tall!';
|
||||
$strNotOK = 'ikke OK';
|
||||
$strNotSet = '<b>%s</b> tabellen ble ikke funnet eller ikke konfigurert i %s';
|
||||
$strNotValidNumber = ' er ikke et gyldig radnummer!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s treff i tabell <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totalt:</b> <i>%s</i> treff';
|
||||
@@ -812,4 +811,9 @@ $strYes = 'Ja';
|
||||
$strZeroRemovesTheLimit = 'Merk: Ved <20> sette disse til 0 (null) fjernes begrensningen.';
|
||||
$strZip = 'Komprimert (zip)';
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -476,7 +476,6 @@ $strNone = 'Ingen';
|
||||
$strNotNumber = 'Dette er ikke ett tall!';
|
||||
$strNotOK = 'ikke OK';
|
||||
$strNotSet = '<b>%s</b> tabellen ble ikke funnet eller ikke konfigurert i %s';
|
||||
$strNotValidNumber = ' er ikke et gyldig radnummer!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s treff i tabell <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Totalt:</b> <i>%s</i> treff';
|
||||
@@ -813,4 +812,9 @@ $strYes = 'Ja';
|
||||
$strZeroRemovesTheLimit = 'Merk: Ved å sette disse til 0 (null) fjernes begrensningen.';
|
||||
$strZip = 'Komprimert (zip)';
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -214,7 +214,6 @@ $strNoTablesFound = 'در اين پايگاه داده هيچ جدولي وجو
|
||||
$strNotNumber = 'اين يك عدد نيست!';
|
||||
$strNotOK = 'not OK';
|
||||
$strNotSet = 'جدول <b>%s</b> وجود ندارد و يا در %s تنظيم نشدهاست';
|
||||
$strNotValidNumber = ' يك شماره سطر صحيح نيست!';
|
||||
$strNoUsersFound = 'هيچ كاربري وچود ندارد.';
|
||||
$strNo = 'خير';
|
||||
$strNull = 'خالي';
|
||||
@@ -838,4 +837,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -213,7 +213,6 @@ $strNoTablesFound = '
|
||||
$strNotNumber = '<27><><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>!';
|
||||
$strNotOK = 'not OK';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD> <b>%s</b> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><> <20><> %s <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotValidNumber = ' <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!';
|
||||
$strNoUsersFound = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strNo = '<27><><EFBFBD>';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
@@ -837,4 +836,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -467,7 +467,6 @@ $strNone = 'Brak';
|
||||
$strNotNumber = 'To nie jest liczba!';
|
||||
$strNotOK = 'b<><62>d';
|
||||
$strNotSet = 'Tabela <b>%s</b> nie zosta<74>a znaleziona lub nie jest ustawiona w %s';
|
||||
$strNotValidNumber = ' nie jest poprawnym numerem rekordu!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s trafie<69> wewn<77>trz tabeli <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>W sumie:</b> <i>%s</i> trafie<69>';
|
||||
@@ -808,4 +807,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -468,7 +468,6 @@ $strNone = 'Brak';
|
||||
$strNotNumber = 'To nie jest liczba!';
|
||||
$strNotOK = 'błąd';
|
||||
$strNotSet = 'Tabela <b>%s</b> nie została znaleziona lub nie jest ustawiona w %s';
|
||||
$strNotValidNumber = ' nie jest poprawnym numerem rekordu!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s trafień wewnątrz tabeli <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>W sumie:</b> <i>%s</i> trafień';
|
||||
@@ -809,4 +808,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -467,7 +467,6 @@ $strNone = 'Brak';
|
||||
$strNotNumber = 'To nie jest liczba!';
|
||||
$strNotOK = 'b<><62>d';
|
||||
$strNotSet = 'Tabela <b>%s</b> nie zosta<74>a znaleziona lub nie jest ustawiona w %s';
|
||||
$strNotValidNumber = ' nie jest poprawnym numerem rekordu!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s trafie<69> wewn<77>trz tabeli <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>W sumie:</b> <i>%s</i> trafie<69>';
|
||||
@@ -808,4 +807,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -372,7 +372,6 @@ $strNone = 'Nenhum';
|
||||
$strNotNumber = 'Isto n<>o <20> um n<>mero!';
|
||||
$strNotOK = 'n<>o est<73> OK';
|
||||
$strNotSet = 'A Tabela <b>%s</b> n<>o foi encontrada ou n<>o foi definida em %s';
|
||||
$strNotValidNumber = ' n<>o <20> um n<>mero de registo v<>lido!';
|
||||
$strNull = 'Nulo';
|
||||
$strNumSearchResultsInTable = '%s resultado(s) na tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> resultado(s)';
|
||||
@@ -828,4 +827,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -372,7 +372,6 @@ $strNone = 'Nenhum';
|
||||
$strNotNumber = 'Isto n<>o <20> um n<>mero!';
|
||||
$strNotOK = 'n<>o est<73> OK';
|
||||
$strNotSet = 'A Tabela <b>%s</b> n<>o foi encontrada ou n<>o foi definida em %s';
|
||||
$strNotValidNumber = ' n<>o <20> um n<>mero de registo v<>lido!';
|
||||
$strNull = 'Nulo';
|
||||
$strNumSearchResultsInTable = '%s resultado(s) na tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> resultado(s)';
|
||||
@@ -828,4 +827,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -373,7 +373,6 @@ $strNone = 'Nenhum';
|
||||
$strNotNumber = 'Isto não é um número!';
|
||||
$strNotOK = 'não está OK';
|
||||
$strNotSet = 'A Tabela <b>%s</b> não foi encontrada ou não foi definida em %s';
|
||||
$strNotValidNumber = ' não é um número de registo válido!';
|
||||
$strNull = 'Nulo';
|
||||
$strNumSearchResultsInTable = '%s resultado(s) na tabela <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> resultado(s)';
|
||||
@@ -829,4 +828,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -443,7 +443,6 @@ $strNone = 'Nici unul(a)';
|
||||
$strNotNumber = 'Acesta nu este un numar!';
|
||||
$strNotOK = 'Nu este bine';
|
||||
$strNotSet = '<b>%s</b> tabela nu a fost gasita sau nu este setat in %s';
|
||||
$strNotValidNumber = 'Nu este un numar valid de linie!';
|
||||
$strNull = 'Nul';
|
||||
$strNumSearchResultsInTable = '%s rezultat(e) in interiorul tabelei <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> rezultat(e)';
|
||||
@@ -813,4 +812,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -444,7 +444,6 @@ $strNone = 'Nici unul(a)';
|
||||
$strNotNumber = 'Acesta nu este un numar!';
|
||||
$strNotOK = 'Nu este bine';
|
||||
$strNotSet = '<b>%s</b> tabela nu a fost gasita sau nu este setat in %s';
|
||||
$strNotValidNumber = 'Nu este un numar valid de linie!';
|
||||
$strNull = 'Nul';
|
||||
$strNumSearchResultsInTable = '%s rezultat(e) in interiorul tabelei <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> rezultat(e)';
|
||||
@@ -814,4 +813,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -380,7 +380,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD> <20><> <20><>!';
|
||||
$strNotOK = '<27><> <20><>⮢<EFBFBD>';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotValidNumber = ' <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⨬<EFBFBD><E2A8AC> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⢮ <20>冷<EFBFBD>!';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>) <20> ⠡<><E2A0A1><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E>⮣<EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>)';
|
||||
@@ -816,4 +815,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -409,7 +409,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNotOK = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotValidNumber = ' <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>) <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>)';
|
||||
@@ -817,4 +816,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -410,7 +410,6 @@ $strNone = 'Нет';
|
||||
$strNotNumber = 'Это не число!';
|
||||
$strNotOK = 'Не готово';
|
||||
$strNotSet = 'Таблица <b>%s</b> не найдена';
|
||||
$strNotValidNumber = ' недопустимое количество рядов!';
|
||||
$strNull = 'Ноль';
|
||||
$strNumSearchResultsInTable = '%s записи(ей) в таблице <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Итого:</b> <i>%s</i> записи(ей)';
|
||||
@@ -818,4 +817,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -409,7 +409,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNotOK = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNotValidNumber = ' <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>) <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>)';
|
||||
@@ -817,4 +816,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -474,7 +474,6 @@ $strNone = 'нема';
|
||||
$strNotNumber = 'Ово није број!';
|
||||
$strNotOK = 'није у реду';
|
||||
$strNotSet = '<b>%s</b> табела није пронађена или није постављена у %s';
|
||||
$strNotValidNumber = 'није одговарајући број колоне!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s погодака унутар табеле <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Укупно:</b> <i>%s</i> погодака';
|
||||
@@ -815,4 +814,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate
|
||||
?>
|
||||
|
@@ -473,7 +473,6 @@ $strNone = '
|
||||
$strNotNumber = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!';
|
||||
$strNotOK = '<27><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD>';
|
||||
$strNotSet = '<b>%s</b> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s';
|
||||
$strNotValidNumber = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strNull = 'Null';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -814,4 +813,9 @@ $strGeneratePassword = 'Generate Password'; //to translate
|
||||
$strGenerate = 'Generate'; //to translate
|
||||
$strCopy = 'Copy'; //to translate
|
||||
$strTransformation_application_octetstream__hex = 'Displays hexadecimal representation of data.'; //to translate
|
||||
$strInvalidFieldCount = 'Table must have at least one field.'; //to translate
|
||||
$strInvalidRowNumber = '%d is not valid row number.'; //to translate
|
||||
$strInvalidRowCount = 'You have to add at least one row.'; //to translate
|
||||
$strInvalidColumnCount = 'Column count has to be larger than zero.'; //to translate
|
||||
$strInvalidFieldAddCount = 'You have to add at least one field.'; //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