Update po files

This commit is contained in:
Michal Čihař 2012-05-09 13:15:32 +02:00
parent 765eed577a
commit d2dededbd3
68 changed files with 3952 additions and 4038 deletions

117
po/af.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: afrikaans <af@li.org>\n"
@ -2924,233 +2924,233 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Bediener weergawe"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
msgid "A polygon"
msgstr "Voeg 'n nuwe veld by"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Skep 'n nuwe indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3163,60 +3163,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "totaal"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Lyne beeindig deur"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -13303,6 +13297,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Lyne beeindig deur"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/ar.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2011-09-24 21:48+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10@windowslive.com>\n"
"Language-Team: arabic <ar@li.org>\n"
@ -2823,236 +2823,236 @@ msgstr "مسار المظهر غير موجود للمظهر %s !"
msgid "Theme"
msgstr "مظهر"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "إضافة مضلع"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "تصميم فهرسه جديده"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3066,60 +3066,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "مجموع كلي"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "منحنى"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "لايمكن الإتصال: إعدادات غير صحيحة."
@ -13358,6 +13352,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "منحنى"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "إحذف الملف \"./config\" مباشرة بعد إستخدام phpMyAdmin!"

117
po/az.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:55+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: azerbaijani <az@li.org>\n"
@ -2958,233 +2958,233 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Server versiyası"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
msgid "A polygon"
msgstr "Yeni sahe elave et"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Yeni indeks qur"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3198,60 +3198,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Cemi"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Setir leğvedicisi (Lines terminated by)"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Elaqe qura bilmirem: yalnış quruluş."
@ -13543,6 +13537,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Setir leğvedicisi (Lines terminated by)"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/be.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be@li.org>\n"
@ -3021,235 +3021,235 @@ msgstr "Ня знойдзены шлях да тэмы %s!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Дадаць %s новыя палі"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Стварыць новы індэкс"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3263,60 +3263,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Колькасьць файлаў логу"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Радкі падзеленыя"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Немагчыма падлучыцца: няправільныя налады."
@ -14057,6 +14051,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "максымум адначасовых злучэньняў"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Радкі падзеленыя"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@ -3035,236 +3035,236 @@ msgstr "Nia znojdzieny šlach da temy %s!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Dadać %s novyja pali"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Stvaryć novy indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3278,60 +3278,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Kolkaść fajłaŭ łogu"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Radki padzielenyja"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Niemahčyma padłučycca: niapravilnyja nałady."
@ -14047,6 +14041,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "maksymum adnačasovych złučeńniaŭ"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Radki padzielenyja"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/bg.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-08 19:38+0200\n"
"Last-Translator: Стоян Димитров <stoyanster@gmail.com>\n"
"Language-Team: bulgarian <bg@li.org>\n"
@ -2768,178 +2768,178 @@ msgstr "Не е открит път към тема %s!"
msgid "Theme"
msgstr "Тема"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, php-format
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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Комбинация от дата и час, поддържаният диапазон е %1$s до %2$s"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Време, диапазонът е %1$s до %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -2947,55 +2947,55 @@ msgstr ""
"Изброяване, избор от списък с до 65535 стойности или специалната стойност за "
"грешка ''"
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr "Единична стойност, избрана от списък с до 64 възможни"
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "Тип, който може да съхранява геометрия от всякакъв вид"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "Точка в 2-мерното пространство"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "Крива с линейна интерполация между точки"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Многоъгълник"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Набор от точки"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "Колекция от криви с линейна интерполация между точки"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Набор от многоъгълници"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "Набор от геометрични обекти от всякакъв вид"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Добавяне индекс"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3009,11 +3009,11 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Пространствена колона"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "Цяло 4-байтово число с диапазон от -2 147 483 648 до 2 147 483 647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3021,50 +3021,44 @@ msgstr ""
"Цяло 8-байтово число с диапазон от -9 223 372 036 854 775 808 до 9 223 372 "
"036 854 775 807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "Истина или неистина"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Синоним на BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Съхранява универсално уникален идентификатор (UUID)"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "Изброяване, избор от списък на определените стойности"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linestring"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Връзката неосъществима: невалидни настройки."
@ -12806,6 +12800,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert e 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linestring"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Премахнете папка \"./config\" преди да използвате phpMyAdmin!"

117
po/bn.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: bangla <bn@li.org>\n"
@ -2891,234 +2891,234 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Server version"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "একটি পলিগন যোগ করুন"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3132,60 +3132,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "মোট"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "লাইনস্ট্র্রিং"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings."
@ -13635,6 +13629,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "max. concurrent connections"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "লাইনস্ট্র্রিং"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/br.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-14 16:33+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2827,236 +2827,236 @@ msgstr "N'eo ket bet kavet an hent evit an tem %s !"
msgid "Theme"
msgstr "Tem"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Ouzhpennañ ul lieskorneg"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Krouiñ un argerzh"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3068,60 +3068,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr ""
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Aradennad linennoù"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Dibosupl kevreañ : arventennoù direizh."
@ -13003,6 +12997,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Aradennad linennoù"
#, fuzzy
#~| msgid "Data only"
#~ msgid "Dates only."

117
po/bs.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs@li.org>\n"
@ -2950,233 +2950,233 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Verzija servera"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
msgid "A polygon"
msgstr "Dodaj novo polje"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Napravi novi ključ"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3190,60 +3190,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Ukupno"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Linije se završavaju sa"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -13522,6 +13516,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Linije se završavaju sa"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/ca.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-28 14:16+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: catalan <ca@li.org>\n"
@ -2792,236 +2792,236 @@ msgstr "No s'ha trobat el camí de les imatges del tema %s!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Afegeix un polígon"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crea un nou índex"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3035,60 +3035,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Columna espacial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Cadena de línies"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "No puc connectar: paràmetres incorrectes."
@ -13493,6 +13487,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "max. connexions a la vegada"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Cadena de línies"
#~ msgid "Show help button instead of Documentation text"
#~ msgstr "Mostra el botó d'ajuda en lloc del text de la Documentació"

113
po/cs.po
View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-09 13:01+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: czech <cs@li.org>\n"
@ -2773,13 +2773,13 @@ msgstr "Nebyla nalezena platná cesta k vzhledu %s!"
msgid "Theme"
msgstr "Vzhled"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"Jednobajtové číslo, se znaménkem v rozsahu -128 až 127, bez znaménka 0 až 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
@ -2787,7 +2787,7 @@ msgstr ""
"Dvoubajtové číslo, se znaménkem v rozsahu -32768 až 32767, bez znaménka 0 až "
"65535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2795,7 +2795,7 @@ msgstr ""
"Tříbajtové číslo, se znaménkem v rozsahu -8388608 až 8388607, bez znaménka 0 "
"až 16777215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2803,7 +2803,7 @@ msgstr ""
"Čtyřbajtové číslo, se znaménkem v rozsahu -2147483648 až 2147483647, bez "
"znaménka 0 až 4294967295."
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2811,205 +2811,205 @@ msgstr ""
"Osmibajtové číslo, se znaménkem v rozsahu -9223372036854775808 až "
"9223372036854775807, bez znaménka 0 až 18446744073709551615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Datum, podporovaný rozsah od %1$s do %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Datum a čas, podporovaný rozsah od %1$s do %2$s"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Čas, podporovaný rozsah od %1$s do %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Mnohoúhelník"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Množina bodů"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "Množina křivek s lineární interpolací mezi body"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Množina mnohoúhelníků"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
#, fuzzy
#| msgid "Numeric"
msgctxt "numeric types"
msgid "Numeric"
msgstr "Čísla"
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Date and time"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Datum a čas"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "String"
msgctxt "string types"
@ -3023,58 +3023,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Prostorový"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "True nebo false"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
msgid "String"
msgstr "Řetězce"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Nepodařilo se připojit: chybné nastavení."
@ -13468,6 +13464,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je nastaveno na 0"
#~ msgid "String"
#~ msgstr "Řetězce"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Před použitím phpMyAdmina odstraňte adresář „./config“!"

117
po/cy.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: <ardavies@tiscali.co.uk>\n"
"Language-Team: Welsh <cy@li.org>\n"
@ -2945,234 +2945,234 @@ msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crëwch dudalen"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3186,60 +3186,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Cyfrif ffeiliau log"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Terfynwyd llinellau gan"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Methu â chysylltu: gosodiadau annilys"
@ -13450,6 +13444,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Terfynwyd llinellau gan"
#, fuzzy
#~| msgid "Add/Delete columns"
#~ msgid "The remaining columns"

117
po/da.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-29 16:39+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: danish <da@li.org>\n"
@ -2850,236 +2850,236 @@ msgstr "Sti til tema ikke fundet for tema %s!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Tilføj polygon"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Lav et nyt indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3093,60 +3093,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linjestreng"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke forbinde: ugyldige indstillinger."
@ -13737,6 +13731,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert er sat til 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linjestreng"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Fjern \"./config\" folderen før brug af phpMyAdmin!"

117
po/de.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-18 18:32+0200\n"
"Last-Translator: Jan Dittberner <jandd@debian.org>\n"
"Language-Team: none\n"
@ -2817,236 +2817,236 @@ msgstr "Pfad für das Oberflächendesign %s nicht gefunden!"
msgid "Theme"
msgstr "Oberflächendesign"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Polygon hinzufügen"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Neuen Index anlegen"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3060,60 +3060,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Räumlich"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "LineString"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -13780,6 +13774,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ist auf 0 gesetzt"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "LineString"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr ""
#~ "Löschen Sie das \"./config\" Verzeichnis bevor Sie phpMyAdmin benutzen!"

117
po/el.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-22 09:27+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
"Language-Team: greek <el@li.org>\n"
@ -2822,236 +2822,236 @@ msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θ
msgid "Theme"
msgstr "Θέμα"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Προσθήκη πολυγώνου"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Δημιουργία ευρετηρίου"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3065,60 +3065,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Χωρική"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Κείμενο γραμμής"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις."
@ -13829,6 +13823,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Το concurrent_insert έχει οριστεί στο 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Κείμενο γραμμής"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Απομακρύντε το φάκελο «./config» πριν τη χρήση του phpMyAdmin!"

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-12 15:12+0200\n"
"Last-Translator: Robert Readman <robert_readman@hotmail.com>\n"
"Language-Team: english-gb <en_GB@li.org>\n"
@ -2783,236 +2783,236 @@ msgstr "Theme path not found for theme %s!"
msgid "Theme"
msgstr "Theme"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Add a polygon"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Create an index"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3026,60 +3026,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linestring"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Cannot connect: invalid settings."
@ -13493,6 +13487,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert is set to 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linestring"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Remove \"./config\" directory before using phpMyAdmin!"

