diff --git a/ChangeLog b/ChangeLog index ecc79d1fa2..8a93c894e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/Documentation.html b/Documentation.html index 08346376f6..ce08ff826e 100644 --- a/Documentation.html +++ b/Documentation.html @@ -2286,10 +2286,6 @@ setfacl -d -m "g:www-data:rwx" tmp format string expansion. -
$cfg['ReplaceHelpImg'] boolean
-
Shows a help button instead of the "Documentation" message. -
-
$cfg['ThemePath'] string
If theme manager is active, use this as the path of the subdirectory containing all the themes.
diff --git a/js/tbl_structure.js b/js/tbl_structure.js index 04539cfd67..741795d5ab 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -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 = $("
").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(); diff --git a/libraries/Types.class.php b/libraries/Types.class.php index be50f324c5..57fb6a129c 100644 --- a/libraries/Types.class.php +++ b/libraries/Types.class.php @@ -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': diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 2619b00dc1..cbe01ad5e8 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -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 = ''; - if ($GLOBALS['cfg']['ReplaceHelpImg']) { - return $linkstart - . PMA_getImage('b_help.png', __('Documentation')) - . ''; - } else { - return '['. $linkstart . __('Documentation') . ']'; - } + return '' + . PMA_getImage('b_help.png', __('Documentation')) + . ''; } // 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( - "", + '', $GLOBALS['PMA_Types']->getTypeDescription($subvalue), $subvalue ); } else if ($subvalue === '-') { - $retval .= ""; + $retval .= ''; } else { $retval .= sprintf( - "", + '', $GLOBALS['PMA_Types']->getTypeDescription($subvalue), $subvalue ); @@ -3455,13 +3449,13 @@ function PMA_getSupportedDatatypes($html = false, $selected = '') } else { if ($selected == $value) { $retval .= sprintf( - "", + '', $GLOBALS['PMA_Types']->getTypeDescription($value), $value ); } else { $retval .= sprintf( - "", + '', $GLOBALS['PMA_Types']->getTypeDescription($value), $value ); diff --git a/libraries/config.default.php b/libraries/config.default.php index 91ef462681..eca66a3949 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -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 diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index b1aa0a861a..db0c2b557e 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -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'); diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php index dc1d924bc9..c23f093e9c 100644 --- a/libraries/config/setup.forms.php +++ b/libraries/config/setup.forms.php @@ -127,7 +127,6 @@ $forms['Features']['Other_core_settings'] = array( 'VersionCheck', 'NaturalOrder', 'InitialSlidersState', - 'ReplaceHelpImg', 'MaxDbList', 'MaxTableList', 'ShowHint', diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php index 814ad763f5..d6c09c1510 100644 --- a/libraries/config/user_preferences.forms.php +++ b/libraries/config/user_preferences.forms.php @@ -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', diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php index 0c81beaa94..a9f21951f4 100644 --- a/libraries/tbl_properties.inc.php +++ b/libraries/tbl_properties.inc.php @@ -84,10 +84,7 @@ $content_cells = array(); $header_cells[] = __('Name'); $header_cells[] = __('Type') - . ($GLOBALS['cfg']['ReplaceHelpImg'] - ? PMA_showMySQLDocu('SQL-Syntax', 'data-types') - : '
' . PMA_showMySQLDocu('SQL-Syntax', 'data-types') - . ''); + . 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\'...
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'); diff --git a/po/af.po b/po/af.po index 95a3dd8459..5db264bc03 100644 --- a/po/af.po +++ b/po/af.po @@ -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 \n" "Language-Team: afrikaans \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 " diff --git a/po/ar.po b/po/ar.po index ada360f625..f58d2f6ee7 100644 --- a/po/ar.po +++ b/po/ar.po @@ -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 \n" "Language-Team: arabic \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 " diff --git a/po/az.po b/po/az.po index 70ffde70a3..b3696e6526 100644 --- a/po/az.po +++ b/po/az.po @@ -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ř \n" "Language-Team: azerbaijani \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 " diff --git a/po/be.po b/po/be.po index 31ebcd315c..2b7cb215c2 100644 --- a/po/be.po +++ b/po/be.po @@ -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 \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 " diff --git a/po/be@latin.po b/po/be@latin.po index 80c57668e1..7599cc9807 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -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 \n" "Language-Team: belarusian_latin \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 " diff --git a/po/bg.po b/po/bg.po index 7222e46e72..fa86149713 100644 --- a/po/bg.po +++ b/po/bg.po @@ -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 \n" "Language-Team: bulgarian \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 " diff --git a/po/bn.po b/po/bn.po index dc2b3eab59..bacd35c609 100644 --- a/po/bn.po +++ b/po/bn.po @@ -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ř \n" "Language-Team: bangla \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 " diff --git a/po/br.po b/po/br.po index 042e369ce1..c0d146e21d 100644 --- a/po/br.po +++ b/po/br.po @@ -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ř \n" "Language-Team: LANGUAGE \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 " diff --git a/po/bs.po b/po/bs.po index ae2a4b0626..6189b73f7c 100644 --- a/po/bs.po +++ b/po/bs.po @@ -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 \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 " diff --git a/po/ca.po b/po/ca.po index 8d74f1b7cd..d390e27239 100644 --- a/po/ca.po +++ b/po/ca.po @@ -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ř \n" "Language-Team: catalan \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 " diff --git a/po/cs.po b/po/cs.po index 5d0266012a..dadbf4a58e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -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ř \n" "Language-Team: czech \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 " diff --git a/po/cy.po b/po/cy.po index b10a47015d..ea609883af 100644 --- a/po/cy.po +++ b/po/cy.po @@ -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: \n" "Language-Team: Welsh \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 " diff --git a/po/da.po b/po/da.po index ff30649861..3b3202940a 100644 --- a/po/da.po +++ b/po/da.po @@ -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ř \n" "Language-Team: danish \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 " diff --git a/po/de.po b/po/de.po index 3dea7e74d4..c8b2c8072c 100644 --- a/po/de.po +++ b/po/de.po @@ -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 \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 " diff --git a/po/el.po b/po/el.po index e1a8ed45f8..1d9088860e 100644 --- a/po/el.po +++ b/po/el.po @@ -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 \n" "Language-Team: greek \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 " diff --git a/po/en_GB.po b/po/en_GB.po index 5dac77c379..4d908a029b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -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 \n" "Language-Team: english-gb \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 " diff --git a/po/es.po b/po/es.po index a2339b5564..ba872f7947 100644 --- a/po/es.po +++ b/po/es.po @@ -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 \n" "Language-Team: spanish \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 " diff --git a/po/et.po b/po/et.po index a4347f4d58..dbd3c187c7 100644 --- a/po/et.po +++ b/po/et.po @@ -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 \n" "Language-Team: estonian \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 " diff --git a/po/eu.po b/po/eu.po index a56b846c98..9be7c1db44 100644 --- a/po/eu.po +++ b/po/eu.po @@ -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 \n" "Language-Team: basque \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 " diff --git a/po/fa.po b/po/fa.po index c9bfc661bf..20c2034336 100644 --- a/po/fa.po +++ b/po/fa.po @@ -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: \n" "Language-Team: persian \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 " diff --git a/po/fi.po b/po/fi.po index 096bdec641..2d9cbd20a7 100644 --- a/po/fi.po +++ b/po/fi.po @@ -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 \n" "Language-Team: finnish \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 " diff --git a/po/fr.po b/po/fr.po index 15d8f1b857..790c8651db 100644 --- a/po/fr.po +++ b/po/fr.po @@ -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 \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" diff --git a/po/gl.po b/po/gl.po index 41ba74d6fc..d20aa0c1b9 100644 --- a/po/gl.po +++ b/po/gl.po @@ -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 \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 " diff --git a/po/he.po b/po/he.po index 0946bf9851..1ca26139b2 100644 --- a/po/he.po +++ b/po/he.po @@ -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 \n" "Language-Team: hebrew \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 " diff --git a/po/hi.po b/po/hi.po index 65d3199017..6c78299c8f 100644 --- a/po/hi.po +++ b/po/hi.po @@ -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ř \n" "Language-Team: hindi \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 " diff --git a/po/hr.po b/po/hr.po index 39145a6b01..c8e6d5398e 100644 --- a/po/hr.po +++ b/po/hr.po @@ -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ć \n" "Language-Team: croatian \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 " diff --git a/po/hu.po b/po/hu.po index e3844cbf18..d2bc007c8e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -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 \n" "Language-Team: hungarian \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 " diff --git a/po/hy.po b/po/hy.po index bc005ee56b..05731a3aca 100644 --- a/po/hy.po +++ b/po/hy.po @@ -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ř \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 " diff --git a/po/id.po b/po/id.po index cfe313f60d..90191ada2d 100644 --- a/po/id.po +++ b/po/id.po @@ -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ř \n" "Language-Team: indonesian \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 " diff --git a/po/it.po b/po/it.po index 9ea3981114..0acbafb0a8 100644 --- a/po/it.po +++ b/po/it.po @@ -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 \n" "Language-Team: italian \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 " diff --git a/po/ja.po b/po/ja.po index b902ef1c5b..c2d8fb5ab0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -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 \n" "Language-Team: japanese \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 " diff --git a/po/ka.po b/po/ka.po index cec8654b84..66780776e5 100644 --- a/po/ka.po +++ b/po/ka.po @@ -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ř \n" "Language-Team: georgian \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 " diff --git a/po/kk.po b/po/kk.po index 5e28c364e9..ce8d27b4a9 100644 --- a/po/kk.po +++ b/po/kk.po @@ -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 \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 " diff --git a/po/ko.po b/po/ko.po index b1950dbfe2..114843c075 100644 --- a/po/ko.po +++ b/po/ko.po @@ -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 \n" "Language-Team: korean \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 " diff --git a/po/lt.po b/po/lt.po index 6aa940003a..18a56d849e 100644 --- a/po/lt.po +++ b/po/lt.po @@ -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 \n" "Language-Team: lithuanian \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 " diff --git a/po/lv.po b/po/lv.po index ded533dfff..95952c0d9a 100644 --- a/po/lv.po +++ b/po/lv.po @@ -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 \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 " diff --git a/po/mk.po b/po/mk.po index 744d1b539f..c4b3a8558a 100644 --- a/po/mk.po +++ b/po/mk.po @@ -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: \n" "Language-Team: macedonian_cyrillic \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 " diff --git a/po/ml.po b/po/ml.po index 610b201501..8ebf681fc6 100644 --- a/po/ml.po +++ b/po/ml.po @@ -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: \n" "Language-Team: Malayalam \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 " diff --git a/po/mn.po b/po/mn.po index 357b2383cc..6c0b8a2edf 100644 --- a/po/mn.po +++ b/po/mn.po @@ -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 \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 " diff --git a/po/ms.po b/po/ms.po index 2993c84aa3..0e0b7fc673 100644 --- a/po/ms.po +++ b/po/ms.po @@ -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 \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 " diff --git a/po/nb.po b/po/nb.po index 5d975fe998..0847744845 100644 --- a/po/nb.po +++ b/po/nb.po @@ -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 \n" "Language-Team: norwegian \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 " diff --git a/po/nl.po b/po/nl.po index 451b46ccce..b2047406a9 100644 --- a/po/nl.po +++ b/po/nl.po @@ -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 \n" "Language-Team: dutch \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 " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index c040e3fdfa..fbdd1ed1a6 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -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 \n" "Language-Team: LANGUAGE \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 " diff --git a/po/pl.po b/po/pl.po index c8924e19a6..f7df7c603f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -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ł \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 " diff --git a/po/pt.po b/po/pt.po index 782f73054d..3581fc1d24 100644 --- a/po/pt.po +++ b/po/pt.po @@ -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ř \n" "Language-Team: portuguese \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 " diff --git a/po/pt_BR.po b/po/pt_BR.po index 921dd27c8a..f050c2d343 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -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 \n" "Language-Team: brazilian_portuguese \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 " diff --git a/po/ro.po b/po/ro.po index 48b42c1bb3..1e0e98c6a5 100644 --- a/po/ro.po +++ b/po/ro.po @@ -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 \n" "Language-Team: romanian \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 " diff --git a/po/ru.po b/po/ru.po index 1b4cf7e14b..05134fea1e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -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 \n" "Language-Team: russian \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 " diff --git a/po/si.po b/po/si.po index 7debbdd376..e6ad237737 100644 --- a/po/si.po +++ b/po/si.po @@ -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 \n" "Language-Team: sinhala \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 " diff --git a/po/sk.po b/po/sk.po index a10a5b149a..3c311dc08c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -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 \n" "Language-Team: slovak \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 " diff --git a/po/sl.po b/po/sl.po index 26faeb07ae..9b4438f128 100644 --- a/po/sl.po +++ b/po/sl.po @@ -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 \n" "Language-Team: slovenian \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 " diff --git a/po/sq.po b/po/sq.po index 9579a52212..b91f0ab077 100644 --- a/po/sq.po +++ b/po/sq.po @@ -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 \n" "Language-Team: albanian \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 " diff --git a/po/sr.po b/po/sr.po index 4ad2329469..24f13cc0da 100644 --- a/po/sr.po +++ b/po/sr.po @@ -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ř \n" "Language-Team: serbian_cyrillic \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 " diff --git a/po/sr@latin.po b/po/sr@latin.po index 77393f5ad7..838ae5012b 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -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 \n" "Language-Team: serbian_latin \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 " diff --git a/po/sv.po b/po/sv.po index d3ec982e18..0b81dcad24 100644 --- a/po/sv.po +++ b/po/sv.po @@ -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 \n" "Language-Team: swedish \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 " diff --git a/po/ta.po b/po/ta.po index dd96e62feb..f7ad8c08be 100644 --- a/po/ta.po +++ b/po/ta.po @@ -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 \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 " diff --git a/po/te.po b/po/te.po index 9df538cbed..e674daba78 100644 --- a/po/te.po +++ b/po/te.po @@ -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: వీవెన్ \n" "Language-Team: Telugu \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 " diff --git a/po/th.po b/po/th.po index 63f7eccca6..ded354e7be 100644 --- a/po/th.po +++ b/po/th.po @@ -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 \n" "Language-Team: thai \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 " diff --git a/po/tk.po b/po/tk.po index f660b1e61d..033c512399 100644 --- a/po/tk.po +++ b/po/tk.po @@ -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ř \n" "Language-Team: Turkmen \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 " diff --git a/po/tr.po b/po/tr.po index c26f9809c0..c39f4a2942 100644 --- a/po/tr.po +++ b/po/tr.po @@ -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 \n" "Language-Team: turkish \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 " diff --git a/po/tt.po b/po/tt.po index 8a156503f9..f2929e5865 100644 --- a/po/tt.po +++ b/po/tt.po @@ -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 \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 " diff --git a/po/ug.po b/po/ug.po index a3bc7b37d9..3343a248c6 100644 --- a/po/ug.po +++ b/po/ug.po @@ -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ř \n" "Language-Team: Uyghur \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 " diff --git a/po/uk.po b/po/uk.po index 282f93bb93..33b21b2718 100644 --- a/po/uk.po +++ b/po/uk.po @@ -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ř \n" "Language-Team: ukrainian \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 " diff --git a/po/ur.po b/po/ur.po index 8b937619da..593454871a 100644 --- a/po/ur.po +++ b/po/ur.po @@ -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ř \n" "Language-Team: Urdu \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 " diff --git a/po/uz.po b/po/uz.po index 7f9573770c..01e7df0259 100644 --- a/po/uz.po +++ b/po/uz.po @@ -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 \n" "Language-Team: uzbek_cyrillic \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 " diff --git a/po/uz@latin.po b/po/uz@latin.po index 117d06721f..a9ad3745c5 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -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ř \n" "Language-Team: uzbek_latin \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 " diff --git a/po/zh_CN.po b/po/zh_CN.po index aa42029970..b688bf88ae 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -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 \n" "Language-Team: chinese_simplified \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 " diff --git a/po/zh_TW.po b/po/zh_TW.po index 415b40030d..c437c721a9 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -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 \n" "Language-Team: chinese_traditional \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 " diff --git a/test/libraries/common/PMA_checkParameters_test.php b/test/libraries/common/PMA_checkParameters_test.php index d321d453c6..3265a622e2 100644 --- a/test/libraries/common/PMA_checkParameters_test.php +++ b/test/libraries/common/PMA_checkParameters_test.php @@ -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'; diff --git a/test/libraries/common/PMA_showDocu_test.php b/test/libraries/common/PMA_showDocu_test.php index d58be058c3..07e3677dd6 100644 --- a/test/libraries/common/PMA_showDocu_test.php +++ b/test/libraries/common/PMA_showDocu_test.php @@ -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 = '' . 'assertEquals($expected, PMA_showDocu($anchor)); } - - function testShowDocuNotReplaceHelpImg() - { - $GLOBALS['cfg']['ReplaceHelpImg'] = false; - - $anchor = "relation"; - $expected = '[' - . __('Documentation') - . ']'; - - $this->assertEquals($expected, PMA_showDocu($anchor)); - - } } diff --git a/test/libraries/common/PMA_showPHPDocu_test.php b/test/libraries/common/PMA_showPHPDocu_test.php index 5cc2e424f6..720ce96f48 100644 --- a/test/libraries/common/PMA_showPHPDocu_test.php +++ b/test/libraries/common/PMA_showPHPDocu_test.php @@ -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 = '' . __('Documentation') . ']'; - - $this->assertEquals($expected, PMA_showPHPDocu($target)); - } - - }