Merge branch 'master' of github.com:phpmyadmin/phpmyadmin

This commit is contained in:
Madhura Jayaratne 2012-04-28 12:51:30 +05:30
commit 314d53e56d
81 changed files with 2123 additions and 1029 deletions

View File

@ -34,7 +34,7 @@ phpMyAdmin - ChangeLog
+ rfe #3518852 [edit] edit blob but not other binary, new option $cfg['ProtectBinary'] = 'noblob'
+ Hide language select box if there are no locales installed
+ Removed some directives: verbose_check, SuggestDBName, LightTabs,
VerboseMultiSubmit
VerboseMultiSubmit, ReplaceHelpImg
- Patch #3500882 Fixing checkbox behaviour while editing identical rows
+ rfe #3441722 [interface] Display description of datatypes
+ rfe #3517835 [structure] Move columns easily
@ -42,6 +42,7 @@ VerboseMultiSubmit
3.5.2.0 (not yet released)
- bug #3521416 [interface] JS error when editing index
- bug #3521313 [core] Call to undefined function __()
3.5.1.0 (not yet released)
- bug #3510784 [edit] Limit clause ignored when sort order is remembered

View File

@ -2286,10 +2286,6 @@ setfacl -d -m "g:www-data:rwx" tmp
<a href="#faq6_27">format string expansion</a>.
</dd>
<dt id="cfg_ReplaceHelpImg">$cfg['ReplaceHelpImg'] boolean</dt>
<dd>Shows a help button instead of the &quot;Documentation&quot; message.
</dd>
<dt id="cfg_ThemePath">$cfg['ThemePath'] string</dt>
<dd>If theme manager is active, use this as the path of the subdirectory
containing all the themes.</dd>

View File