117
po/es.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-03 13:08+0200\n"
"Last-Translator: Matías Bellone <matiasbellone@gmail.com>\n"
"Language-Team: spanish <es@li.org>\n"
@ -2804,14 +2804,14 @@ msgstr "¡No se encontró la ruta del tema %s!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"Un entero de 1 byte; el rango con signo es de -128 a 127, el rango sin signo "
"es de 0 a 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
@ -2819,7 +2819,7 @@ msgstr ""
"Un entero de 2 bytes; el rango con signo es de -32768 a 32767, el rango sin "
"signo es de 0 a 65535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2827,7 +2827,7 @@ msgstr ""
"Un entero de 3 bytes; el rango con signo es de -8388608 a 8388607, el rango "
"sin signo es de 0 a 16777215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2835,7 +2835,7 @@ msgstr ""
"Un entero de 4 bytes; el rango con signo es de 2147483648 a 2147483647, el "
"rango sin signo es de 0 a 4294967295."
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2843,7 +2843,7 @@ msgstr ""
"En entero de 8 bytes; el rango con signo es de -9223372036854775808 a "
"9223372036854775807, el rango sin signo es de 0 a 18446744073709551615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@ -2852,7 +2852,7 @@ msgstr ""
"(valor predeterminado de 10), el mayor número posible de decimales (D) es 30 "
"(valor predeterminado de 0)"
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2860,7 +2860,7 @@ msgstr ""
"Un número de coma flotante pequeño; los valores posibles son de -3.402823466E"
"+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2870,7 +2870,7 @@ msgstr ""
"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0 y de "
"2.2250738585072014E-308 a 1.7976931348623157E+308"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
@ -2878,7 +2878,7 @@ msgstr ""
"Sinónimo de DOUBLE (excepción: si el modo SQL «REAL_AS_FLOAT» está activo es "
"sinónimo de FLOAT)"
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
@ -2886,7 +2886,7 @@ msgstr ""
"Una máscara de bits (M), almacenando M bits por valor (valor predeterminado "
"de 1, máximo de 64)"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2894,23 +2894,23 @@ msgstr ""
"Sinónimo de TINYINT(1), un valor de cero es considerado falso, cualquier "
"valor distinto de cero es considerado verdadero"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:315 libraries/Types.class.php:719
#, php-format
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 «%1$s» a "
"«%2$s»"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2919,12 +2919,12 @@ msgstr ""
"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:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Una marca temporal, el rango es de «%1$s» a «%2$s»"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2933,7 +2933,7 @@ msgstr ""
"dígitos (2); los valores posibles son de 70 (1970) a 69 (2069) ó de 1901 a "
"2155 y 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2942,7 +2942,7 @@ msgstr ""
"siempre completada a la derecha con espacios hasta la longitud especificada "
"al ser almacenada"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@ -2951,7 +2951,7 @@ msgstr ""
"Una cadena de longitud variable (%s), la longitud máxima está asociada al "
"tamaño máximo de un registro"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2959,7 +2959,7 @@ msgstr ""
"Una columna de texto con una longitud máxima de 255 (2^8 - 1) caracteres, "
"almacenado con un prefijo de 1 byte que indica la longitud del valor en bytes"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2968,7 +2968,7 @@ msgstr ""
"almacenado con un prefijo de 2 bytes que indica la longitud del valor en "
"bytes"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2977,7 +2977,7 @@ msgstr ""
"caracteres, almacenado con un prefijo de 3 bytes que indica la longitud del "
"valor en bytes"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2987,7 +2987,7 @@ msgstr ""
"caracteres, almacenado con un prefijo de 4 bytes que indica la longitud del "
"valor en bytes"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2995,7 +2995,7 @@ msgstr ""
"Similar al tipo CHAR, pero almacena cadenas binarias de bytes en lugar de "
"cadenas de caracteres no binarios"
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -3003,7 +3003,7 @@ msgstr ""
"Similar al tipo VARCHAR, pero almacena cadenas binarias de bytes en lugar de "
"cadenas de caracteres no binarios"
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -3012,7 +3012,7 @@ msgstr ""
"- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que "
"indica la cantidad de bytes en el valor"
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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"
@ -3021,7 +3021,7 @@ msgstr ""
"(2^24 - 1) bytes, almacenado con un prefijo de 3 bytes que indica la "
"longitud del valor"
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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"
@ -3030,7 +3030,7 @@ msgstr ""
"(2^16 - 1) bytes, almacenado con un prefijo de 2 bytes que indica la "
"longitud del valor"
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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"
@ -3039,7 +3039,7 @@ msgstr ""
"4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que "
"indica la longitud del valor"
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -3047,55 +3047,55 @@ msgstr ""
"Una enumeración, elegida de una lista de hasta 65535 valores o el valor "
"especial de error ''"
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr "Un único valor elegido de un conjunto de hasta 64 elementos"
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "Un tipo que puede almacenar una geometría de cualquier tipo"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "Un punto en espacio de dos dimensiones"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "Una curva con interpolación lineal entre puntos"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Un polígono"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Una colección de puntos"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "Una colección de curvas con interpolación lineal entre puntos"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Una colección de polígonos"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "Una colección de objetos geométricos de cualquier tipo"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Both date and time."
msgctxt "date and time types"
msgid "Date and time"
msgstr "Fecha y hora."
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3109,11 +3109,11 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Espacial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "Un entero de 4 bytes, el rango es de -2147483648 a 2147483647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3121,24 +3121,24 @@ msgstr ""
"En entero de 8 bytes, el rango es de -9223372036854775808 a "
"9223372036854775807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
"El número de coma flotante de doble precisión predeterminado del sistema"
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "Verdadero o falso"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un sinónimo de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Almacena indentificadores únicos universales («UUID»)"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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"
@ -3146,7 +3146,7 @@ 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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@ -3154,7 +3154,7 @@ msgstr ""
"Una cadena de longitud variable (0-65535) que utiliza cotejamiento binario "
"para las comparaciones"
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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"
@ -3163,16 +3163,10 @@ msgstr ""
"(2^16 - 1) bytes, almacenado con un prefijo de 4 bytes que indica la "
"longitud del valor"
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "Una enumeración, elegida de una lista de valores definidos"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Cadena de líneas"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "No se estableció la conexión: los parámetros están incorrectos."
@ -13864,6 +13858,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "«concurrent_insert» está definido como 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Cadena de líneas"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "¡Elimine el directorio './config' antes de utilizar phpMyAdmin!"

197
po/et.po
View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-04 21:42+0200\n"
"Last-Translator: LiivaneLord <liivane.lord@mail.ee>\n"
"Language-Team: estonian <et@li.org>\n"
@ -2766,87 +2766,87 @@ msgstr "%s välimuse asukohta ei leitud!"
msgid "Theme"
msgstr "Välimus"
#: libraries/Types.class.php:283
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
#: libraries/Types.class.php:285
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
#: libraries/Types.class.php:287
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
#: libraries/Types.class.php:289
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
#: libraries/Types.class.php:291
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:293
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
#: libraries/Types.class.php:295
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
#: libraries/Types.class.php:297
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2854,21 +2854,21 @@ msgstr ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:313 libraries/Types.class.php:717
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Kuupäev, sobiv ulatus on %1$s kuni %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Kuupäeva ja aja kombinatsioon, sobiv ulatus on %1$s kuni %2$s"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2877,12 +2877,12 @@ msgstr ""
"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest "
"(\"1970-01-01 00:00:00\" UTC)"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Aeg, ulatus on %1$s kuni %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2890,7 +2890,7 @@ msgstr ""
"Neljanumbriline aastaarv (vaikimisi 4) või kahenumbriline (2) formaat. "
"Lubatud väärtused on 70 (1970) kuni 69 (2069) või 1901 kuni 2155 ja 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2898,7 +2898,7 @@ msgstr ""
"Fikseeritud pikkusega (0-255, vaikimisi 1) sõne, mis salvestamisel "
"pikendatakse sobivasse pikkusesse paremal pool asuvate tühikute abil"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@ -2907,7 +2907,7 @@ msgstr ""
"Muutuva pikkusega (%s) sõne. Parim sobiv maksimaalne pikkus on rea "
"maksimaalne suurus"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2915,7 +2915,7 @@ msgstr ""
"TEXT veerg (maksimaalse pikkusega 255 (2^8 - 1) sümbolit) salvestatakse "
"ühebitise eesliitega, mis märgib väärtuse pikkust baitides"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2923,7 +2923,7 @@ msgstr ""
"TEXT veerg (maksimaalse pikkusega 65,535 (2^16 - 1) sümbolit) salvestatakse "
"kahebitise eesliitega, mis märgib väärtuse pikkust baitides"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2931,7 +2931,7 @@ msgstr ""
"TEXT veerg (maksimaalse pikkusega 16,777,215 (2^24 - 1) sümbolit) "
"salvestatakse kolmebitise eesliitega, mis märgib väärtuse pikkust baitides"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2940,7 +2940,7 @@ msgstr ""
"TEXT veerg (maksimaalse pikkusega 4,294,967,295 or 4GiB (2^32 - 1) sümbolit) "
"salvestatakse neljabitise eesliitega, mis märgib väärtuse pikkust baitides"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2948,7 +2948,7 @@ msgstr ""
"Sarnane CHAR tüübile, kuid salvestab binaarse baidi sõned pigem "
"mittebinaarse sümboli sõnedena"
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2956,7 +2956,7 @@ msgstr ""
"Sarnane VARCHAR tüübile, kuid salvestab binaarse baidi sõned pigem "
"mittebinaarse sümboli sõnedena"
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -2964,7 +2964,7 @@ msgstr ""
"BLOB veerg (maksimaalse pikkusega 255 (2^8 - 1) baiti) salvestatakse "
"ühebaidise eesliitega, mis märgib väärtuse pikkust"
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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"
@ -2972,7 +2972,7 @@ msgstr ""
"BLOB veerg (maksimaalse pikkusega 16,777,215 (2^24 - 1) baiti) salvestatakse "
"kolmebaidise eesliitega, mis märgib väärtuse pikkust"
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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"
@ -2980,7 +2980,7 @@ msgstr ""
"BLOB veerg (maksimaalse pikkusega 65,535 (2^16 - 1) baiti) salvestatakse "
"kahebaidise eesliitega, mis märgib väärtuse pikkust"
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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"
@ -2988,7 +2988,7 @@ msgstr ""
"BLOB veerg (maksimaalse pikkusega 4,294,967,295 or 4GiB (2^32 - 1) baiti) "
"salvestatakse neljabaidise eesliitega, mis märgib väärtuse pikkust"
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -2996,55 +2996,55 @@ msgstr ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr "A single value chosen from a set of up to 64 members"
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "Tüüp, mis suudab salvestada mistahes tüüpi geomeetriat"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "Punkt kahemõõtmelises ruumis"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "Punktidevaheline kaar koos sirgjoonega"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Hulktahukas"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Punktide kogum"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "Punktidevaheliste sirgjoontega kaarte kogum"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Hulktahukate kogum"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "Igat tüüpi geomeetriliste objektide kogum"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Loo indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3058,11 +3058,11 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Ruumiline"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "Neljabaidine täisarv ulatusega -2,147,483,648 kuni 2,147,483,647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3070,23 +3070,23 @@ msgstr ""
"Kaheksabaidine täisarv ulatusega -9,223,372,036,854,775,808 kuni "
"9,223,372,036,854,775,807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr "Süsteemi vaikimisi kahekordse täpsusega ujukoma number"
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "Õige või vale"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Stores a Universally Unique Identifier (UUID)"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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"
@ -3094,7 +3094,7 @@ msgstr ""
"Ajatempel, ulatus on '0001-01-01 00:00:00' UTC kuni '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) suudab salvestada mikrosekundeid"
#: libraries/Types.class.php:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@ -3102,7 +3102,7 @@ msgstr ""
"Muutuva pikkusega (0-65,535) sõne, mis kasutab kõikide võrdluste jaoks "
"binaarset kõrvutamist"
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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"
@ -3110,16 +3110,10 @@ msgstr ""
"BLOB veerg (maksimaalse pikkusega 65,535 (2^16 - 1) baiti) salvestatakse "
"neljabaidise eesliitega, mis märgib väärtuse pikkust"
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "Loetelu, mis on valitud määratletud väärtuste nimekirjast"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Rea sõne"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Ei saa ühendust: vigased sätted."
@ -13516,6 +13510,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert väärtuseks on määratud 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Rea sõne"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Enne phpMyAdmini kasutamist kustuta ära \"./config\" kataloog!"

117
po/eu.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-02 12:41+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: basque <eu@li.org>\n"
@ -2905,234 +2905,234 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Zerbitzariaren bertsioa"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Gehitu poligonoa"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Indize berri bat sortu"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3146,60 +3146,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Gutira"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Lerro kateak"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -13507,6 +13501,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Lerro kateak"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/fa.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007@yahoo.com>\n"
"Language-Team: persian <fa@li.org>\n"
@ -2920,233 +2920,233 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "نسخه سرور"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
msgid "A polygon"
msgstr "افزودن ستون جديد"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "ساخت فهرست جديد"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3160,60 +3160,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "جمع كل"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "خطوط منتهي به"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -13294,6 +13288,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "خطوط منتهي به"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/fi.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-02 10:21+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: finnish <fi@li.org>\n"
@ -2799,236 +2799,236 @@ msgstr "Teeman %s polkua ei löydy!"
msgid "Theme"
msgstr "Teema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Lisää monikulmio"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Luo uusi indeksi"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3042,60 +3042,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Lokitiedostojen määrä"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Rivimerkkijono"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset."
@ -14106,6 +14100,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Enim. yhtäaikaisia yhteyksiä"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Rivimerkkijono"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Poista \"./config\"-hakemisto ennen phpMyAdmin-sovelluksen käyttöä!"

117
po/fr.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-03 13:43+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: none\n"
@ -2794,14 +2794,14 @@ msgstr "Chemin non trouvé pour le thème %s !"
msgid "Theme"
msgstr "Thème"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de "
"-128 à 127. Pour les nombres sans signe, c'est de 0 à 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
@ -2809,7 +2809,7 @@ msgstr ""
"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de "
"-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2817,7 +2817,7 @@ msgstr ""
"Un nombre entier de 3 octets. La fourchette des nombres avec signe est de -8 "
"388 608 à 8 388 607. Pour les nombres sans signe, c'est de 0 à 16 777 215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2826,7 +2826,7 @@ msgstr ""
"147 483 648 à 2 147 483 647. Pour les nombres sans signe, c'est de 0 à 4 294 "
"967 295."
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2835,7 +2835,7 @@ msgstr ""
"223 372 036 854 775 808 à 9 223 372 036 854 775 807. Pour les nombres sans "
"signe, c'est de 0 à 18 446 744 073 709 551 615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@ -2844,7 +2844,7 @@ msgstr ""
"65 (10 par défaut), le nombre maximum de décimales (D) est de 30 (0 par "
"défaut)"
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2852,7 +2852,7 @@ msgstr ""
"Un petit nombre en virgule flottante, la fourchette des valeurs est "
"-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2862,7 +2862,7 @@ msgstr ""
"est -1.7976931348623157E+308 à -2.2250738585072014E-308, 0, et "
"2.2250738585072014E-308 à 1.7976931348623157E+308"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
@ -2870,7 +2870,7 @@ msgstr ""
"Synonyme de DOUBLE (exception : dans le mode SQL REAL_AS_FLOAT, c'est un "
"synonyme de FLOAT)"
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
@ -2878,7 +2878,7 @@ msgstr ""
"Une colonne contenant des bits (M), stockant M bits par valeur (1 par "
"défaut, maximum 64)"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2886,21 +2886,21 @@ msgstr ""
"Un synonyme de TINYINT(1), une valeur de zéro signifie faux, une valeur non-"
"zéro signifie vrai"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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
#: libraries/Types.class.php:313 libraries/Types.class.php:717
#, php-format
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
#: libraries/Types.class.php:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Une combinaison date et heure, la fourchette est de «%1$s» à «%2$s»"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2909,12 +2909,12 @@ msgstr ""
"«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
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Une heure, la fourchette est de «%1$s» à «%2$s»"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2922,7 +2922,7 @@ msgstr ""
"Une année à quatre chiffres (4 par défaut) ou à deux chiffres (2), la "
"fourchette est de 70 (1970) à 69 (2069) ou 1901 à 2155 ainsi que 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2930,7 +2930,7 @@ msgstr ""
"Une chaîne de longueur fixe (0-255, 1 par défaut) qui est toujours complétée "
"à droite par des espaces lorsqu'enregistrée"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@ -2939,7 +2939,7 @@ msgstr ""
"Une chaîne de longueur variable (%s), la longueur effective réelle dépend de "
"la taille maximum d'une ligne"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2948,7 +2948,7 @@ msgstr ""
"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
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2957,7 +2957,7 @@ msgstr ""
"stockée avec un préfixe de deux octets indiquant la longueur de la valeur en "
"octets \t"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2966,7 +2966,7 @@ msgstr ""
"stockée avec un préfixe de trois octets indiquant la longueur de la valeur "
"en octets"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2976,7 +2976,7 @@ msgstr ""
"caractères, stockée avec un préfixe de quatre octets indiquant la longueur "
"de la valeur en octets"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2984,7 +2984,7 @@ msgstr ""
"Similaire au type CHAR, mais stocke des chaînes binaires au lieu de chaînes "
"non binaires"
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2992,7 +2992,7 @@ msgstr ""
"Similaire au type VARCHAR, mais stocke des chaînes binaires au lieu de "
"chaînes non binaires"
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -3000,7 +3000,7 @@ 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
#: libraries/Types.class.php:341
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"
@ -3008,7 +3008,7 @@ 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
#: libraries/Types.class.php:343
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"
@ -3016,7 +3016,7 @@ 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
#: libraries/Types.class.php:345
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"
@ -3024,7 +3024,7 @@ 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
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -3032,57 +3032,57 @@ 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
#: libraries/Types.class.php:349
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
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "Un type pouvant stocker une valeur géométrique de tout type"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "Un point dans un espace à deux dimensions"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "Une courbe avec une interpolation linéaire entre les points"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Un polygone"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Une collection de points"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
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
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Une collection de polygones"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "Une collection d'objets de géométrie de tout type"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Both date and time."
msgctxt "date and time types"
msgid "Date and time"
msgstr "À la fois la date et l'heure."
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3096,13 +3096,13 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
"Un nombre entier de 4 octets, avec une fourchette de -2 147 483 648 à 2 147 "
"483 647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3110,24 +3110,24 @@ msgstr ""
"Un nombre entier de 8 octets, avec une fourchette de -9 223 372 036 854 775 "
"808 à 9 223 372 036 854 775 807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
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
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "Vrai ou faux"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un alias pour BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Contient un identificateur universellement unique (UUID)"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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"
@ -3135,7 +3135,7 @@ 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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@ -3143,7 +3143,7 @@ msgstr ""
"Une chaîne de longueur variable (0 - 65 535), utilise un interclassement "
"binaire pour toutes les comparaisons"
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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"
@ -3151,16 +3151,10 @@ 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
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "Une énumération, choisie parmi la liste de valeurs définies"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Ligne"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Connexion impossible: paramètres incorrects."
@ -13743,6 +13737,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Le paramètre concurrent_insert a une valeur de 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Ligne"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr ""
#~ "Veuillez supprimer le répertoire \"./config\" avant d'utiliser "

117
po/gl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-17 16:56+0200\n"
"Last-Translator: Julio Guerra <xullo123@hotmail.com>\n"
"Language-Team: Independant\n"
@ -2761,236 +2761,236 @@ msgstr "Non se atopou o camiño do tema para o tema %s!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Engadir un polígono"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crear un índice novo"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3004,60 +3004,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Columna espacial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Cadea de liñas"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Non se pode conectar: os axustes non son válidos."
@ -13444,6 +13438,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está definido a 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Cadea de liñas"
#~ msgid "Show help button instead of Documentation text"
#~ msgstr "Mostrar o botón de axuda en lugar da documentación"

117
po/he.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-19 14:33+0200\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: hebrew <he@li.org>\n"
@ -2895,234 +2895,234 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "גרסת שרת"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "הוספת מצולע"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "יצירת אינדקס חדש"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3136,60 +3136,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "סה\"כ"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "מחרוזת שורה"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "חיבור נכשל: הגדרות לא תקינות."
@ -13419,6 +13413,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "מחרוזת שורה"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/hi.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: hindi <hi@li.org>\n"
@ -2912,236 +2912,236 @@ msgstr "विषय %s के लिए थीम पथ नहीं मिल
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add column"
msgid "A polygon"
msgstr "नया काँलम जोडें"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "एक नया इन्डेक्स बनाऐं"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3155,60 +3155,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "कुल"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "लाईन समाप्त होता है"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं"
@ -13419,6 +13413,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "अधिकतम वर्तमान कनेक्शन"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "लाईन समाप्त होता है"
#~ msgid "Show help button instead of Documentation text"
#~ msgstr "प्रलेखन पाठ दिखाने के बजाय मदद बटन दिखाएँ"

117
po/hr.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-03 09:52+0100\n"
"Last-Translator: Nikola Vojković <vojka@xnet.hr>\n"
"Language-Team: croatian <hr@li.org>\n"
@ -3020,235 +3020,235 @@ msgstr "Za temu %s nije pronađena putanje tema!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Dodaj %s polja"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Izradi novi indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3262,60 +3262,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Najveći broj datoteka zapisnika"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Redovi završeni s"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Povezivanje nije moguće: neispravna postavka."
@ -14016,6 +14010,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "najv. uzastopnih veza"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Redovi završeni s"
#~ msgid "Show help button"
#~ msgstr "Prikaži gumb za pomoć"

117
po/hu.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-20 00:10+0200\n"
"Last-Translator: Gergely Nagy <gerrrike@yahoo.com>\n"
"Language-Team: hungarian <hu@li.org>\n"
@ -2803,236 +2803,236 @@ msgstr "Nem található a(z) %s téma elérési útja!"
msgid "Theme"
msgstr "Téma"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Sokszög hozzáadása"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Index létrehozása"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3046,60 +3046,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Naplófájlok száma"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Sorok vége"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások."
@ -13659,6 +13653,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Max. egyidejű kapcsolatok száma"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Sorok vége"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Távolítsa el a \"./config\" mappát a phpMyAdmin használata előtt!"

110
po/hy.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-23 10:41+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: none\n"
@ -2698,230 +2698,230 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
msgctxt "string types"
msgid "String"
msgstr ""
@ -2931,58 +2931,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr ""
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
msgid "String"
msgstr ""
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""

117
po/id.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:57+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: indonesian <id@li.org>\n"
@ -2809,236 +2809,236 @@ msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Tambahkan poligon"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Buat indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3052,60 +3052,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Spasial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Segmen garis"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Koneksi gagal: pengaturan invalid."
@ -13131,6 +13125,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Segmen garis"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Hapus folder \"./config\" sebelum menggunakan phpMyAdmin!"

117
po/it.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-07 14:32+0200\n"
"Last-Translator: Rouslan Placella <rouslan@placella.com>\n"
"Language-Team: italian <it@li.org>\n"
@ -2807,236 +2807,236 @@ msgstr "Percorso per il tema non trovato %s!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Aggiungi un poligono"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crea un nuovo indice"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3050,60 +3050,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linestring"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Impossibile connettersi: impostazioni non valide."
@ -13767,6 +13761,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert è impostato a 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linestring"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Rimuovi la cartella \"./config\" prima di utilizzare phpMyAdmin!"