@ -637,20 +637,14 @@ $(function() {
/**
* Reload fields table
*/
function reloadFieldForm() {
$.post($("#fieldsForm").attr('action'), $("#fieldsForm").serialize()+"&ajax_request=true", function(form_data) {
$("#fieldsForm").remove();
$("#addColumns").remove();
var $temp_div = $("<div id='temp_div'><div>").append(form_data);
if ($("#sqlqueryresults").length != 0) {
$temp_div.find("#fieldsForm").insertAfter("#sqlqueryresults");
} else {
$temp_div.find("#fieldsForm").insertAfter("#floating_menubar");
}
$temp_div.find("#addColumns").insertBefore("iframe.IE_hack");
$("#fieldsForm").replaceWith($temp_div.find("#fieldsForm"));
$("#addColumns").replaceWith($temp_div.find("#addColumns"));
$('#move_columns_dialog ul').replaceWith($temp_div.find("#move_columns_dialog ul"));
$("#moveColumns").removeClass("move-active");
/*Call the function to display the more options in table*/
/* Call the function to display the more options in table */
$table_clone = false;
$("div.replace_in_more").hide(); // fix "more" dropdown
moreOptsMenuResize();

View File

@ -304,13 +304,13 @@ class PMA_Types_MySQL extends PMA_Types
case 'SERIAL':
return __('An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE');
case 'DATE':
return sprintf(__('A date, supported range is "%1$s" to "%2$s"'), '1000-01-01', '9999-12-31');
return sprintf(__('A date, supported range is %1$s to %2$s'), '1000-01-01', '9999-12-31');
case 'DATETIME':
return sprintf(__('A date and time combination, supported range is "%1$s" to "%2$s"'), '1000-01-01 00:00:00', '9999-12-31 23:59:59');
return sprintf(__('A date and time combination, supported range is %1$s to %2$s'), '1000-01-01 00:00:00', '9999-12-31 23:59:59');
case 'TIMESTAMP':
return __('A timestamp, range is "1970-01-01 00:00:01" UTC to "2038-01-09 03:14:07" UTC, stored as the number of seconds since the epoch ("1970-01-01 00:00:00" UTC)');
return __('A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)');
case 'TIME':
return sprintf(__('A time, range is "%1$s" to "%2$s"'), '-838:59:59', '838:59:59');
return sprintf(__('A time, range is %1$s to %2$s'), '-838:59:59', '838:59:59');
case 'YEAR':
return __("A year in four-digit (4, default) or two-digit (2) format, the allowable values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000");
case 'CHAR':
@ -713,9 +713,9 @@ class PMA_Types_Drizzle extends PMA_Types
case 'UUID':
return __('Stores a Universally Unique Identifier (UUID)');
case 'DATE':
return sprintf(__('A date, supported range is "%1$s" to "%2$s"'), '0001-01-01', '9999-12-31');
return sprintf(__('A date, supported range is \"%1$s\" to \"%2$s\"'), '0001-01-01', '9999-12-31');
case 'DATETIME':
return sprintf(__('A date and time combination, supported range is "%1$s" to "%2$s"'), '0001-01-01 00:00:0', '9999-12-31 23:59:59');
return sprintf(__('A date and time combination, supported range is \"%1$s\" to \"%2$s\"'), '0001-01-01 00:00:0', '9999-12-31 23:59:59');
case 'TIMESTAMP':
return __("A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' UTC; TIMESTAMP(6) can store microseconds");
case 'TIME':

View File

@ -387,8 +387,7 @@ function PMA_formatSql($parsed_sql, $unparsed_sql = '')
/**
* Displays a link to the documentation either as icon or
* as text depending on ReplaceHelpImg
* Displays a link to the documentation as an icon
*
* @param string $link documentation link
* @param string $target optional link target
@ -399,14 +398,9 @@ function PMA_formatSql($parsed_sql, $unparsed_sql = '')
*/
function PMA_showDocLink($link, $target = 'documentation')
{
$linkstart = '<a href="' . $link . '" target="' . $target . '">';
if ($GLOBALS['cfg']['ReplaceHelpImg']) {
return $linkstart
. PMA_getImage('b_help.png', __('Documentation'))
. '</a>';
} else {
return '['. $linkstart . __('Documentation') . '</a>]';
}
return '<a href="' . $link . '" target="' . $target . '">'
. PMA_getImage('b_help.png', __('Documentation'))
. '</a>';
} // end of the 'PMA_showDocLink()' function
/**
@ -3435,17 +3429,17 @@ function PMA_getSupportedDatatypes($html = false, $selected = '')
foreach ($value as $subvalue) {
if ($subvalue == $selected) {
$retval .= sprintf(
"<option selected='selected' title='%s'>%s</option>",
'<option selected="selected" title="%s">%s</option>',
$GLOBALS['PMA_Types']->getTypeDescription($subvalue),
$subvalue
);
} else if ($subvalue === '-') {
$retval .= "<option disabled='disabled'>";
$retval .= '<option disabled="disabled">';
$retval .= $subvalue;
$retval .= "</option>";
$retval .= '</option>';
} else {
$retval .= sprintf(
"<option title='%s'>%s</option>",
'<option title="%s">%s</option>',
$GLOBALS['PMA_Types']->getTypeDescription($subvalue),
$subvalue
);
@ -3455,13 +3449,13 @@ function PMA_getSupportedDatatypes($html = false, $selected = '')
} else {
if ($selected == $value) {
$retval .= sprintf(
"<option selected='selected' title='%s'>%s</option>",
'<option selected="selected" title="%s">%s</option>',
$GLOBALS['PMA_Types']->getTypeDescription($value),
$value
);
} else {
$retval .= sprintf(
"<option title='%s'>%s</option>",
'<option title="%s">%s</option>',
$GLOBALS['PMA_Types']->getTypeDescription($value),
$value
);

View File

@ -2525,13 +2525,6 @@ $cfg['TitleServer'] = '@HTTP_HOST@ / @VSERVER@ | @PHPMYADMIN@';
*/
$cfg['TitleDefault'] = '@HTTP_HOST@ | @PHPMYADMIN@';
/**
* show help button instead of Documentation text (true|false)?
*
* @global boolean $cfg['ReplaceHelpImg']
*/
$cfg['ReplaceHelpImg'] = true;
/*******************************************************************************
* theme manager

View File

@ -356,8 +356,6 @@ $strConfigRememberSorting_desc = __('When browsing tables, the sorting of each t
$strConfigRememberSorting_name = __('Remember table\'s sorting');
$strConfigRepeatCells_desc = __('Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature');
$strConfigRepeatCells_name = __('Repeat headers');
$strConfigReplaceHelpImg_desc = __('Show help button instead of Documentation text');
$strConfigReplaceHelpImg_name = __('Show help button');
$strConfigRestoreDefaultValue = __('Restore default value');
$strConfigSaveCellsAtOnce_name = __('Save all edited cells at once');
$strConfigSaveDir_desc = __('Directory where exports can be saved on server');

View File

@ -127,7 +127,6 @@ $forms['Features']['Other_core_settings'] = array(
'VersionCheck',
'NaturalOrder',
'InitialSlidersState',
'ReplaceHelpImg',
'MaxDbList',
'MaxTableList',
'ShowHint',

View File

@ -27,7 +27,6 @@ $forms['Features']['General'] = array(
'NaturalOrder',
'InitialSlidersState',
'LoginCookieValidity',
'ReplaceHelpImg',
'Servers/1/only_db', // saves to Server/only_db
'Servers/1/hide_db', // saves to Server/hide_db
'SkipLockedTables',

View File

@ -84,10 +84,7 @@ $content_cells = array();
$header_cells[] = __('Name');
$header_cells[] = __('Type')
. ($GLOBALS['cfg']['ReplaceHelpImg']
? PMA_showMySQLDocu('SQL-Syntax', 'data-types')
: '<br /><span style="font-weight: normal">' . PMA_showMySQLDocu('SQL-Syntax', 'data-types')
. '</span>');
. PMA_showMySQLDocu('SQL-Syntax', 'data-types');
$header_cells[] = __('Length/Values') . PMA_showHint(__('If column type is "enum" or "set", please enter the values using this format: \'a\',\'b\',\'c\'...<br />If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, precede it with a backslash (for example \'\\\\xyz\' or \'a\\\'b\').'));
$header_cells[] = __('Default') . PMA_showHint(__('For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'));
$header_cells[] = __('Collation');

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: afrikaans <af@li.org>\n"
@ -2849,27 +2849,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Bediener weergawe"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Bediener weergawe"
#: libraries/Types.class.php:315
msgid ""
@ -3020,12 +3019,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2011-09-24 21:48+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10@windowslive.com>\n"
"Language-Team: arabic <ar@li.org>\n"
@ -2747,27 +2747,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "انشئ إصدار %s لـ %s.s%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2919,12 +2920,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:55+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: azerbaijani <az@li.org>\n"
@ -2882,27 +2882,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Server versiyası"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Server versiyası"
#: libraries/Types.class.php:315
msgid ""
@ -3053,12 +3052,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be@li.org>\n"
@ -2945,27 +2945,27 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Стварыць сувязь"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Памылка перайменаваньня табліцы %1$s у %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -3117,12 +3117,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@ -2959,27 +2959,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -3131,12 +3132,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-01-07 17:19+0200\n"
"Last-Translator: stoyan <stoyanster@gmail.com>\n"
"Language-Team: bulgarian <bg@li.org>\n"
@ -2732,27 +2732,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Създаване на версия %s от %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Грешка при преименуване на таблица %1$s в %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2904,12 +2905,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: bangla <bn@li.org>\n"
@ -2815,27 +2815,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Server version"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Server version"
#: libraries/Types.class.php:315
msgid ""
@ -2987,12 +2986,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-14 16:33+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2753,27 +2753,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Other core settings"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Arventennoù pouezus all"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Fazi en ur adenvel %1$s e %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2925,12 +2926,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs@li.org>\n"
@ -2875,27 +2875,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Verzija servera"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Verzija servera"
#: libraries/Types.class.php:315
msgid ""
@ -3046,12 +3045,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-28 14:16+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: catalan <ca@li.org>\n"
@ -2717,27 +2717,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crea versió %s de %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Error reanomenant la taula %1$s a %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2889,12 +2890,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-25 14:28+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: czech <cs@li.org>\n"
@ -2702,27 +2702,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "vytvořil %2$s dne %1$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Chyba při přejmenování tabulky %1$s na %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2874,12 +2875,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: <ardavies@tiscali.co.uk>\n"
"Language-Team: Welsh <cy@li.org>\n"
@ -2868,27 +2868,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crëwch fersiwn %s o %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Gwall wrth ailenwi tabl %1$s i %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -3038,12 +3039,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-29 16:39+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: danish <da@li.org>\n"
@ -2773,27 +2773,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Opret version %s af %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Fejl ved omdøbning af tabel %1$s til %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2945,12 +2946,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-18 18:32+0200\n"
"Last-Translator: Jan Dittberner <jandd@debian.org>\n"
"Language-Team: none\n"
@ -2742,27 +2742,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %s by %s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "geschrieben am %s von %s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2914,12 +2915,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-22 09:27+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
"Language-Team: greek <el@li.org>\n"
@ -2747,27 +2747,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Δημιουργία έκδοσης %1$s του %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2919,12 +2920,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-12 15:12+0200\n"
"Last-Translator: Robert Readman <robert_readman@hotmail.com>\n"
"Language-Team: english-gb <en_GB@li.org>\n"
@ -2708,27 +2708,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Create version %1$s of %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Error renaming table %1$s to %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2880,12 +2881,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-27 15:44+0200\n"
"Last-Translator: Matías Bellone <matiasbellone@gmail.com>\n"
"Language-Team: spanish <es@li.org>\n"
@ -2752,16 +2752,16 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un sinónimo de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "A date, supported range is '%s' to '%s'"
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr "Una fecha, el rango válido es de «%s» a «%s»"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is '%s' to '%s'"
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
"Una combinación de fecha y marca temporal, el rango válido es de «%s» a «%s»"
@ -2772,18 +2772,17 @@ msgstr ""
#| "UTC, stored as the number of seconds since the epoch ('1970-01-01 "
#| "00:00:00' UTC)"
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Una marca temporal; el rango es de «01-Ene-1970 00:00:01» UTC a «09-Ene-2038 "
"03:14:07» UTC almacenados como la cantidad de segundos desde el «epoch» (01-"
"Ene-1970 00:00:00 UTC)"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "A time, range is '%s' to '%s'"
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr "Una marca temporal, el rango es de «%s» a «%s»"
#: libraries/Types.class.php:315
@ -2987,6 +2986,20 @@ msgstr "Un sinónimo de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Almacena indentificadores únicos universales («UUID»)"
#: libraries/Types.class.php:716
#, fuzzy, php-format
#| msgid "A date, supported range is '%s' to '%s'"
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr "Una fecha, el rango válido es de «%s» a «%s»"
#: libraries/Types.class.php:718
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is '%s' to '%s'"
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
"Una combinación de fecha y marca temporal, el rango válido es de «%s» a «%s»"
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
@ -2995,6 +3008,12 @@ msgstr ""
"Una marca temporal, el rango es de «01-Ene-0001 00:00:00» UTC a «31-Dic-9999 "
"23:59:59» UTC; TIMESTAMP(6) puede almacena microsegundos"
#: libraries/Types.class.php:722
#, fuzzy, php-format
#| msgid "A time, range is '%s' to '%s'"
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr "Una marca temporal, el rango es de «%s» a «%s»"
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-19 18:04+0200\n"
"Last-Translator: LiivaneLord <liivane.lord@mail.ee>\n"
"Language-Team: estonian <et@li.org>\n"
@ -2705,27 +2705,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "authored on %1$s by %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Esines viga %1$s tabeli ümbernimetamisel nimeks %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2877,12 +2878,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2011-11-04 13:00+0200\n"
"Last-Translator: karrikas <karrikas@gmail.com>\n"
"Language-Team: basque <eu@li.org>\n"
@ -2829,27 +2829,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Zerbitzariaren bertsioa"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Zerbitzariaren bertsioa"
#: libraries/Types.class.php:315
msgid ""
@ -3001,12 +3000,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007@yahoo.com>\n"
"Language-Team: persian <fa@li.org>\n"
@ -2844,27 +2844,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "نسخه سرور"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "نسخه سرور"
#: libraries/Types.class.php:315
msgid ""
@ -3015,12 +3014,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"Last-Translator: Jaakko Virtanen <taaateli@hotmail.com>\n"
"Language-Team: finnish <fi@li.org>\n"
"MIME-Version: 1.0\n"
@ -2725,27 +2725,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Luo versio %s kohteesta %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2897,12 +2898,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

121
po/fr.po
View File

@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"PO-Revision-Date: 2012-04-27 16:31+0200\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-27 18:39+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
@ -2745,35 +2745,37 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un alias pour BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr "Une date, la fourchette est de «%1$s» à «%2$s»"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:309
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Une combinaison date et heure, la fourchette est «%1$s» à «%2$s»"
#: libraries/Types.class.php:311
#, fuzzy
#| msgid ""
#| "A timestamp, range is '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' "
#| "UTC, stored as the number of seconds since the epoch ('1970-01-01 "
#| "00:00:00' UTC)"
#| "A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07"
#| "\" UTC, stored as the number of seconds since the epoch (\"1970-01-01 "
#| "00:00:00\" UTC)"
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Un type d'horodatage, la fourchette est de '1970-01-01 00:00:01' UTC à '2038-"
"01-09 03:14:07' UTC, en nombre de secondes depuis le moment de référence "
"('1970-01-01 00:00:00' UTC)"
"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à «2038-"
"01-09 03:14:07» UTC, en nombre de secondes depuis le moment de référence "
"(«1970-01-01 00:00:00» UTC)"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr "Une heure, la fourchette est «%1$s» à «%2$s»"
#: libraries/Types.class.php:315
msgid ""
@ -2805,18 +2807,27 @@ msgid ""
"A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with "
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
"Une colonne de type TEXT d'une longueur maximum de 255 (2^8 - 1) caractères, "
"stockée avec un préfixe d'un octet indiquant la longueur de la valeur en "
"octets"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
msgstr ""
"Une colonne TEXT d'une longueur maximum de 65 535 (2^16 - 1) caractères, "
"stockée avec un préfixe de deux octets indiquant la longueur de la valeur en "
"octets \t"
#: libraries/Types.class.php:325
msgid ""
"A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, "
"stored with a three-byte prefix indicating the length of the value in bytes"
msgstr ""
"Une colonne TEXT d'une longueur maximum de 16 777 215 (2^24 - 1) caractères, "
"stockée avec un préfixe de trois octets indiquant la longueur de la valeur "
"en octets"
#: libraries/Types.class.php:327
msgid ""
@ -2824,64 +2835,82 @@ msgid ""
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
"Une colonne TEXT d'une longueur maximum de 4 294 967 295 ou 4 GiB (2^32 - 1) "
"caractères, stockée avec un préfixe de quatre octets indiquant la longueur "
"de la valeur en octets"
#: libraries/Types.class.php:329
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
"Similaire au type CHAR, mais stocke des chaînes binaires au lieu de chaînes "
"non binaires"
#: libraries/Types.class.php:331
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
"Similaire au type VARCHAR, mais stocke des chaînes binaires au lieu de "
"chaînes non binaires"
#: libraries/Types.class.php:333
msgid ""
"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
"one-byte prefix indicating the length of the value"
msgstr ""
"Une colonne BLOB d'une longueur maximum de 255 (2^8 - 1) octets, stockée "
"avec un préfixe d'un octet indiquant la longueur de la valeur"
#: libraries/Types.class.php:335
msgid ""
"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored "
"with a three-byte prefix indicating the length of the value"
msgstr ""
"Une colonne BLOB d'une longueur maximum de 16 777 215 (2^24 - 1) octets, "
"stockée avec un préfixe de trois octets indiquant la longueur de la valeur"
#: libraries/Types.class.php:337
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a two-byte prefix indicating the length of the value"
msgstr ""
"Une colonne BLOB d'une longueur maximum de 65 535 (2^16 - 1) octets, stockée "
"avec un préfixe de quatre octets indiquant la longueur de la valeur"
#: libraries/Types.class.php:339
msgid ""
"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
"Une colonne BLOB d'une longueur maximum de 4 294 967 295 ou 4GiB (2^32 - 1), "
"stockée avec un préfixe de quatre octets indiquant la longueur de la valeur"
#: libraries/Types.class.php:341
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
"Une énumération, choisie parmi une liste comportant jusqu'à 65 535 valeurs "
"ou la valeur spéciale '' indiquant une erreur"
#: libraries/Types.class.php:343
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
"Une valeur unique choisie parmi un ensemble comportant jusqu'à 64 membres"
#: libraries/Types.class.php:345
msgid "A type that can store a geometry of any type"
msgstr ""
msgstr "Un type pouvant stocker une valeur géométrique de tout type"
#: libraries/Types.class.php:347
msgid "A point in 2-dimensional space"
msgstr ""
msgstr "Un point dans un espace à deux dimensions"
#: libraries/Types.class.php:349
msgid "A curve with linear interpolation between points"
msgstr ""
msgstr "Une courbe avec une interpolation linéaire entre les points"
#: libraries/Types.class.php:351
msgid "A polygon"
@ -2889,19 +2918,20 @@ msgstr "Un polygone"
#: libraries/Types.class.php:353
msgid "A collection of points"
msgstr ""
msgstr "Une collection de points"
#: libraries/Types.class.php:355
msgid "A collection of curves with linear interpolation between points"
msgstr ""
"Une collection de courbes avec l'interpolation linéaire entre les points"
#: libraries/Types.class.php:357
msgid "A collection of polygons"
msgstr ""
msgstr "Une collection de polygones"
#: libraries/Types.class.php:359
msgid "A collection of geometry objects of any type"
msgstr ""
msgstr "Une collection d'objets de géométrie de tout type"
#: libraries/Types.class.php:702
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
@ -2920,6 +2950,7 @@ msgstr ""
#: libraries/Types.class.php:708
msgid "A system's default double-precision floating-point number"
msgstr ""
"Une nombre à virgule flottante double précision du type par défaut du système"
#: libraries/Types.class.php:710
msgid "True or false"
@ -2927,33 +2958,57 @@ msgstr "Vrai ou faux"
#: libraries/Types.class.php:712
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
msgstr "Un alias pour BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:714
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Contient un identificateur universellement unique (UUID)"
#: libraries/Types.class.php:716
#, fuzzy, php-format
#| msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr "Une date, la fourchette est de «%1$s» à «%2$s»"
#: libraries/Types.class.php:718
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr "Une combinaison date et heure, la fourchette est «%1$s» à «%2$s»"
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
"Une colonne d'horodatage, la fourchette est de «0001-01-01 00:00:00» UTC à "
"«9999-12-31 23:59:59» UTC; TIMESTAMP(6) peut stocker des microsecondes"
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr "Une heure, la fourchette est «%1$s» à «%2$s»"
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
"Une chaîne de longueur variable (0 - 65 535), utilise un interclassement "
"binaire pour toutes les comparaisons"
#: libraries/Types.class.php:730
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
"Une colonne BLOB d'une longueur maximum de 65 535 (2^16 - 1) octets, stockée "
"avec un préfixe de quatre octets indiquant la longueur de la valeur"
#: libraries/Types.class.php:732
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
msgstr "Une énumération, choisie parmi la liste de valeurs définies"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
@ -8580,7 +8635,7 @@ msgstr "Texte entier"
#: libraries/tbl_properties.inc.php:537
msgid "first"
msgstr ""
msgstr "en premier"
#: libraries/tbl_properties.inc.php:543
#, php-format
@ -12127,7 +12182,7 @@ msgstr "Déplacer des colonnes"
#: tbl_structure.php:583
msgid "Move the columns by dragging them up and down."
msgstr ""
msgstr "Déplacez les colonnes en les faisant glisser vers le haut ou le bas."
#: tbl_structure.php:616
msgid "Edit view"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-17 16:56+0200\n"
"Last-Translator: Julio Guerra <xullo123@hotmail.com>\n"
"Language-Team: Independant\n"
@ -2686,27 +2686,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crear versión %1$s de %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2858,12 +2859,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-19 14:33+0200\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: hebrew <he@li.org>\n"
@ -2821,27 +2821,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "גרסת שרת"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "גרסת שרת"
#: libraries/Types.class.php:315
msgid ""
@ -2993,12 +2992,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: hindi <hi@li.org>\n"
@ -2835,27 +2835,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "%s संस्करण बनायें %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि."
#: libraries/Types.class.php:315
msgid ""
@ -3007,12 +3008,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-03 09:52+0100\n"
"Last-Translator: Nikola Vojković <vojka@xnet.hr>\n"
"Language-Team: croatian <hr@li.org>\n"
@ -2944,27 +2944,27 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Izradi relaciju"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -3116,12 +3116,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-20 00:10+0200\n"
"Last-Translator: Gergely Nagy <gerrrike@yahoo.com>\n"
"Language-Team: hungarian <hu@li.org>\n"
@ -2728,27 +2728,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Verzió létrehozása"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor"
#: libraries/Types.class.php:315
msgid ""
@ -2900,12 +2901,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-23 10:41+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: none\n"
@ -2626,26 +2626,25 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
@ -2796,12 +2795,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:57+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: indonesian <id@li.org>\n"
@ -2734,27 +2734,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Buat versi %s dari %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2906,12 +2907,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-05 12:40+0200\n"
"Last-Translator: Rouslan Placella <rouslan@placella.com>\n"
"Language-Team: italian <it@li.org>\n"
@ -2749,27 +2749,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crea versione %1$s di %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Errore nel rinominare la tabella %1$s in %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2921,12 +2922,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-25 12:50+0200\n"
"Last-Translator: Yuichiro Takahashi <yuichiro@pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp@li.org>\n"
@ -2705,27 +2705,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "パッチ作成: %1$s、%2$s により"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "テーブル名を %1$s から %2$s に変更するときにエラーが発生しました"
#: libraries/Types.class.php:315
msgid ""
@ -2877,12 +2878,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-29 16:53+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: georgian <ka@li.org>\n"
@ -2890,27 +2890,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Create relation"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Create relation"
#: libraries/Types.class.php:315
msgid ""
@ -3060,12 +3059,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-24 15:00+0200\n"
"Last-Translator: Abdurahman Taskibaev <tas362@mail.ru>\n"
"Language-Team: none\n"
@ -2639,26 +2639,25 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
@ -2809,12 +2808,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-02-17 10:54+0200\n"
"Last-Translator: minsung kang <manyfun7@gmail.com>\n"
"Language-Team: korean <ko@li.org>\n"
@ -2712,27 +2712,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "서버 버전"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "서버 버전"
#: libraries/Types.class.php:315
msgid ""
@ -2884,12 +2883,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-18 15:01+0200\n"
"Last-Translator: Edgaras Janušauskas <edgaras.janusauskas@gmail.com>\n"
"Language-Team: lithuanian <lt@li.org>\n"
@ -2750,27 +2750,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Sukurti versiją"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Klaida pervadinant lentelę iš %1$s į %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2922,12 +2923,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv@li.org>\n"
@ -2892,27 +2892,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Servera versija"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Servera versija"
#: libraries/Types.class.php:315
msgid ""
@ -3064,12 +3063,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: <sjanevski@gmail.com>\n"
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
@ -2893,27 +2893,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Верзија на серверот"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Верзија на серверот"
#: libraries/Types.class.php:315
msgid ""
@ -3065,12 +3064,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2011-09-27 08:42+0200\n"
"Last-Translator: <sadik.khalid@gmail.com>\n"
"Language-Team: Malayalam <ml@li.org>\n"
@ -2631,26 +2631,25 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
@ -2801,12 +2800,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn@li.org>\n"
@ -2914,27 +2914,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Ерөнхий хамаатай онцлог"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A time, range is %1$s to %2$s"
msgstr "Ерөнхий хамаатай онцлог"
#: libraries/Types.class.php:315
msgid ""
@ -3086,12 +3087,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms@li.org>\n"
@ -2861,27 +2861,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Versi Pelayan"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Versi Pelayan"
#: libraries/Types.class.php:315
msgid ""
@ -3032,12 +3031,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-08 05:59+0200\n"
"Last-Translator: Asle Ommundsen <aommundsen@gmail.com>\n"
"Language-Team: norwegian <no@li.org>\n"
@ -2784,27 +2784,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Opprett versjon %s av %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2956,12 +2957,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-23 16:55+0200\n"
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
"Language-Team: dutch <nl@li.org>\n"
@ -2733,27 +2733,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "geschreven door %2$s op %1$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2905,12 +2906,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2625,26 +2625,25 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, possible-php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, possible-php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, possible-php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
@ -2795,12 +2794,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, possible-php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, possible-php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, possible-php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-21 16:04+0200\n"
"Last-Translator: Marcin Kozioł <lord_dark@wp.pl>\n"
"Language-Team: iMutrix\n"
@ -2724,27 +2724,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "autorem %1$s dla %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2896,12 +2897,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: portuguese <pt@li.org>\n"
@ -2780,27 +2780,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Criar versão"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Erro ao mudar o nome da tabela %1$s para %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2952,12 +2953,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-25 19:23+0200\n"
"Last-Translator: Lucas David <lucasolivdavid@gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
@ -2735,27 +2735,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Criar versão %s de %s.%s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Erro ao renomear tabela %1$s para %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2907,12 +2908,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-24 14:18+0200\n"
"Last-Translator: Alex Marin <alex.ukf@gmail.com>\n"
"Language-Team: romanian <ro@li.org>\n"
@ -2837,27 +2837,27 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Creare relație"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Eroare la redenumirea tabelului %1$s în %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -3009,12 +3009,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-21 10:48+0200\n"
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
"Language-Team: russian <ru@li.org>\n"
@ -2732,27 +2732,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "создано %1$s, %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Ошибка при переименовании таблицы %1$s в %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2904,12 +2905,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-21 17:10+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
"Language-Team: sinhala <si@li.org>\n"
@ -2674,27 +2674,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "%1$s %2$s විසින් රචිත"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත"
#: libraries/Types.class.php:315
msgid ""
@ -2846,12 +2847,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-14 14:57+0200\n"
"Last-Translator: Roland Kosicexx <info@world-evolution.tk>\n"
"Language-Team: slovak <sk@li.org>\n"
@ -2724,27 +2724,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Vytvoriť verziu"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2896,12 +2897,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-27 03:47+0200\n"
"Last-Translator: Domen <dbc334@gmail.com>\n"
"Language-Team: slovenian <sl@li.org>\n"
@ -2731,29 +2731,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Vzdevek za BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "A date, supported range is '%s' to '%s'"
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr "Datum; podprt je razpon od '%s' do '%s'"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is '%s' to '%s'"
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Kombinacija datuma in časa; podprt je razpon od '%s' do '%s'"
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "A time, range is '%s' to '%s'"
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr "Čas; razpon je od '%s' do '%s'"
#: libraries/Types.class.php:315
@ -2904,12 +2903,31 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, fuzzy, php-format
#| msgid "A date, supported range is '%s' to '%s'"
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr "Datum; podprt je razpon od '%s' do '%s'"
#: libraries/Types.class.php:718
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is '%s' to '%s'"
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr "Kombinacija datuma in časa; podprt je razpon od '%s' do '%s'"
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, fuzzy, php-format
#| msgid "A time, range is '%s' to '%s'"
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr "Čas; razpon je od '%s' do '%s'"
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: albanian <sq@li.org>\n"
@ -2888,27 +2888,26 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Versioni i MySQL"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Versioni i MySQL"
#: libraries/Types.class.php:315
msgid ""
@ -3059,12 +3058,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: serbian_cyrillic <sr@li.org>\n"
@ -2929,27 +2929,27 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Направи релацију"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Грешка при преименовању табеле %1$s у %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -3101,12 +3101,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@ -2922,27 +2922,27 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Napravi relaciju"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Greška pri preimenovanju tabele %1$s u %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -3094,12 +3094,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-20 20:56+0200\n"
"Last-Translator: ProUser <stefan@inkopsforum.se>\n"
"Language-Team: swedish <sv@li.org>\n"
@ -2708,27 +2708,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Skriven den %1$s av %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Fel vid namnbyte av tabell %1$s till %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2880,12 +2881,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2011-12-28 11:44+0200\n"
"Last-Translator: any anonymous user <>\n"
"Language-Team: Tamil <ta@li.org>\n"
@ -2711,27 +2711,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "பதிப்பை உருவாக்கு"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Create version"
msgid "A time, range is %1$s to %2$s"
msgstr "பதிப்பை உருவாக்கு"
#: libraries/Types.class.php:315
msgid ""
@ -2883,12 +2884,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-09 02:43+0200\n"
"Last-Translator: వీవెన్ <veeven@gmail.com>\n"
"Language-Team: Telugu <te@li.org>\n"
@ -2801,27 +2801,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "More settings"
msgid "A date, supported range is %1$s to %2$s"
msgstr "మరిన్ని అమరికలు"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "More settings"
msgid "A time, range is %1$s to %2$s"
msgstr "మరిన్ని అమరికలు"
#: libraries/Types.class.php:315
msgid ""
@ -2974,12 +2975,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-21 15:20+0200\n"
"Last-Translator: Setthawut Sawaengkit <defpico2@hotmail.com>\n"
"Language-Team: thai <th@li.org>\n"
@ -2673,27 +2673,27 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "รุ่นของเซิร์ฟเวอร์"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2845,12 +2845,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-23 10:42+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Turkmen <tk@li.org>\n"
@ -2634,26 +2634,25 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
@ -2804,12 +2803,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"PO-Revision-Date: 2012-04-27 08:49+0200\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-27 18:39+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
"Language-Team: turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
@ -2323,12 +2323,12 @@ msgstr "Saniye"
#: libraries/Advisor.class.php:65
#, php-format
msgid "PHP threw following error: %s"
msgstr ""
msgstr "PHP aşağıdaki hatayı verdi: %s"
#: libraries/Advisor.class.php:86
#, php-format
msgid "Failed evaluating precondition for rule '%s'"
msgstr ""
msgstr "'%s' kuralı için önkoşul değerlendirmesi başarısız"
#: libraries/Advisor.class.php:100
#, php-format
@ -2727,16 +2727,16 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE için bir kod adı"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "A date, supported range is '%s' to '%s'"
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgid "A date, supported range is %1$s to %2$s"
msgstr "Bir tarih, desteklenen aralık '%s' ile '%s' arası"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is '%s' to '%s'"
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Bir tarih ve saat birleşimi, desteklenen aralık '%s' ile '%s' arası"
#: libraries/Types.class.php:311
@ -2746,18 +2746,17 @@ msgstr "Bir tarih ve saat birleşimi, desteklenen aralık '%s' ile '%s' arası"
#| "UTC, stored as the number of seconds since the epoch ('1970-01-01 "
#| "00:00:00' UTC)"
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Bir zaman damgası, aralığı '1970-01-01 00:00:01' UTC ile '2038-01-09 "
"03:14:07' UTC arası, devirden ('1970-01-01 00:00:00' UTC) bu yana saniye "
"sayısı olarak saklanır"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "A time, range is '%s' to '%s'"
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgid "A time, range is %1$s to %2$s"
msgstr "Bir saat, aralığı '%s' ile '%s' arası"
#: libraries/Types.class.php:315
@ -2931,12 +2930,31 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Evrensel Depolanan Benzersiz Tanımlayıcı (UUID)."
#: libraries/Types.class.php:716
#, fuzzy, php-format
#| msgid "A date, supported range is '%s' to '%s'"
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr "Bir tarih, desteklenen aralık '%s' ile '%s' arası"
#: libraries/Types.class.php:718
#, fuzzy, php-format
#| msgid "A date and time combination, supported range is '%s' to '%s'"
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr "Bir tarih ve saat birleşimi, desteklenen aralık '%s' ile '%s' arası"
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, fuzzy, php-format
#| msgid "A time, range is '%s' to '%s'"
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr "Bir saat, aralığı '%s' ile '%s' arası"
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-01-12 11:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: tatarish <tt@li.org>\n"
@ -2908,27 +2908,27 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Server söreme"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı"
#: libraries/Types.class.php:315
msgid ""
@ -3080,12 +3080,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-14 14:46+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uyghur <ug@li.org>\n"
@ -2824,27 +2824,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "نەشىرنى قۇىماق"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى."
#: libraries/Types.class.php:315
msgid ""
@ -2994,12 +2995,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: ukrainian <uk@li.org>\n"
@ -2756,27 +2756,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Загальні можливості"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Помилка зміни назви таблиці %1$s на %2$s"
#: libraries/Types.class.php:315
msgid ""
@ -2928,12 +2929,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-27 16:34+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Urdu <ur@li.org>\n"
@ -2841,27 +2841,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "جنرل ریلیشن فیچرز"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے"
#: libraries/Types.class.php:315
msgid ""
@ -3013,12 +3014,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: uzbek_cyrillic <uz@li.org>\n"
@ -2974,27 +2974,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик"
#: libraries/Types.class.php:315
msgid ""
@ -3146,12 +3147,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-03-14 14:57+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@ -2982,27 +2982,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik"
#: libraries/Types.class.php:315
msgid ""
@ -3154,12 +3155,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-09 07:19+0200\n"
"Last-Translator: Vian Zhao <brovian@gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
@ -2683,27 +2683,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "为 %2$s.%3$s 创建版本 %1$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "将表 %1$s 改名为 %2$s 时发生错误"
#: libraries/Types.class.php:315
msgid ""
@ -2855,12 +2856,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-27 11:06-0400\n"
"POT-Creation-Date: 2012-04-27 13:04-0400\n"
"PO-Revision-Date: 2012-04-19 03:18+0200\n"
"Last-Translator: MoA Chung <honomoa@gmail.com>\n"
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
@ -2781,27 +2781,28 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:307
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "爲 %2$s.%3$s 建立版本 %1$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:309
#, php-format
msgid "A date and time combination, supported range is \"%1$s\" to \"%2$s\""
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
msgid ""
"A timestamp, range is \"1970-01-01 00:00:01\" UTC to \"2038-01-09 03:14:07\" "
"UTC, stored as the number of seconds since the epoch (\"1970-01-01 00:00:00"
"\" UTC)"
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:313
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤"
#: libraries/Types.class.php:315
msgid ""
@ -2953,12 +2954,28 @@ msgstr ""
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:716
#, php-format
msgid "A date, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:718
#, php-format
msgid ""
"A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\\""
msgstr ""
#: libraries/Types.class.php:720
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
#: libraries/Types.class.php:722
#, php-format
msgid "A time, range is \"%1$s\" to \"%2$s\""
msgstr ""
#: libraries/Types.class.php:728
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "

View File

@ -22,7 +22,7 @@ class PMA_checkParameters_test extends PHPUnit_Framework_TestCase
{
$GLOBALS['PMA_Config'] = new PMA_Config();
$_SESSION['PMA_Theme'] = new PMA_Theme();
$GLOBALS['cfg'] = array('ReplaceHelpImg' => true, 'ServerDefault' => 1);
$GLOBALS['cfg'] = array('ServerDefault' => 1);
$GLOBALS['pmaThemeImage'] = 'theme/';
$GLOBALS['lang'] = 'en';
$GLOBALS['text_dir'] = 'ltr';

View File

@ -20,10 +20,8 @@ class PMA_showDocu_test extends PHPUnit_Framework_TestCase
$_SESSION['PMA_Theme'] = PMA_Theme::load('./themes/pmahomme');
}
function testShowDocuReplaceHelpImg()
function testShowDocu()
{
$GLOBALS['cfg']['ReplaceHelpImg'] = true;
$anchor = "relation";
$expected = '<a href="Documentation.html#' . $anchor . '" target="documentation">'
. '<img src="themes/dot.gif" title="' . __('Documentation') . '" '
@ -32,17 +30,4 @@ class PMA_showDocu_test extends PHPUnit_Framework_TestCase
$this->assertEquals($expected, PMA_showDocu($anchor));
}
function testShowDocuNotReplaceHelpImg()
{
$GLOBALS['cfg']['ReplaceHelpImg'] = false;
$anchor = "relation";
$expected = '[<a href="Documentation.html#' . $anchor . '" target="documentation">'
. __('Documentation')
. '</a>]';
$this->assertEquals($expected, PMA_showDocu($anchor));
}
}

View File

@ -25,10 +25,8 @@ class PMA_showPHPDocu_test extends PHPUnit_Framework_TestCase
$GLOBALS['cfg']['ServerDefault'] = 0;
}
function testShwoPHPDocuReplaceHelpImg()
function testShowPHPDocu()
{
$GLOBALS['cfg']['ReplaceHelpImg'] = true;
$target = "docu";
$lang = _pgettext('PHP documentation language', 'en');
$expected = '<a href="./url.php?url=http%3A%2F%2Fphp.net%2Fmanual%2F' . $lang
@ -38,19 +36,4 @@ class PMA_showPHPDocu_test extends PHPUnit_Framework_TestCase
$this->assertEquals($expected, PMA_showPHPDocu($target));
}
function testShwoPHPDocuNotReplaceHelpImg()
{
$GLOBALS['cfg']['ReplaceHelpImg'] = false;
$target = "docu";
$lang = _pgettext('PHP documentation language', 'en');
$expected = '[<a href="./url.php?url=http%3A%2F%2Fphp.net%2Fmanual%2F' . $lang
. '%2F' . $target . '&amp;server=99&amp;lang=en&amp;token=token'
. '" target="documentation">' . __('Documentation') . '</a>]';
$this->assertEquals($expected, PMA_showPHPDocu($target));
}
}