117
po/ja.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-09 12:08+0200\n"
"Last-Translator: Yuichiro Takahashi <yuichiro@pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp@li.org>\n"
@ -2779,18 +2779,18 @@ msgstr "テーマ %s のテーマパスが見つかりません!"
msgid "Theme"
msgstr "テーマ"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr "1 バイト整数、符号付きは -128 から 127、符号なしは 0 から 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr "2 バイト整数、符号付きは -32,768 から 32,767、符号なしは 0 から 65,535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2798,7 +2798,7 @@ msgstr ""
"3 バイト整数、符号付きは -8,388,608 から 8,388,607、符号なしは 0 から "
"16,777,215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2806,7 +2806,7 @@ msgstr ""
"4 バイト整数、符号付きは -2,147,483,648 から 2,147,483,647、符号なしは 0 か"
"ら 4,294,967,295"
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2814,13 +2814,13 @@ msgstr ""
"8 バイト整数、符号付きは -9,223,372,036,854,775,808 から "
"9,223,372,036,854,775,807、符号なしは 0 から 18,446,744,073,709,551,615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2828,7 +2828,7 @@ msgstr ""
"単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、"
"1.175494351E-38 から 3.402823466E+38"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2838,39 +2838,39 @@ msgstr ""
"-2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E"
"+308"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr "TINYINT(1) の別名、0 が FALSE と見なされ、0 以外が TRUE と見なされます"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, php-format
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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "日時 (日付と時刻)、有効範囲は %1$s から %2$s"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2878,18 +2878,18 @@ msgstr ""
"タイムスタンプ、範囲は 1970-01-01 00:00:01 UTC から 2038-01-09 03:14:07 UTC "
"で、1970-01-01 00:00:00 UTC からの経過秒数を示しています"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "時刻、範囲は %1$s から %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2897,7 +2897,7 @@ msgstr ""
"固定長文字列 (長さは 0-255、デフォルトは 1)、満たない分は右側が空白で埋められ"
"ます"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@ -2905,7 +2905,7 @@ msgid ""
msgstr ""
"可変長文字列 (長さは %s)、長さの有効上限は行の最大サイズの制約を受けます"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2913,7 +2913,7 @@ msgstr ""
"TEXT カラム、最大長 255 (2^8 - 1)、この長さは単位がバイトで、1 バイト値で表現"
"できる範囲です"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2921,7 +2921,7 @@ msgstr ""
"TEXT カラム、最大長 65,535 (2^16 - 1)、この長さは単位がバイトで、2 バイト値で"
"表現できる範囲です"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2929,7 +2929,7 @@ msgstr ""
"TEXT カラム、最大長 16,777,215 (2^24 - 1)、この長さは単位がバイトで、3 バイト"
"値で表現できる範囲です"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2938,19 +2938,19 @@ msgstr ""
"TEXT カラム、最大長 4,294,967,295 または 4GiB (2^32 - 1)、この長さは単位がバ"
"イトで、4 バイト値で表現できる範囲です"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -2958,7 +2958,7 @@ msgstr ""
"BLOB カラム、最大 255 (2^8 - 1) バイト、この長さは 1 バイト値で表現できる範囲"
"です"
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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"
@ -2966,7 +2966,7 @@ msgstr ""
"BLOB カラム、最大 16,777,215 (2^24 - 1) バイト、この長さは 3 バイト値で表現で"
"きる範囲です"
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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"
@ -2974,7 +2974,7 @@ msgstr ""
"BLOB カラム、最大 65,535 (2^16 - 1) バイト、この長さは 2 バイト値で表現できる"
"範囲です"
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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"
@ -2982,61 +2982,61 @@ msgstr ""
"BLOB カラム、最大 4,294,967,295 バイトまたは 4GiB (2^32 - 1)、この長さは 4 バ"
"イト値で表現できる範囲です"
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "ポリゴン"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "座標の集合"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "ポリゴンの集合"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "インデックスを作成する"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3050,11 +3050,11 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "空間"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "4 バイト整数、範囲は -2,147,483,648 から 2,147,483,647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3062,50 +3062,44 @@ msgstr ""
"8 バイト整数、範囲は -9,223,372,036,854,775,808 から "
"9,223,372,036,854,775,807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "TRUE または FALSE"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "線分"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "接続できません。設定が無効です。"
@ -13543,6 +13537,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert は 0 に設定されています。"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "線分"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr ""
#~ "phpMyAdmin を使用し始める前に、「./config」ディレクトリを削除してくださ"

117
po/ka.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-29 16:53+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: georgian <ka@li.org>\n"
@ -2965,232 +2965,232 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Create relation"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "ახალი ინდექსის შექმნა"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3204,60 +3204,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Log file count"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Lines terminated by"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია."
@ -13922,6 +13916,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "max. concurrent connections"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Lines terminated by"
#, fuzzy
#~| msgid "CHAR textarea columns"
#~ msgid "The remaining columns"

117
po/kk.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-03 16:49+0200\n"
"Last-Translator: Berikbol Zharylkassyn <berikbolbeko@gmail.com>\n"
"Language-Team: none\n"
@ -2719,230 +2719,230 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -2954,60 +2954,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr ""
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Сызық"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -12593,6 +12587,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Паралельдіірістірмелерді анықтау"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Сызық"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr ""
#~ "PhpMyAdmin-ды қолданбастан бұрын, алдымен \"./config\" папкасын жойыңыз!"

117
po/ko.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-02-17 10:54+0200\n"
"Last-Translator: minsung kang <manyfun7@gmail.com>\n"
"Language-Team: korean <ko@li.org>\n"
@ -2788,234 +2788,234 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "서버 버전"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "폴리곤 추가"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "새 인덱스 만들기"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3029,60 +3029,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "전체 사용량"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "줄(열) 구분자"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "연결할 수 없습니다: 잘못된 설정."
@ -13201,6 +13195,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "줄(열) 구분자"
#, fuzzy
#~| msgid "Add/Delete columns"
#~ msgid "The remaining columns"

117
po/lt.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-03 12:52+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: lithuanian <lt@li.org>\n"
@ -2827,236 +2827,236 @@ msgstr "Kelias iki temos nerastas temai %s!"
msgid "Theme"
msgstr "Išvaizda"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Pridėti daugiakampį"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Sukurti naują indeksą"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3068,60 +3068,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr ""
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Eilutės baigiasi"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Neįmanoma prisijungti: neteisingi duomenys."
@ -13398,6 +13392,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "MyISAM concurrent įterpimai"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Eilutės baigiasi"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Pašalinkite „./config“ katalogą prieš naudojant phpMyAdmin!"

117
po/lv.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv@li.org>\n"
@ -2966,234 +2966,234 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Servera versija"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Pievienot %s lauku(s)"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Izveidot jaunu indeksu"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3207,60 +3207,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Kopā"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Rindas atdalītas ar"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Nevar pieslēgties: kļūda konfigurācijā."
@ -13593,6 +13587,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Rindas atdalītas ar"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/mk.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: <sjanevski@gmail.com>\n"
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
@ -2967,234 +2967,234 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Верзија на серверот"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Додади %s полиња"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Креирај нов клуч"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3208,60 +3208,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Вкупно"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Линиите се завршуваат со"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Не може да се поврзам: лоши подесувања."
@ -13690,6 +13684,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Линиите се завршуваат со"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

110
po/ml.po
View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2011-09-27 08:42+0200\n"
"Last-Translator: <sadik.khalid@gmail.com>\n"
"Language-Team: Malayalam <ml@li.org>\n"
@ -2703,230 +2703,230 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
msgctxt "string types"
msgid "String"
msgstr ""
@ -2936,58 +2936,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr ""
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
msgid "String"
msgstr ""
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""

117
po/mn.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn@li.org>\n"
@ -2990,236 +2990,236 @@ msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A time, range is %1$s to %2$s"
msgstr "Ерөнхий хамаатай онцлог"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "%s талбар(ууд) нэмэх"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Шинэ индекс үүсгэх"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3233,60 +3233,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Нийт"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Шугамыг төгсгөгч"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Холбогдсонгүй: тохируулга буруу."
@ -13748,6 +13742,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "ХИ. давхацсан холболтууд"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Шугамыг төгсгөгч"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/ms.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms@li.org>\n"
@ -2936,233 +2936,233 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Versi Pelayan"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
msgid "A polygon"
msgstr "Tambah medan baru"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Cipta indeks baru"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3176,60 +3176,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Jumlah"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Baris ditamatkan oleh"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -13359,6 +13353,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Baris ditamatkan oleh"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/nb.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-08 05:59+0200\n"
"Last-Translator: Asle Ommundsen <aommundsen@gmail.com>\n"
"Language-Team: norwegian <no@li.org>\n"
@ -2861,236 +2861,236 @@ msgstr "Stilsti ble ikke funnet for stilen %s!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Legg til polygon"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Lag en ny indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3104,60 +3104,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Antall loggfiler"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linjestreng"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke koble til: ugyldige innstillinger."
@ -13983,6 +13977,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "maks. samtidige tilkoblinger"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linjestreng"
#, fuzzy
#~| msgid "CHAR textarea columns"
#~ msgid "The remaining columns"

117
po/nl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-23 16:55+0200\n"
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
"Language-Team: dutch <nl@li.org>\n"
@ -2808,236 +2808,236 @@ msgstr "Themapad niet gevonden voor thema %s!"
msgid "Theme"
msgstr "Thema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Voeg een veelhoek toe"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Creëer een nieuwe index"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3051,60 +3051,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Ruimtelijk"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Lijnstuk definitie"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Kan niet verbinden: ongeldige instellingen."
@ -13738,6 +13732,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert is ingesteld op 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Lijnstuk definitie"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Verwijder de \"./config\" folder alvorens phpMyAdmin te gebruiken!"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2698,230 +2698,230 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, possible-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:315 libraries/Types.class.php:719
#, possible-php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, possible-php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, possible-php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
msgctxt "string types"
msgid "String"
msgstr ""
@ -2931,58 +2931,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr ""
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
msgid "String"
msgstr ""
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""

117
po/pl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-21 16:04+0200\n"
"Last-Translator: Marcin Kozioł <lord_dark@wp.pl>\n"
"Language-Team: iMutrix\n"
@ -2799,234 +2799,234 @@ msgstr "Nie znaleziono ścieżki do motywu %s!"
msgid "Theme"
msgstr "Motyw"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Dodaj wielokąt"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3040,60 +3040,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Przestrzenny"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linia ciągu"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Nie udało się nawiązać połączenia: błędne ustawienia."
@ -13617,6 +13611,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert jest ustawiony na 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linia ciągu"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Usuń katalog \"./Config\" przed użyciem phpMyAdmin!"

117
po/pt.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: portuguese <pt@li.org>\n"
@ -2858,236 +2858,236 @@ msgstr "Encontrado caminho inválido para o tema %s!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Adicionar um polígono"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Criar um novo índice"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3101,60 +3101,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Total"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Segmento de Reta "
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Não é possível realizar a ligação: configurações inválidas."
@ -13462,6 +13456,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está definida com o valor 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Segmento de Reta "
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Apague a pasta \"./config\" antes de utilizar o phpMyAdmin!"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-25 19:23+0200\n"
"Last-Translator: Lucas David <lucasolivdavid@gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
@ -2811,236 +2811,236 @@ msgstr "Encontrado caminho inválido para o tema %s!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Adicionar polígono"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Criar um novo índice"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3054,60 +3054,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Espacial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linha"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Não pode conectar: configurações inválidas."
@ -13851,6 +13845,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está com valor 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linha"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Remova o diretório \"./config\" antes de utilizar o phpMyAdmin!"

117
po/ro.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-24 14:18+0200\n"
"Last-Translator: Alex Marin <alex.ukf@gmail.com>\n"
"Language-Team: romanian <ro@li.org>\n"
@ -2913,235 +2913,235 @@ msgstr "Calea temei nu a fost găsită pentru tema %s!"
msgid "Theme"
msgstr "Temă"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Adaugă %s cîmp(uri)"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Creează un nou index"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3155,60 +3155,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Număr de fișiere-jurnal"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Linii terminate de"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Conexiune esuata: setari invalide."
@ -13927,6 +13921,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert este setat la 0"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Linii terminate de"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Stergeți directorul \"./config\" înainte de a folosi phpMyAdmin!"

117
po/ru.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-03 21:52+0200\n"
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
"Language-Team: russian <ru@li.org>\n"
@ -2796,14 +2796,14 @@ msgstr "Путь к файлам темы %s не найден!"
msgid "Theme"
msgstr "Тема"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"Одно-байтовое целое число, диапазон чисел со знаком от -128 до 127, диапазон "
"чисел без знака от 0 до 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
@ -2811,7 +2811,7 @@ msgstr ""
"Двух-байтовое целое число, диапазон чисел со знаком от -32,768 до 32,767, "
"диапазон чисел без знака от 0 до 65,535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2819,7 +2819,7 @@ msgstr ""
"Трех-байтовое целое число, диапазон чисел со знаком от -8,388,608 до "
"8,388,607, диапазон чисел без знака от 0 до 16,777,215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2827,7 +2827,7 @@ msgstr ""
"Четырех-байтовое целое число, диапазон чисел со знаком от -2,147,483,648 до "
"2,147,483,647, диапазон чисел без знака от 0 до 4,294,967,295."
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2836,7 +2836,7 @@ msgstr ""
"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без "
"знака от 0 до 18,446,744,073,709,551,615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@ -2845,7 +2845,7 @@ msgstr ""
"должно превышать 65 (по умолчанию 10), максимальное количество десятичных "
"(D) не должно превышать 30 (по умолчанию 0)"
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2853,7 +2853,7 @@ msgstr ""
"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до "
"-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2863,7 +2863,7 @@ msgstr ""
"-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от "
"2.2250738585072014E-308 до 1.7976931348623157E+308"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
@ -2871,14 +2871,14 @@ msgstr ""
"Синоним для DOUBLE (исключение: в режиме REAL_AS_FLOAT SQL будет синоним для "
"FLOAT)"
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
"Тип поля-бит (M), сохранит M бит для значения (по умолчанию 1, максимум 64)"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2886,22 +2886,22 @@ msgstr ""
"Синоним для TINYINT(1), значение нуля предполагает false, ненулевые значения "
"предполагают true"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Псевдоним для BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:313 libraries/Types.class.php:717
#, php-format
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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
"Совмещение даты и времени, поддерживаемый диапазон от \"%1$s\" до \"%2$s\""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2910,12 +2910,12 @@ msgstr ""
"03:14:07\" UTC, содержит количество секунд прошедших со времени "
"(\"1970-01-01 00:00:00\" UTC)"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Время, диапазон от %1$s до %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2923,7 +2923,7 @@ msgstr ""
"Год в четырехзначном (4, по умолчанию) или двухзначном (2) формате, "
"допустимые значения от 70 (1970) до 69 (2069) или от 1901 до 2155 и 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2931,7 +2931,7 @@ msgstr ""
"Строка фиксированной длинны (0-255, по умолчанию 1), при хранении всегда "
"дополняется пробелами в конце строки до заданного размера"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@ -2940,7 +2940,7 @@ msgstr ""
"Строка переменной длинны (%s), эффективная максимальная длинна зависит от "
"максимального размера строки"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2948,7 +2948,7 @@ msgstr ""
"Столбец типа TEXT с максимальной длинной 255 (2^8 - 1) символов, сохраняется "
"с одно-байтовым префиксом указывающим длину значения в байтах"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2956,7 +2956,7 @@ msgstr ""
"Столбец типа TEXT с максимально длинной 65,535 (2^16 - 1) символов, "
"сохраняется с двух-байтовым префиксом указывающим длину значения в байтах"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2964,7 +2964,7 @@ msgstr ""
"Столбец типа TEXT с максимальной длинной 16,777,215 (2^24 - 1) символов, "
"сохраняется с трех-байтовым префиксом указывающим длину значения в байтах"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2974,7 +2974,7 @@ msgstr ""
"символов, сохраняется с четырех-байтовым префиксом указывающим длину "
"значения в байтах"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2982,7 +2982,7 @@ msgstr ""
"Аналогичен типу CHAR, но предназначен для хранения бинарных байт-строк, "
"вместо не бинарных символьных строк"
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2990,7 +2990,7 @@ msgstr ""
"Аналогичен типу VARCHAR, но предназначен для хранения бинарных байт-строк, "
"вместо не бинарных символьных строк"
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -2998,7 +2998,7 @@ msgstr ""
"Столбец типа BLOB с максимальной длинной 255 (2^8 - 1) байт, сохраняется с "
"одно-байтовым префиксом указывающим длину значения"
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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"
@ -3006,7 +3006,7 @@ msgstr ""
"Столбец типа BLOB с максимальной длинной 16,777,215 (2^24 - 1) байт, "
"сохраняется с трех-байтовым префиксом указывающим длину значения"
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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"
@ -3014,7 +3014,7 @@ msgstr ""
"Столбец типа BLOB с максимальной длинной 65,535 (2^16 - 1) байт, сохраняется "
"с двух-байтовым префиксом указывающим длину значения"
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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"
@ -3022,7 +3022,7 @@ msgstr ""
"Столбец типа BLOB с максимальной длинной 4,294,967,295 или 4GiB (2^32 - 1) "
"байт, сохраняется с четырех-байтовым префиксом указывающим длину значения"
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -3030,55 +3030,55 @@ msgstr ""
"Перечисляемый тип данных, который может содержать максимум 65,535 различных "
"величин или специальную величину ошибки ''"
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr "Единственное значение выбираемое из набора не более 64 членов"
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "Тип для хранения любого вида геометрических данных"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "Точка в двухмерном пространстве"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "Кривая с линейной интерполяцией между точек"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Многоугольник"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Набор точек"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "Набор кривых с линейной интерполяцией между точек"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Набор многоугольников"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "Набор геометрических объектов любого типа"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Создать индекс"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3092,12 +3092,12 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Пространственный"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
"Четырех-байтовое целое число, диапазон от -2,147,483,648 до 2,147,483,647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3105,24 +3105,24 @@ msgstr ""
"Восьми-байтовое целое число, диапазон от -9,223,372,036,854,775,808 до "
"9,223,372,036,854,775,807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
"Изначальное системное значение двойной точности числа с плавающей точкой"
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "True или false"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Псевдоним для BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Сохраняет Уникальный Универсальный Идентификатор (UUID)"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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"
@ -3130,7 +3130,7 @@ msgstr ""
"Временная метка, диапазон от '0001-01-01 00:00:00' UTC до '9999-12-31 "
"23:59:59' UTC; TIMESTAMP(6) может хранить микросекунды"
#: libraries/Types.class.php:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@ -3138,7 +3138,7 @@ msgstr ""
"Строка переменной длинны (0-65,535), использует для всех сравнений бинарное "
"сопоставление"
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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"
@ -3146,16 +3146,10 @@ msgstr ""
"Тип поля BLOB с максимальной длинной 65,535 (2^16 - 1) байт, сохраняется с "
"четырех-байтовым префиксом указывающим длину значения"
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "Перечисление, выбор из списка определенных значений"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Линия"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Соединение невозможно! Неверные настройки."
@ -13754,6 +13748,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert установлен в 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Линия"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Перед использованием phpMyAdmin удалите каталог \"./config\"!"

117
po/si.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-07 10:57+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
"Language-Team: sinhala <si@li.org>\n"
@ -2743,19 +2743,19 @@ msgstr "%s තේමාව සඳහා තේමාව ඇති තැන හ
msgid "Theme"
msgstr "තේමාව"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr "තනි බයිටයේ නිඛිලයකි, සලකුණ සහිත පරාසය -128 සිට 127, සලකුණ රහිත පරාසය 0 සිට 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
"ද්වී බයිට නිඛිලයකි, සලකුණ සහිත පරාසය -32,768 සිට 32,767, සලකුණ රහිත පරාසය 0 සිට 65,535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2763,7 +2763,7 @@ msgstr ""
"ත්‍රිත්ව බයිට නිඛිලයකි, සලකුණ සහිත පරාසය -8,388,608 සිට 8,388,607, සලකුණ රහිත පරාසය 0 සිට "
"16,777,215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2771,7 +2771,7 @@ msgstr ""
"සිවු බයිට නිඛිලයකි, සලකුණ සහිත පරාසය -2,147,483,648 සිට 2,147,483,647, සලකුණ රහිත පරාසය "
"0 සිට 4,294,967,295."
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2779,7 +2779,7 @@ msgstr ""
"අෂ්ට බයිට නිඛිලයකි, සලකුණ සහිත පරාසය -9,223,372,036,854,775,808 සිට "
"9,223,372,036,854,775,807, සලකුණ රහිත පරාසය 0 සිට 18,446,744,073,709,551,615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@ -2787,7 +2787,7 @@ msgstr ""
"ස්ථිර ලෙස දැක්වූ දශම සංඛ්‍යාවකි (M, D) - උපරිම පූර්නස්ථාන ගණන (M) 65 කි (පෙරනිමි 10), උපරිම "
"දශමස්ථාන (D) ගණන 30 කි (පෙරනිමි 0)"
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2795,7 +2795,7 @@ msgstr ""
"කුඩා දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -3.402823466E+38 සිට -1.175494351E-38, "
"0, හා 1.175494351E-38 සිට 3.402823466E+38"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2805,7 +2805,7 @@ msgstr ""
"-2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට "
"1.7976931348623157E+308"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
@ -2813,7 +2813,7 @@ msgstr ""
"DOUBLE සඳහා සමානාර්ථ පදයකි (REAL_AS_FLOAT SQL ප්‍රකාරයේදී හැර, එහිදී එය FLOAT සඳහා "
"සමානාර්ථ පදයකි)"
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
@ -2821,7 +2821,7 @@ msgstr ""
"බිටු (M) ක්ෂේත්‍ර වර්ගයකි, අගයක් සඳහා බිටු M ගණනක් ගබඩා කරයි (පෙරනිමි බිටු ගණන 1 කි, උපරිම 64 "
"කි)"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2829,21 +2829,21 @@ msgstr ""
"TINYINT(1) සඳහා සමානාර්ථ පදයකි, ශුන්‍ය අගය false ලෙස සැලකෙන අතර ශුන්‍ය නොවන අගයන් "
"true ලෙස සැලකේ"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE සඳහා අන්වර්ථ නාමයකි"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:313 libraries/Types.class.php:717
#, php-format
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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "දිනය සහ වේලාවේ සංයුක්තයකි, සහයැති පරාසය %1$s සිට %2$s"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2851,12 +2851,12 @@ msgstr ""
"කාල මුද්‍රාවකි, පරාසය 1970-01-01 00:00:01 UTC සිට 2038-01-09 03:14:07 UTC, "
"කාලරම්භයේ (1970-01-01 00:00:00 UTC) සිට ගත වූ තත්පර ගණන ලෙස ගබඩා කර ඇත"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "වේලාවකි, පරාසය %1$s සිට %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2864,7 +2864,7 @@ msgstr ""
"අංක හතරකින් (4, පෙරනිමි) හෝ අංක දෙකකින් (2) දැක්වෙන වර්ෂයකි, ගත හැකි අගයන් වන්නේ 70 "
"(1970) සිට 69 (2069) හෝ 1901 සිට 2155 සහ 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2872,14 +2872,14 @@ msgstr ""
"ස්ථිර-දිගැති පෙළකි (0-255, පෙරනිමි 1), සෑම විටම නියමිත දිග ලැබෙන තුරු දකුණු පසින් හිස් අවකාශ එක් "
"කෙරේ"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr "විචල්‍ය-දිගැති පෙළකි (%s), පෙළෙහි උපරිම දිග, පේළියේ උපරිම ප්‍රමාණය මත තීරණය වේ"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2887,7 +2887,7 @@ msgstr ""
"සලකුණු 255 (2^8 - 1) ක උපරිම දිගක් සහිත පෙළ තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග සඳහන් "
"කෙරෙන එක් බයිටයක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2895,7 +2895,7 @@ msgstr ""
"සලකුණු 65,535 (2^16 - 1) ක උපරිම දිගක් සහිත පෙළ තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග සඳහන් "
"කෙරෙන බයිට දෙකක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2903,7 +2903,7 @@ msgstr ""
"සලකුණු 16,777,215 (2^24 - 1) ක උපරිම දිගක් සහිත පෙළ තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග "
"සඳහන් කෙරෙන බයිට තුනක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2912,19 +2912,19 @@ msgstr ""
"සලකුණු 4,294,967,295 නැතිනම් 4GiB (2^32 - 1) ක උපරිම දිගක් සහිත පෙළ තීරුවකි, ඉදිරියෙන් "
"යෙදු, අන්තර්ගතයේ දිග සඳහන් කෙරෙන බයිට හතරක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr "CHAR වර්ගයට සමාන මුත් ද්වීමය නොවන සලකුණු පෙළක් වෙනුවට ද්වීමය බයිට පෙළක් ගබඩා කරයි"
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr "VARCHAR වර්ගයට සමාන මුත් ද්වීමය නොවන සලකුණු පෙළක් වෙනුවට ද්වීමය බයිට පෙළක් ගබඩා කරයි"
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -2932,7 +2932,7 @@ msgstr ""
"බයිට 255(2^8 - 1) ක උපරිම දිගක් සහිත බ්ලොබ් තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග සඳහන් "
"කෙරෙන එක් බයිටයක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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"
@ -2940,7 +2940,7 @@ msgstr ""
"බයිට 16,777,215 (2^24 - 1) ක උපරිම දිගක් සහිත බ්ලොබ් තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග "
"සඳහන් කෙරෙන බයිට තුනක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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"
@ -2948,7 +2948,7 @@ msgstr ""
"බයිට 65,535 (2^16 - 1) ක උපරිම දිගක් සහිත බ්ලොබ් තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග සඳහන් "
"කෙරෙන බයිට දෙකක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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"
@ -2956,7 +2956,7 @@ msgstr ""
"බයිට 4,294,967,295 නැතිනම් 4GiB (2^32 - 1) ක උපරිම දිගක් සහිත බ්ලොබ් තීරුවකි, ඉදිරියෙන් "
"යෙදු, අන්තර්ගතයේ දිග සඳහන් කෙරෙන බයිට හතරක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -2964,55 +2964,55 @@ msgstr ""
"අගයන් 65535 ක් දක්වා ඇතුලත් කල හැකි ලැයිස්තුවකින් තෝරාගන්නා අගයක් හෝ විශේෂ දෝෂ අගය වන '' "
"හෝ වේ"
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr "අගයන් 64 ක් දක්වා අඩංගු විය හැකි කුලකයකින් තෝරාගන්නා අගයකි"
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "ඕනෑම වර්ගයක ජ්‍යාමිතියක් ගබඩා කල හැකි වර්ගයකි"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "ද්වීමාන අවකාශයේ ලක්ෂ්‍යයකි"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "ලක්ෂ්‍ය අතර සරල රේඛා අඩංගු වක්‍රයකි"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "බහු අස්‍රයකි"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "ලක්ෂ්‍ය එකතුවකි"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "ලක්ෂ්‍ය අතර සරල රේඛා අඩංගු වක්‍ර එකතුවකි"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "බහු අස්‍ර එකතුවකි"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "ඕනෑම වර්ගයක ජ්‍යාමිතීන් එකතුවකි"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "නව සූචියක් සාදන්න"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3026,34 +3026,34 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "ජ්‍යාමිතික"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "සිවු බයිට නිඛිලයකි, පරාසය -2,147,483,648 සිට 2,147,483,647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
"අෂ්ට බයිට නිඛිලයකි, පරාසය -9,223,372,036,854,775,808 සිට 9,223,372,036,854,775,807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr "පද්ධතියේ පෙරනිමි ද්වී-නියත දශම සංඛ්‍යාවකි"
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "සත්‍ය හෝ අසත්‍ය"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE සඳහා අන්වර්ථ නාමයකි"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "විශ්වීය අනන්‍ය හැඳුනුමක් (UUID) ගබඩා කරයි"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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"
@ -3061,13 +3061,13 @@ msgstr ""
"කාල මුද්‍රාවකි, පරාසය '0001-01-01 00:00:00' UTC සිට '9999-12-31 23:59:59' UTC; "
"TIMESTAMP(6) හට මයික්‍රෝ තත්පර ගබඩා කල හැක"
#: libraries/Types.class.php:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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"
@ -3075,16 +3075,10 @@ msgstr ""
"බයිට 65,535 (2^16 - 1) ක උපරිම දිගක් සහිත බ්ලොබ් තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග සඳහන් "
"කෙරෙන බයිට හතරක් සමඟ ගබඩා කෙරේ"
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "අර්ථදක්වන ලද අගයන් අඩංගු ලැයිස්තුවකින් තෝරාගන්නා අගයකි"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "රේඛාව"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි."
@ -13040,6 +13034,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "රේඛාව"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "phpMyAdmin භාවිතයට පෙර \"./config\" ඩිරෙක්ටරිය ඉවත් කරන්න!"

117
po/sk.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-14 14:57+0200\n"
"Last-Translator: Roland Kosicexx <info@world-evolution.tk>\n"
"Language-Team: slovak <sk@li.org>\n"
@ -2801,236 +2801,236 @@ msgstr "Nebola nájdená platná cesta ku vzhľadu %s!"
msgid "Theme"
msgstr "Vzhľad"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Pridať polygón"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Vytvoriť nový index"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3044,60 +3044,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Celkom"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linka"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Nepodarilo sa pripojiť: chybné nastavenia."
@ -13507,6 +13501,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je nastavené na 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linka"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Pred použitím phpMyAdmina odstraňte adresár \"./config\"!"

117
po/sl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-03 23:49+0200\n"
"Last-Translator: Domen <dbc334@gmail.com>\n"
"Language-Team: slovenian <sl@li.org>\n"
@ -2787,14 +2787,14 @@ msgstr "Pot teme ni bila najdena za temo %s!"
msgid "Theme"
msgstr "Motiv"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"1-bitno celo število; predznačen razpon je -128 do 127, nepredznačen razpon "
"pa 0 do 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
@ -2802,7 +2802,7 @@ msgstr ""
"2-bitno celo število; predznačen razpon je -32.768 do 32.767, nepredznačen "
"razpon pa 0 do 65.535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2810,7 +2810,7 @@ msgstr ""
"3-bitno celo število; predznačen razpon je -8.388.608 do 8.388.607, "
"nepredznačen razpon pa 0 do 16.777.215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2818,7 +2818,7 @@ msgstr ""
"4-bitno celo število; predznačen razpon je -2.147.483.648 do 2.147.483.647, "
"nepredznačen razpon pa 0 do 4.294.967.295."
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2827,7 +2827,7 @@ msgstr ""
"9.223.372.036.854.775.807, nepredznačen razpon pa 0 do "
"18.446.744.073.709.551.615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@ -2835,7 +2835,7 @@ msgstr ""
"Število s fiksno vejico (M, D) največje število števk (M) je 65 (privzeto "
"10), največje število decimalnih mest (D) je 30 (privzeto 0)"
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2843,7 +2843,7 @@ msgstr ""
"Majhno število z decimalno vejico; dovoljene so vrednosti od -3,402823466E"
"+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do 3,402823466E+38"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2853,7 +2853,7 @@ msgstr ""
"-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od "
"2,2250738585072014E-308 do 1,7976931348623157E+308"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
@ -2861,7 +2861,7 @@ msgstr ""
"Sopomenka za DOUBLE (izjema: v načinu SQL REAL_AS_FLOAT je sopomenka za "
"FLOAT)"
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
@ -2869,7 +2869,7 @@ msgstr ""
"Bitna vrsta polja (M), ki shrani M bitov na vrednost (privzeto je 1, največ "
"je 64)"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2877,21 +2877,21 @@ msgstr ""
"Sopomenka za TINYINT(1); ničelna vrednost se obravnava kot ni res, neničelne "
"vrednosti se obravnavajo kot res"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Datum; podprt je razpon od %1$s do %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Kombinacija datuma in časa; podprt je razpon od %1$s do %2$s"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2899,12 +2899,12 @@ msgstr ""
"Časovni žig; razpon je od 1970-01-01 00:00:01 UTC do 2038-01-09 03:14:07 "
"UTC, shranjeno kot število sekund od dobe (1970-01-01 00:00:00 UTC)"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Čas; razpon je od %1$s do %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2912,7 +2912,7 @@ msgstr ""
"Leto v obliki s štirimi (4, privzeto) ali dvema (2) števkama; dovoljene so "
"vrednosti od 70 (1970) do 69 (2069) ali od 1901 do 2155 in 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2920,7 +2920,7 @@ msgstr ""
"Niz stalne dolžine (0255, privzeto 1), ki je ob shranjevanju vedno z desne "
"zapolnjen s presledki do določene dolžine"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@ -2929,7 +2929,7 @@ msgstr ""
"Niz spremenljive dolžine (%s); učinkujoča največja dolžina je odvisna od "
"največje dolžine stolpca"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2937,7 +2937,7 @@ msgstr ""
"Stolpec TEXT, dolg največ 255 (2^8 - 1) znakov, shranjen z enobajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2945,7 +2945,7 @@ msgstr ""
"Stolpec TEXT, dolg največ 65.535 (2^16 - 1) znakov, shranjen z dvobajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2953,7 +2953,7 @@ msgstr ""
"Stolpec TEXT, dolg največ 16.777.215 (2^24 - 1) znakov, shranjen s tribajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2962,7 +2962,7 @@ msgstr ""
"Stolpec TEXT, dolg največ 4.294.967.295 ali 4 GiB (2^32 - 1) znakov, "
"shranjen s štiribajtno predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2970,7 +2970,7 @@ msgstr ""
"Podobno vrsti CHAR, vendar shranjuje dvojiške nize bajtov namesto "
"nedvojiških nizov znakov"
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2978,7 +2978,7 @@ msgstr ""
"Podobno vrsti VARCHAR, vendar shranjuje dvojiške nize bajtov namesto "
"nedvojiških nizov znakov"
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -2986,7 +2986,7 @@ msgstr ""
"Stolpec BLOB, dolg največ 255 (2^8 - 1) znakov, shranjen z enobajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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"
@ -2994,7 +2994,7 @@ msgstr ""
"Stolpec BLOB, dolg največ 16.777.215 (2^24 - 1) znakov, shranjen s tribajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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"
@ -3002,7 +3002,7 @@ msgstr ""
"Stolpec BLOB, dolg največ 65.535 (2^16 - 1) znakov, shranjen z dvobajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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"
@ -3010,7 +3010,7 @@ msgstr ""
"Stolpec BLOB, dolg največ 4.294.967.295 ali 4 GiB (2^32 - 1) znakov, "
"shranjen s štiribajtno predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -3018,55 +3018,55 @@ msgstr ""
"Naštevanje, izbrano s seznama do 65.535 vrednosti ali posebne vrednosti "
"napake ''"
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr "Ena vrednost, izbrana iz množice z največ 64 člani"
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "Vrsta, ki lahko shrani katero koli geometrijsko vrsto"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "Točka v dvodimenzionalnem prostoru"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "Krivulja z linearno interpolacijo med točkami"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Večkotnik"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Zbirka točk"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "Zbirka krivulj z linearno interpolacijo med točkami"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Zbirka večkotnikov"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "Zbirka geometrijskih objektov katere koli vrste"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Ustvari indeks"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3080,11 +3080,11 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Prostorsko"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "4-bitno celo število; razpon je od -2.147.483.648 do 2.147.483.647"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3092,25 +3092,25 @@ msgstr ""
"8-bitno celo število; razpon je od -9.223.372.036.854.775.808 do "
"9.223.372.036.854.775.807"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr "Sistemsko privzeto število z decimalno vejico z natančnostjo double"
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "Res ali ni res"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Vzdevek za BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
"Shrani vsesplošno edinstven označevalnik (Universally Unique Identifier, "
"UUID)"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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"
@ -3118,7 +3118,7 @@ msgstr ""
"Časovni žig; razpon je od '0001-01-01 00:00:00' UTC do '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) lahko shrani mikrosekunde"
#: libraries/Types.class.php:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@ -3126,7 +3126,7 @@ msgstr ""
"Niz spremenljive dolžine (065.535); uporablja dvojiško zbirko za vse "
"primerjave"
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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"
@ -3134,16 +3134,10 @@ msgstr ""
"Stolpec BLOB, dolg največ 65.535 (2^16 - 1) znakov, shranjen s štiribajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "Naštevanje, izbrano s seznama določenih vrednosti"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Daljica"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Ne morem se povezati: neveljavne nastavitve."
@ -13615,6 +13609,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je nastavljeno na 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Daljica"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Pred uporabo phpMyAdmina odstranite mapo \"./config\"!"

117
po/sq.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: albanian <sq@li.org>\n"
@ -2963,233 +2963,233 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Versioni i MySQL"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
msgid "A polygon"
msgstr "Shto një fushë të re"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Krijo një tregues të ri"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3203,60 +3203,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Gjithsej"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Rreshta që mbarojnë me"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "E pamundur lidhja: rregullime të pavlefshme."
@ -13584,6 +13578,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Rreshta që mbarojnë me"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/sr.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: serbian_cyrillic <sr@li.org>\n"
@ -3006,235 +3006,235 @@ msgstr "Није пронађена путања до теме за тему %s!
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Додај %s поља"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Направи нови кључ"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3248,60 +3248,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Укупно"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Линије се завршавају са"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Не могу да се повежем: неисправна подешавања."
@ -13939,6 +13933,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "макс. истовремених веза"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Линије се завршавају са"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@ -2999,235 +2999,235 @@ msgstr "Nije pronađena putanja do teme za temu %s!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "Dodaj %s polja"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Napravi novi ključ"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3241,60 +3241,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Ukupno"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Linije se završavaju sa"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Ne mogu da se povežem: neispravna podešavanja."
@ -13931,6 +13925,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "maks. istovremenih veza"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Linije se završavaju sa"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/sv.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-08 19:29+0200\n"
"Last-Translator: ProUser <stefan@inkopsforum.se>\n"
"Language-Team: swedish <sv@li.org>\n"
@ -2770,14 +2770,14 @@ msgstr "Temats sökväg för tema %s hittades inte!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"En 1-byte heltal, signerat intervall är -128 till 127, osignerad intervall "
"är 0 till 255"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
@ -2785,7 +2785,7 @@ msgstr ""
"Ett 2-bytes heltal, signerad inom intervallet -32.768 till 32.767, osignerad "
"inomm intervallet 0 till 65.535"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2793,7 +2793,7 @@ msgstr ""
"Ett 3-bytes heltal, signerat inom intervallet -8.388.608 till 8.388.607, "
"osignerat inom intervallet 0 till 16.777.215"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2801,7 +2801,7 @@ msgstr ""
"Ett 4-bitars heltal, signerat inom intervallet -2147483648 till 2147483647, "
"osignerat inom intervallet 0 till 4294967295."
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2810,7 +2810,7 @@ msgstr ""
"till 9.223.372.036.854.775.807, osignerat inom intervallet 0 till "
"18.446.744.073.709.551.615"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@ -2818,7 +2818,7 @@ msgstr ""
"Ett fast-punkt nummer (M, D) - det maximala antalet siffror (M) är 65 "
"(default 10), det maximala antalet decimaler (D) är 30 (default 0)"
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2826,7 +2826,7 @@ msgstr ""
"Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, "
"0, och 1.175494351E-38 till 3.402823466E+38"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2836,7 +2836,7 @@ msgstr ""
"till 2.2250738585072014E-308, 0, och 2.2250738585072014E-308 till "
"1.7976931348623157E+308"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
@ -2844,14 +2844,14 @@ msgstr ""
"Synonym för DOUBLE (undantag: i REAL_AS_FLOAT SQL läget är det en synonym "
"för FLOAT)"
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
"En bit-fälttyp (M), lagrar M bitar per värde default är 1, maximalt är 64)"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2859,21 +2859,21 @@ msgstr ""
"En synonym för TINYINT (1), ett värde på noll betraktas som falskt, värden "
"skilda från noll anses sanna"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Ett alias för BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:307 libraries/Types.class.php:716
#: libraries/Types.class.php:313 libraries/Types.class.php:717
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Ett datum, supportat område är %1$s till %2$s"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "En datum och tidskombination, supportat område är %1$s till %2$s"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2881,12 +2881,12 @@ msgstr ""
"En tidsstämpel, intervallet är 1970-01-01 00:00:01 UTC till 2038-01-09 "
"03:14:07 UTC, lagrad som antalet sekunder sedan 1970-01-01 00:00:00 UTC"
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "En tid, området är %1$s till %2$s"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2894,135 +2894,135 @@ msgstr ""
"Ett år i fyr-siffrigt (4, default) eller 2-siffrigt (2) format, tillåtna "
"värden är: 70 (1970) till 69 (2069) eller 1901 till 2155 och 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "En polygon"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Skapa index"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3036,60 +3036,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linestring"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Kan ej skapa förbindelse: ogiltiga inställningar."
@ -13518,6 +13512,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert är satt till 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linestring"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Ta bort \"./config\" katalogen innan du använder phpMyAdmin!"

110
po/ta.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2011-12-28 11:44+0200\n"
"Last-Translator: any anonymous user <>\n"
"Language-Team: Tamil <ta@li.org>\n"
@ -2785,236 +2785,236 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
#| msgid "Create version"
msgid "A time, range is %1$s to %2$s"
msgstr "பதிப்பை உருவாக்கு"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "ஒரு பல்கோணியை சேர்"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "புதிய சுட்டை உருவாக்கு"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
msgctxt "string types"
msgid "String"
msgstr ""
@ -3026,58 +3026,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
msgid "String"
msgstr ""
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""

110
po/te.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-09 02:43+0200\n"
"Last-Translator: వీవెన్ <veeven@gmail.com>\n"
"Language-Team: Telugu <te@li.org>\n"
@ -2875,237 +2875,237 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, fuzzy, php-format
#| msgid "More settings"
msgid "A time, range is %1$s to %2$s"
msgstr "మరిన్ని అమరికలు"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
# మొదటి అనువాదము
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add into comments"
msgid "A polygon"
msgstr "స్పందనలకు చేర్చు"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "పుటని సృష్టించు"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
msgctxt "string types"
msgid "String"
msgstr ""
@ -3117,58 +3117,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "మొత్తం"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
msgid "String"
msgstr ""
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""

117
po/th.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-21 15:20+0200\n"
"Last-Translator: Setthawut Sawaengkit <defpico2@hotmail.com>\n"
"Language-Team: thai <th@li.org>\n"
@ -2748,235 +2748,235 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "เพิ่มรูปหลายเหลี่ยม"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "สร้างดัชนีใหม่"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -2990,60 +2990,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "รวม"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "แถวข้อความ"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""
@ -13320,6 +13314,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "แถวข้อความ"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "ลบแฟ้ม \"./config\" เพื่อเริ่มใช้งาน phpMyAdmin!"

110
po/tk.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-23 10:42+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Turkmen <tk@li.org>\n"
@ -2706,230 +2706,230 @@ msgstr ""
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
msgctxt "string types"
msgid "String"
msgstr ""
@ -2939,58 +2939,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr ""
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
msgid "String"
msgstr ""
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr ""

117
po/tr.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-05-04 06:54+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
"Language-Team: turkish <tr@li.org>\n"
@ -2773,14 +2773,14 @@ msgstr "%s teması için tema yolu bulunamadı!"
msgid "Theme"
msgstr "Tema"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"1-bayt'lık bir tamsayı, işaretli aralığı -128'den 127'ye kadardır, işaretsiz "
"aralığı 0'dan 255'e kadardır"
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
@ -2788,7 +2788,7 @@ msgstr ""
"2-bayt'lık bir tamsayı, işaretli aralığı -32,768'den 32,767'ye kadardır, "
"işaretsiz aralığı 0'dan 65,535'e kadardır"
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
@ -2796,7 +2796,7 @@ msgstr ""
"3-bayt'lık bir tamsayı, işaretli aralığı -8,388,608'den 8,388,607'ye "
"kadardır, işaretsiz aralığı 0'dan 16,777,215'e kadardır"
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
@ -2804,7 +2804,7 @@ msgstr ""
"4-bayt'lık bir tamsayı, işaretli aralığı -2,147,483,648'den 2,147,483,647'ye "
"kadardır, işaretsiz aralığı 0'dan 4,294,967,295'e kadardır"
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
@ -2813,7 +2813,7 @@ msgstr ""
"9,223,372,036,854,775,807'ye kadardır, işaretsiz aralığı 0'dan "
"18,446,744,073,709,551,615'e kadardır"
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@ -2821,7 +2821,7 @@ msgstr ""
"Sabit noktalı bir sayı (M, D) - rakamların (M) en fazla sayısı 65'tir, "
"ondalıkların (D) en fazla sayısı 30'dur. (varsayılan 0)"
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
@ -2829,7 +2829,7 @@ msgstr ""
"Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den "
"-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır"
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
@ -2839,7 +2839,7 @@ msgstr ""
"-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve "
"2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır"
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
@ -2847,7 +2847,7 @@ msgstr ""
"DOUBLE için eş anlamlı (istisna: REAL_AS_FLOAT SQL kipte FLOAT için eş "
"anlamlıdır)"
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
@ -2855,7 +2855,7 @@ msgstr ""
"Bir bit alanı türü (M), değer (varsayılan 1'dir, en fazla 64'tür) başına "
"bit'lerin M'sini saklar"
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
@ -2863,21 +2863,21 @@ msgstr ""
"TINYINT(1) için bir eş anlam, sıfır değeri false sayılır, sıfır olmayan "
"değerler true sayılır"
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Bir tarih, desteklenen aralık %1$s ile %2$s arası"
#: libraries/Types.class.php:309 libraries/Types.class.php:718
#: libraries/Types.class.php:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Bir tarih ve saat birleşimi, desteklenen aralık %1$s ile %2$s arası"
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
@ -2886,12 +2886,12 @@ msgstr ""
"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:319 libraries/Types.class.php:723
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Bir saat, aralığı %1$s ile %2$s arası"
#: libraries/Types.class.php:315
#: libraries/Types.class.php:321
msgid ""
"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"
@ -2900,7 +2900,7 @@ msgstr ""
"verilebilir değerler 70 (1970) ile 69 (2069) arası ya da 1901 ile 2155 arası "
"ve 0000"
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
@ -2908,7 +2908,7 @@ msgstr ""
"Saklandığında belirlenmiş uzunluğa sağdan takviyeli boşluklu sabit uzunluk "
"(0-255, varsayılan 1) dizgisi"
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@ -2917,7 +2917,7 @@ msgstr ""
"Değişken uzunluk (%s) dizgisi, en fazla satır boyutu etkili en fazla uzunluk "
"konusudur"
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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"
@ -2925,7 +2925,7 @@ msgstr ""
"En fazla 255 (2^8 - 1) karakter uzunluğunda bir TEXT sütunu, bayt'larda "
"değerin uzunluğunu gösteren bir-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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"
@ -2933,7 +2933,7 @@ msgstr ""
"En fazla 65,535 (2^16 - 1) karakter uzunluğunda bir TEXT sütunu, bayt'larda "
"değerin uzunluğunu gösteren iki-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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"
@ -2941,7 +2941,7 @@ msgstr ""
"En fazla 16,777,215 (2^24 - 1) karakter uzunluğunda bir TEXT sütunu, "
"bayt'larda değerin uzunluğunu gösteren üç-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
@ -2951,7 +2951,7 @@ msgstr ""
"sütunu, bayt'larda değerin uzunluğunu gösteren dört-bayt'lık bir ön ek ile "
"saklanır"
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2959,7 +2959,7 @@ msgstr ""
"CHAR türü benzeridir ama binari olmayan karakter dizgileri yerine binari "
"bayt dizgilerini saklar"
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
@ -2967,7 +2967,7 @@ msgstr ""
"VARCHAR türü benzeridir ama binari olmayan karakter dizgileri yerine binari "
"bayt dizgilerini saklar"
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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"
@ -2975,7 +2975,7 @@ msgstr ""
"En fazla 255 (2^8 - 1) bayt uzunluğunda bir BLOB sütunu, değerin uzunluğunu "
"gösteren bir-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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"
@ -2983,7 +2983,7 @@ msgstr ""
"En fazla 16,777,215 (2^24 - 1) bayt uzunluğunda bir BLOB sütunu, değerin "
"uzunluğunu gösteren üç-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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"
@ -2991,7 +2991,7 @@ msgstr ""
"En fazla 65,535 (2^16 - 1) bayt uzunluğunda bir BLOB sütunu, değerin "
"uzunluğunu gösteren iki-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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"
@ -2999,7 +2999,7 @@ msgstr ""
"En fazla 4,294,967,295 veya 4GiB (2^32 - 1) bayt uzunluğunda bir BLOB "
"sütunu, değerin uzunluğunu gösteren dört-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
@ -3007,55 +3007,55 @@ msgstr ""
"Bir numaralandırma, 65,535 değerine kadar olan listeden seçilir ya da özel "
"\" hata değeridir"
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr "64 üyeye kadar olan bir gruptan seçilen tek bir değerdir"
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr "Herhangi bir türün geometrisini saklayabilen bir tür"
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr "2-boyutlu uzayda bir nokta"
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr "Noktalar arasındaki doğrusal eklentili bir eğri"
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr "Poligon"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr "Noktalar topluluğu"
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr "Noktalar arasındaki doğrusal eklentili bir eğri topluluğu"
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr "Poligonlar topluluğu"
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr "Herhangi bir türün geometri nesneleri topluluğu"
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Both date and time."
msgctxt "date and time types"
msgid "Date and time"
msgstr "Her iki tarih ve saat de."
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3069,12 +3069,12 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Uzaysal"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
"4-bayt'lık bir tamsayı, aralığı -2,147,483,648'den 2,147,483,647'ye kadardır"
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@ -3082,23 +3082,23 @@ msgstr ""
"8-bayt'lık bir tamsayı, aralığı -9,223,372,036,854,775,808'den "
"9,223,372,036,854,775,807'ye kadardır"
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr "Sistemin varsayılan çift duyarlıklı kayan noktalı bir sayısı"
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr "True veya false"
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE için bir kod adı"
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Evrensel Benzersiz Tanımlayıcıyı (UUID) saklar"
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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"
@ -3106,7 +3106,7 @@ msgstr ""
"Bir zaman damgası, aralığı \"0001-01-01 00:00:00\" UTC ile \"9999-12-31 "
"23:59:59\" UTC arası; TIMESTAMP(6) mikro saniyeleri saklayabilir"
#: libraries/Types.class.php:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@ -3114,7 +3114,7 @@ msgstr ""
"Değişken uzunlukta bir (0-65,535) dizgi, tüm karşılaştırmalar için binari "
"karşılaştırma kullanır"
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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"
@ -3122,16 +3122,10 @@ msgstr ""
"En fazla 65,535 (2^16 - 1) bayt uzunluğunda bir BLOB sütunu, değerin "
"uzunluğunu gösteren dört-bayt'lık bir ön ek ile saklanır"
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr "Bir numaralandırma, tanımlanmış değerlerin listesinden seçilir"
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Satır dizgisi"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Bağlanamıyor: geçersiz ayarlar."
@ -13630,6 +13624,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert 0'a ayarlı"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Satır dizgisi"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "phpMyAdmin'den önce kullanılan \"./config\" dizinini kaldır!"

117
po/tt.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-01-12 11:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: tatarish <tt@li.org>\n"
@ -2985,235 +2985,235 @@ msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add %s field(s)"
msgid "A polygon"
msgstr "%s alan östäw"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Yaña tezeş yaratu"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3227,60 +3227,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Tulayım"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Yul ara bilgese"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Totaşa almím: yaraqsız köyläwlär."
@ -13705,6 +13699,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Yul ara bilgese"
#, fuzzy
#~| msgid "Add/Delete Field Columns"
#~ msgid "The remaining columns"

117
po/ug.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-14 14:46+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uyghur <ug@li.org>\n"
@ -2898,234 +2898,234 @@ msgstr "ماۋزۇ %s تېپىلمىدى."
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
msgid "A polygon"
msgstr ""
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "نەشىرنى قۇىماق"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3139,60 +3139,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "قۇر ئالماشۇرۇش بەلگىسى"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك."
@ -13242,6 +13236,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "قۇر ئالماشۇرۇش بەلگىسى"
#, fuzzy
#~| msgid "Add/Delete columns"
#~ msgid "The remaining columns"

117
po/uk.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: ukrainian <uk@li.org>\n"
@ -2830,236 +2830,236 @@ msgstr "Шлях теми не знайдений для теми %s!"
msgid "Theme"
msgstr "Тема"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Додати полігон"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Створити новий індекс"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
@ -3073,60 +3073,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Разом"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Linestring"
msgid "String"
msgstr "Linestring"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "З'єднання неможливе: невірні налаштування."
@ -13284,6 +13278,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert встановлений у 0"
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
#~ msgstr "Linestring"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "Видаліть \"./config\" директорію пред використанням phpMyAdmin!"

117
po/ur.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-27 16:34+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Urdu <ur@li.org>\n"
@ -2915,236 +2915,236 @@ msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "A polygon"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "تخلیق کیا گیا"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3158,60 +3158,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "میزان"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "سطریں کے آخر میں"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "جڑ نہیں سکتا: غلط ترتیبات۔"
@ -13323,6 +13317,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "سطریں کے آخر میں"
#~ msgid "Show help button instead of Documentation text"
#~ msgstr "مدد دستاویز متن کی جگہ بٹن دکھائیں"

117
po/uz.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: uzbek_cyrillic <uz@li.org>\n"
@ -3052,236 +3052,236 @@ msgstr "\"%s\" мавзуси файлларига йўл топилмади!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add column(s)"
msgid "A polygon"
msgstr "Устун(лар) қўшиш"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Янги индекс тузиш"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3295,60 +3295,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Журнал файллари сони"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Қаторлар бўлувчиси"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Уланиб бўлмади: нотўғри созланган."
@ -14557,6 +14551,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Максимал уланишлар сони "
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Қаторлар бўлувчиси"
#, fuzzy
#~| msgid "CHAR textarea columns"
#~ msgid "The remaining columns"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-03-14 14:57+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@ -3061,236 +3061,236 @@ msgstr "\"%s\" mavzusi fayllariga yol topilmadi!"
msgid "Theme"
msgstr ""
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add column(s)"
msgid "A polygon"
msgstr "Ustun(lar) qoshish"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Yangi indeks tuzish"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3304,60 +3304,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "Jurnal fayllari soni"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "Qatorlar boluvchisi"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "Ulanib bolmadi: notogri sozlangan."
@ -14622,6 +14616,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Maksimal ulanishlar soni "
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "Qatorlar boluvchisi"
#, fuzzy
#~| msgid "CHAR textarea columns"
#~ msgid "The remaining columns"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-09 07:19+0200\n"
"Last-Translator: Vian Zhao <brovian@gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
@ -2758,236 +2758,236 @@ msgstr "找不到主题 %s 的路径"
msgid "Theme"
msgstr "主题"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
msgstr "添加多边形"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "新建索引"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3001,60 +3001,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "空间"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "换行符"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "无法连接:无效的设置。"
@ -13025,6 +13019,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert 被设为 0"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "换行符"
#~ msgid "Remove \"./config\" directory before using phpMyAdmin!"
#~ msgstr "使用phpMyAdmin前请删除\"./config\"目录!"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-05-09 13:06+0200\n"
"POT-Creation-Date: 2012-05-09 13:14+0200\n"
"PO-Revision-Date: 2012-04-19 03:18+0200\n"
"Last-Translator: MoA Chung <honomoa@gmail.com>\n"
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
@ -2858,236 +2858,236 @@ msgstr "找不到主題 %s 的路徑"
msgid "Theme"
msgstr "主題"
#: libraries/Types.class.php:283
#: libraries/Types.class.php:289
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
#: libraries/Types.class.php:285
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
#: libraries/Types.class.php:287
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
#: libraries/Types.class.php:289
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
#: libraries/Types.class.php:291
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
#: libraries/Types.class.php:293 libraries/Types.class.php:706
#: libraries/Types.class.php:299 libraries/Types.class.php:707
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
#: libraries/Types.class.php:295
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:297
#: libraries/Types.class.php:303
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
#: libraries/Types.class.php:299
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
#: libraries/Types.class.php:301
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
#: libraries/Types.class.php:303
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
#: libraries/Types.class.php:305
#: libraries/Types.class.php:311
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:313 libraries/Types.class.php:717
#, 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:315 libraries/Types.class.php:719
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
#: libraries/Types.class.php:311
#: libraries/Types.class.php:317
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)"
msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:722
#: libraries/Types.class.php:319 libraries/Types.class.php:723
#, 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
#: libraries/Types.class.php:321
msgid ""
"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"
msgstr ""
#: libraries/Types.class.php:317
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:724
#: libraries/Types.class.php:325 libraries/Types.class.php:725
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
#: libraries/Types.class.php:321
#: libraries/Types.class.php:327
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 ""
#: libraries/Types.class.php:323 libraries/Types.class.php:726
#: libraries/Types.class.php:329 libraries/Types.class.php:727
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 ""
#: libraries/Types.class.php:325
#: libraries/Types.class.php:331
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 ""
#: libraries/Types.class.php:327
#: libraries/Types.class.php:333
msgid ""
"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
#: libraries/Types.class.php:329
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:331
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
#: libraries/Types.class.php:333
#: libraries/Types.class.php:339
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 ""
#: libraries/Types.class.php:335
#: libraries/Types.class.php:341
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 ""
#: libraries/Types.class.php:337
#: libraries/Types.class.php:343
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 ""
#: libraries/Types.class.php:339
#: libraries/Types.class.php:345
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 ""
#: libraries/Types.class.php:341
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
#: libraries/Types.class.php:343
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
msgstr ""
#: libraries/Types.class.php:345
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
msgstr ""
#: libraries/Types.class.php:347
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
msgstr ""
#: libraries/Types.class.php:349
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:351
#: libraries/Types.class.php:357
#, fuzzy
#| msgid "Add column"
msgid "A polygon"
msgstr "新增欄位"
#: libraries/Types.class.php:353
#: libraries/Types.class.php:359
msgid "A collection of points"
msgstr ""
#: libraries/Types.class.php:355
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
#: libraries/Types.class.php:363
msgid "A collection of polygons"
msgstr ""
#: libraries/Types.class.php:359
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
msgstr ""
#: libraries/Types.class.php:619 libraries/Types.class.php:945
#: libraries/Types.class.php:619 libraries/Types.class.php:971
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:638 libraries/Types.class.php:959
#: libraries/Types.class.php:638 libraries/Types.class.php:974
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "建立索引"
#: libraries/Types.class.php:647 libraries/Types.class.php:967
#: libraries/Types.class.php:647 libraries/Types.class.php:977
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
@ -3101,60 +3101,54 @@ msgctxt "spatial types"
msgid "Spatial"
msgstr "總數量"
#: libraries/Types.class.php:702
#: libraries/Types.class.php:703
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
#: libraries/Types.class.php:704
#: libraries/Types.class.php:705
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
#: libraries/Types.class.php:708
#: libraries/Types.class.php:709
msgid "A system's default double-precision floating-point number"
msgstr ""
#: libraries/Types.class.php:710
#: libraries/Types.class.php:711
msgid "True or false"
msgstr ""
#: libraries/Types.class.php:712
#: libraries/Types.class.php:713
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:714
#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
#: libraries/Types.class.php:720
#: libraries/Types.class.php:721
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:728
#: libraries/Types.class.php:729
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
#: libraries/Types.class.php:730
#: libraries/Types.class.php:731
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 ""
#: libraries/Types.class.php:732
#: libraries/Types.class.php:733
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
#: libraries/Types.class.php:978 libraries/Types.class.php:979
#, fuzzy
#| msgid "Lines terminated by"
msgid "String"
msgstr "資料分行使用字元:"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
msgstr "無法連線: 設定錯誤."
@ -13480,6 +13474,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "最大同時連線數"
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
#~ msgstr "資料分行使用字元:"
#~ msgid "Show help button instead of Documentation text"
#~ msgstr "顯示幫助按鈕代替檔案文字"