Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin

This commit is contained in:
Mike Hommé
2011-04-18 23:35:56 -04:00
20 changed files with 490 additions and 488 deletions

View File

@@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<link rel="icon" href="./favicon.ico" type="image/x-icon" /> <link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>phpMyAdmin 3.4.0-rc1-dev - Documentation</title> <title>phpMyAdmin 3.4.0-rc2-dev - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" /> <link rel="stylesheet" type="text/css" href="docs.css" />
</head> </head>
@@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<div id="header"> <div id="header">
<h1> <h1>
<a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a> <a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a>
3.4.0-rc1-dev 3.4.0-rc2-dev
Documentation Documentation
</h1> </h1>
</div> </div>

2
README
View File

@@ -1,7 +1,7 @@
phpMyAdmin - Readme phpMyAdmin - Readme
=================== ===================
Version 3.4.0-rc1-dev Version 3.4.0-rc2-dev
A set of PHP-scripts to manage MySQL over the web. A set of PHP-scripts to manage MySQL over the web.

View File

@@ -241,7 +241,7 @@ if (is_array($foreignData['disp_row'])) {
} }
?> ?>
<tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>"> <tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
<td nowrap="nowrap"> <td nowrap="nowrap">
<?php <?php
echo ($key_ordered_current_equals_data ? '<strong>' : '') echo ($key_ordered_current_equals_data ? '<strong>' : '')

View File

@@ -1114,7 +1114,7 @@ function changeMIMEType(db, table, reference, mime_type)
$(document).ready(function(){ $(document).ready(function(){
var oldText,db,table,token,sql_query; var oldText,db,table,token,sql_query;
oldText=$(".inner_sql").html(); oldText=$(".inner_sql").html();
$("#inline_edit").click(function(){ $("#inline_edit").live('click',function(){
db=$("input[name='db']").val(); db=$("input[name='db']").val();
table=$("input[name='table']").val(); table=$("input[name='table']").val();
token=$("input[name='token']").val(); token=$("input[name='token']").val();

View File

@@ -1058,8 +1058,11 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
function PMA_changeClassForColumn($this_th, newclass) { function PMA_changeClassForColumn($this_th, newclass) {
// index 0 is the th containing the big T // index 0 is the th containing the big T
var th_index = $this_th.index(); var th_index = $this_th.index();
var has_big_t = !$this_th.closest('tr').children(':first').hasClass('column_heading');
// .eq() is zero-based // .eq() is zero-based
if (has_big_t) {
th_index--; th_index--;
}
var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')'); var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')');
if ($this_th.data('has_class_'+newclass)) { if ($this_th.data('has_class_'+newclass)) {
$tds.removeClass(newclass); $tds.removeClass(newclass);

View File

@@ -96,7 +96,7 @@ class PMA_Config
*/ */
function checkSystem() function checkSystem()
{ {
$this->set('PMA_VERSION', '3.4.0-rc1-dev'); $this->set('PMA_VERSION', '3.4.0-rc2-dev');
/** /**
* @deprecated * @deprecated
*/ */

View File

@@ -1133,10 +1133,11 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
if (! empty($GLOBALS['validatequery'])) { if (! empty($GLOBALS['validatequery'])) {
$explain_params['validatequery'] = 1; $explain_params['validatequery'] = 1;
} }
$is_select = false;
if (preg_match('@^SELECT[[:space:]]+@i', $sql_query)) { if (preg_match('@^SELECT[[:space:]]+@i', $sql_query)) {
$explain_params['sql_query'] = 'EXPLAIN ' . $sql_query; $explain_params['sql_query'] = 'EXPLAIN ' . $sql_query;
$_message = __('Explain SQL'); $_message = __('Explain SQL');
$is_select = true;
} elseif (preg_match('@^EXPLAIN[[:space:]]+SELECT[[:space:]]+@i', $sql_query)) { } elseif (preg_match('@^EXPLAIN[[:space:]]+SELECT[[:space:]]+@i', $sql_query)) {
$explain_params['sql_query'] = substr($sql_query, 8); $explain_params['sql_query'] = substr($sql_query, 8);
$_message = __('Skip Explain SQL'); $_message = __('Skip Explain SQL');
@@ -1255,12 +1256,12 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
// in the tools div, only display the Inline link when not in ajax // in the tools div, only display the Inline link when not in ajax
// mode because 1) it currently does not work and 2) we would // mode because 1) it currently does not work and 2) we would
// have two similar mechanisms on the page for the same goal // have two similar mechanisms on the page for the same goal
if ($GLOBALS['is_ajax_request'] === false) { if ($is_select || $GLOBALS['is_ajax_request'] === false) {
// see in js/functions.js the jQuery code attached to id inline_edit // see in js/functions.js the jQuery code attached to id inline_edit
// document.write conflicts with jQuery, hence used $().append() // document.write conflicts with jQuery, hence used $().append()
echo "<script type=\"text/javascript\">\n" . echo "<script type=\"text/javascript\">\n" .
"//<![CDATA[\n" . "//<![CDATA[\n" .
"$('.tools').append('[<a href=\"#\" title=\"" . "$('.tools form').after('[<a href=\"#\" title=\"" .
PMA_escapeJsString(__('Inline edit of this query')) . PMA_escapeJsString(__('Inline edit of this query')) .
"\" id=\"inline_edit\">" . "\" id=\"inline_edit\">" .
PMA_escapeJsString(__('Inline')) . PMA_escapeJsString(__('Inline')) .

View File

@@ -235,9 +235,9 @@ if (! $GLOBALS['server']) {
// In this case, the database should not be collapsible/expandable // In this case, the database should not be collapsible/expandable
$img_plus = '<img class="icon" id="el%dImg" src="' . $pmaThemeImage . 'b_plus.png"' $img_plus = '<img class="icon" id="el%dImg" src="' . $pmaThemeImage . 'b_plus.png"'
.' width="9" height="9" alt="+" />'; .' alt="+" />';
$img_minus = '<img class="icon" id="el%dImg" src="' . $pmaThemeImage . 'b_minus.png"' $img_minus = '<img class="icon" id="el%dImg" src="' . $pmaThemeImage . 'b_minus.png"'
.' width="9" height="9" alt="-" />'; .' alt="-" />';
$href_left = '<a onclick="if (toggle(\'%d\')) return false;"' $href_left = '<a onclick="if (toggle(\'%d\')) return false;"'
.' href="navigation.php?%s" target="_self">'; .' href="navigation.php?%s" target="_self">';
@@ -304,9 +304,11 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) {
echo __('No tables found in database.'); echo __('No tables found in database.');
} }
unset($table_list); unset($table_list);
if ($db != 'information_schema') {
echo '<ul id="newtable"><li><a target="frame_content" href="tbl_create.php' . PMA_generate_common_url(array('db' => $GLOBALS['db'])) . '">' echo '<ul id="newtable"><li><a target="frame_content" href="tbl_create.php' . PMA_generate_common_url(array('db' => $GLOBALS['db'])) . '">'
.'<img class="icon" src="' . $GLOBALS['pmaThemeImage'] . 'b_snewtbl.png" id="icon_newtable" alt="' . _pgettext('short form', 'Create table') . '" />' .'<img class="icon" src="' . $GLOBALS['pmaThemeImage'] . 'b_snewtbl.png" id="icon_newtable" alt="' . _pgettext('short form', 'Create table') . '" />'
. _pgettext('short form', 'Create table') . '</a></li></ul>'; . _pgettext('short form', 'Create table') . '</a></li></ul>';
}
} elseif ($GLOBALS['cfg']['LeftFrameLight']) { } elseif ($GLOBALS['cfg']['LeftFrameLight']) {
/* No need to tell user to select database if we're showing complete list */ /* No need to tell user to select database if we're showing complete list */
if (!$list) { if (!$list) {

294
po/hi.po

File diff suppressed because it is too large Load Diff

231
po/id.po
View File

@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-15 08:56+0200\n" "POT-Creation-Date: 2011-04-15 08:56+0200\n"
"PO-Revision-Date: 2011-04-14 21:37+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n"
"Last-Translator: <udienz@ubuntu.com>\n" "Last-Translator: <aris_feryanto@yahoo.com>\n"
"Language-Team: indonesian <id@li.org>\n" "Language-Team: indonesian <id@li.org>\n"
"Language: id\n" "Language: id\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -91,7 +91,7 @@ msgstr "Deskripsi"
#: browse_foreigners.php:248 browse_foreigners.php:257 #: browse_foreigners.php:248 browse_foreigners.php:257
#: browse_foreigners.php:269 browse_foreigners.php:277 #: browse_foreigners.php:269 browse_foreigners.php:277
msgid "Use this value" msgid "Use this value"
msgstr "gunakan nilai ini" msgstr "Gunakan nilai ini"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331 #: libraries/blobstreaming.lib.php:331
@@ -239,7 +239,7 @@ msgstr "Cetak"
#: db_export.php:30 #: db_export.php:30
msgid "View dump (schema) of database" msgid "View dump (schema) of database"
msgstr "Tampilkan Dump (Skema) dari database" msgstr "Tampilkan dump (skema) dari database"
#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48 #: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
#: export.php:371 navigation.php:304 #: export.php:371 navigation.php:304
@@ -411,7 +411,7 @@ msgstr[0] "%s tabel"
#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126 #: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60 #: view_operations.php:60
msgid "Your SQL query has been executed successfully" msgid "Your SQL query has been executed successfully"
msgstr "Sukses menjalankan perintah SQL" msgstr "Query SQL Anda berhasil dieksekusi"
#: db_qbe.php:38 #: db_qbe.php:38
msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display"
@@ -423,7 +423,7 @@ msgstr "Beralih ke"
#: db_qbe.php:183 #: db_qbe.php:183
msgid "visual builder" msgid "visual builder"
msgstr "Pembuat tampilan" msgstr "pembangun visual"
#: db_qbe.php:219 libraries/db_structure.lib.php:95 #: db_qbe.php:219 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852 #: libraries/display_tbl.lib.php:852
@@ -489,7 +489,7 @@ msgstr "Update proses pencarian"
#: db_qbe.php:636 #: db_qbe.php:636
msgid "Use Tables" msgid "Use Tables"
msgstr "Gunakan tabel" msgstr "Gunakan Tabel"
#: db_qbe.php:659 #: db_qbe.php:659
#, php-format #, php-format
@@ -498,7 +498,7 @@ msgstr "Pencarian SQL dalam database <b>%s</b>:"
#: db_qbe.php:953 libraries/common.lib.php:1187 #: db_qbe.php:953 libraries/common.lib.php:1187
msgid "Submit Query" msgid "Submit Query"
msgstr "Jalankan pencarian SQL" msgstr "Jalankan Pencarian SQL"
#: db_search.php:52 libraries/auth/config.auth.lib.php:83 #: db_search.php:52 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102 #: libraries/auth/config.auth.lib.php:102
@@ -803,11 +803,11 @@ msgstr "Masukkan setiap nilai dalam bidang yang terpisah."
#: enum_editor.php:57 #: enum_editor.php:57
msgid "+ Restart insertion and add a new value" msgid "+ Restart insertion and add a new value"
msgstr "" msgstr "+ Ulang pemasukan dan tambahkan sebuah nilai baru"
#: enum_editor.php:67 #: enum_editor.php:67
msgid "Output" msgid "Output"
msgstr "" msgstr "Keluaran"
#: enum_editor.php:68 #: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field" msgid "Copy and paste the joined values into the \"Length/Values\" field"
@@ -902,12 +902,17 @@ msgid ""
"Script timeout passed, if you want to finish import, please resubmit same " "Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume." "file and import will resume."
msgstr "" msgstr ""
"Script sudah melewati timeout, jika Anda ingin menyelesaikan proses impor, "
"silakan kirim ulang arsip yang sama dan proses impor akan berlanjut."
#: import.php:425 #: import.php:425
msgid "" msgid ""
"However on last run no data has been parsed, this usually means phpMyAdmin " "However on last run no data has been parsed, this usually means phpMyAdmin "
"won't be able to finish this import unless you increase php time limits." "won't be able to finish this import unless you increase php time limits."
msgstr "" msgstr ""
"Tidak ada data yang di-parse pada eksekusi terakhir, biasanya ini berarti "
"phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas "
"waktu eksekusi php."
#: import_status.php:30 libraries/common.lib.php:682 #: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 #: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
@@ -945,20 +950,19 @@ msgstr "Anda akan MENGHAPUS SELURUH database!"
#: js/messages.php:32 #: js/messages.php:32
msgid "Dropping Event" msgid "Dropping Event"
msgstr "" msgstr "Menghapus Event"
#: js/messages.php:33 #: js/messages.php:33
#, fuzzy
msgid "Dropping Procedure" msgid "Dropping Procedure"
msgstr "Proses Aktif" msgstr "Menghapus Procedure"
#: js/messages.php:35 #: js/messages.php:35
msgid "Deleting tracking data" msgid "Deleting tracking data"
msgstr "Hapus pelacakan data" msgstr "Hapus data pelacakan"
#: js/messages.php:36 #: js/messages.php:36
msgid "Dropping Primary Key/Index" msgid "Dropping Primary Key/Index"
msgstr "" msgstr "Menghapus Primary Key/Index"
#: js/messages.php:37 #: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?" msgid "This operation could take a long time. Proceed anyway?"
@@ -972,6 +976,8 @@ msgstr "Anda akan MENONAKTIFKAN repositori BLOB!"
#, php-format #, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?" msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "" msgstr ""
"Apakah Anda yakin ingin menonaktifkan semua referensi BLOB untuk database %"
"s?"
#: js/messages.php:44 #: js/messages.php:44
msgid "Missing value in the form!" msgid "Missing value in the form!"
@@ -1067,10 +1073,9 @@ msgid "Changing Charset"
msgstr "Perangkat karakter (Charset)" msgstr "Perangkat karakter (Charset)"
#: js/messages.php:75 #: js/messages.php:75
#, fuzzy
#| msgid "Table must have at least one field." #| msgid "Table must have at least one field."
msgid "Table must have at least one column" msgid "Table must have at least one column"
msgstr "Tabel wajib mengandung sesedikitnya satu Field." msgstr "Tabel harus mengandung sekurangnya satu kolom"
#: js/messages.php:76 #: js/messages.php:76
msgid "Create Table" msgid "Create Table"
@@ -1089,10 +1094,9 @@ msgid "Show query box"
msgstr "Tampilkan kotak query" msgstr "Tampilkan kotak query"
#: js/messages.php:88 #: js/messages.php:88
#, fuzzy
#| msgid "Engines" #| msgid "Engines"
msgid "Inline Edit" msgid "Inline Edit"
msgstr "Mesin" msgstr "Inline Edit"
#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332 #: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317 #: libraries/schema/User_Schema.class.php:317
@@ -1121,17 +1125,16 @@ msgid "Ignore"
msgstr "Abaikan" msgstr "Abaikan"
#: js/messages.php:100 #: js/messages.php:100
#, fuzzy
msgid "Select referenced key" msgid "Select referenced key"
msgstr "Pilih rujukan kunci" msgstr "Pilih kunci rujukan"
#: js/messages.php:101 #: js/messages.php:101
msgid "Select Foreign Key" msgid "Select Foreign Key"
msgstr "" msgstr "Pilih Foreign Key"
#: js/messages.php:102 #: js/messages.php:102
msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key"
msgstr "" msgstr "Silakan pilih primary key atau sebuah unique key"
#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545 #: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display" msgid "Choose column to display"
@@ -1163,6 +1166,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider " "A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s." "upgrading. The newest version is %s, released on %s."
msgstr "" msgstr ""
"phpMyAdmin dengan versi yang lebih baru telah tersedia dan Anda disarankan "
"untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s."
#. l10n: Latest available phpMyAdmin version #. l10n: Latest available phpMyAdmin version
#: js/messages.php:119 #: js/messages.php:119
@@ -1526,24 +1531,27 @@ msgstr "Basisdata"
msgid "Error" msgid "Error"
msgstr "Error" msgstr "Error"
# No difference between singular and plural in this case for Indonesian language.
#: libraries/Message.class.php:281 #: libraries/Message.class.php:281
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
msgid_plural "%1$d rows affected." msgid_plural "%1$d rows affected."
msgstr[0] "" msgstr[0] "%1$d baris terpengaruh."
# No difference between singular and plural in this case for Indonesian language.
#: libraries/Message.class.php:300 #: libraries/Message.class.php:300
#, fuzzy, php-format #, php-format
msgid "%1$d row deleted." msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted." msgid_plural "%1$d rows deleted."
msgstr[0] "Baris ke %1$d telah dihapus" msgstr[0] "%1$d baris telah dihapus."
# No difference between singular and plural in this case for Indonesian language.
#: libraries/Message.class.php:319 #: libraries/Message.class.php:319
#, fuzzy, php-format #, php-format
#| msgid "No rows selected" #| msgid "No rows selected"
msgid "%1$d row inserted." msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted." msgid_plural "%1$d rows inserted."
msgstr[0] "Tidak ada baris yang dipilih" msgstr[0] "%1$d baris disisipkan."
#: libraries/StorageEngine.class.php:194 #: libraries/StorageEngine.class.php:194
msgid "" msgid ""
@@ -1610,16 +1618,16 @@ msgstr "Tema %s tidak ditemukan!"
#: libraries/Theme_Manager.class.php:215 #: libraries/Theme_Manager.class.php:215
#, php-format #, php-format
msgid "Theme path not found for theme %s!" msgid "Theme path not found for theme %s!"
msgstr "" msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20
#: themes.php:40 #: themes.php:40
msgid "Theme / Style" msgid "Theme / Style"
msgstr "Desain Penampilan" msgstr "Tema / Tampilan"
#: libraries/auth/config.auth.lib.php:76 #: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings." msgid "Cannot connect: invalid settings."
msgstr "Koneksi gagal: Stelan tidak berlaku." msgstr "Koneksi gagal: setelan tidak berlaku."
#: libraries/auth/config.auth.lib.php:91 #: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64 #: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
@@ -1634,8 +1642,8 @@ msgid ""
"You probably did not create a configuration file. You might want to use the " "You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one." "%1$ssetup script%2$s to create one."
msgstr "" msgstr ""
"anda mungkin belum membuat file konfigurasi. anda bisa menggunakan %1$ssetup " "Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup "
"script%2$s untuk membuatnya" "script%2$s untuk membuatnya."
#: libraries/auth/config.auth.lib.php:115 #: libraries/auth/config.auth.lib.php:115
msgid "" msgid ""
@@ -1665,10 +1673,11 @@ msgstr "Dokumentasi phpMyAdmin"
#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:244
msgid "You can enter hostname/IP address and port separated by space." msgid "You can enter hostname/IP address and port separated by space."
msgstr "" msgstr ""
"Anda bisa memasukkan hostname/alamat IP dan port dipisahkan dengan spasi."
#: libraries/auth/cookie.auth.lib.php:243 #: libraries/auth/cookie.auth.lib.php:243
msgid "Server:" msgid "Server:"
msgstr "Server" msgstr "Server:"
#: libraries/auth/cookie.auth.lib.php:248 #: libraries/auth/cookie.auth.lib.php:248
msgid "Username:" msgid "Username:"
@@ -1684,13 +1693,15 @@ msgstr "Pilihan Server"
#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:72 #: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:72
msgid "Cookies must be enabled past this point." msgid "Cookies must be enabled past this point."
msgstr "Mulai dari sini Cookies harus diaktifkan." msgstr "Mulai dari sini cookies harus diaktifkan."
#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:206 #: libraries/auth/signon.auth.lib.php:206
msgid "" msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)" "Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "" msgstr ""
"Masuk tanpa kata sandi tidak diperbolehkan dalam konfigurasi (lihat "
"AllowNoPassword)"
#: libraries/auth/cookie.auth.lib.php:647 #: libraries/auth/cookie.auth.lib.php:647
#: libraries/auth/signon.auth.lib.php:210 #: libraries/auth/signon.auth.lib.php:210
@@ -1706,35 +1717,34 @@ msgstr "Gagal login ke MySQL server"
#: libraries/auth/http.auth.lib.php:69 #: libraries/auth/http.auth.lib.php:69
msgid "Wrong username/password. Access denied." msgid "Wrong username/password. Access denied."
msgstr "Nama Pengguna/Kata Sandi salah. Akses ditolak." msgstr "Nama pengguna/kata sandi salah. Akses ditolak."
#: libraries/auth/swekey/swekey.auth.lib.php:118 #: libraries/auth/swekey/swekey.auth.lib.php:118
#, php-format #, php-format
msgid "File %s does not contain any key id" msgid "File %s does not contain any key id"
msgstr "" msgstr "Arsip %s tidak mengandung key id"
#: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:157
#: libraries/auth/swekey/swekey.auth.lib.php:180 #: libraries/auth/swekey/swekey.auth.lib.php:180
msgid "Hardware authentication failed" msgid "Hardware authentication failed"
msgstr "" msgstr "Autentikasi perangkat keras gagal"
#: libraries/auth/swekey/swekey.auth.lib.php:166 #: libraries/auth/swekey/swekey.auth.lib.php:166
msgid "No valid authentication key plugged" msgid "No valid authentication key plugged"
msgstr "" msgstr "Tidak ada kunci autentikasi yang terpasang"
#: libraries/auth/swekey/swekey.auth.lib.php:202 #: libraries/auth/swekey/swekey.auth.lib.php:202
msgid "Authenticating..." msgid "Authenticating..."
msgstr "" msgstr "Melakukan autentikasi..."
#: libraries/blobstreaming.lib.php:241 #: libraries/blobstreaming.lib.php:241
msgid "PBMS error" msgid "PBMS error"
msgstr "" msgstr "Kesalahan PBMS"
#: libraries/blobstreaming.lib.php:267 #: libraries/blobstreaming.lib.php:267
#, fuzzy
#| msgid "MySQL connection collation" #| msgid "MySQL connection collation"
msgid "PBMS connection failed:" msgid "PBMS connection failed:"
msgstr "Penyortiran koneksi MySQL" msgstr "Koneksi PBMS gagal:"
#: libraries/blobstreaming.lib.php:312 #: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:" msgid "PBMS get BLOB info failed:"
@@ -1742,7 +1752,7 @@ msgstr ""
#: libraries/blobstreaming.lib.php:320 #: libraries/blobstreaming.lib.php:320
msgid "get BLOB Content-Type failed" msgid "get BLOB Content-Type failed"
msgstr "" msgstr "gagal mengambil BLOB Content-Type"
#: libraries/blobstreaming.lib.php:347 #: libraries/blobstreaming.lib.php:347
msgid "View image" msgid "View image"
@@ -1750,11 +1760,11 @@ msgstr "Tampilan View"
#: libraries/blobstreaming.lib.php:351 #: libraries/blobstreaming.lib.php:351
msgid "Play audio" msgid "Play audio"
msgstr " Memainkan file suara" msgstr "Memainkan file suara"
#: libraries/blobstreaming.lib.php:356 #: libraries/blobstreaming.lib.php:356
msgid "View video" msgid "View video"
msgstr " Lihat Video" msgstr "Lihat video"
#: libraries/blobstreaming.lib.php:360 #: libraries/blobstreaming.lib.php:360
msgid "Download file" msgid "Download file"
@@ -1763,7 +1773,7 @@ msgstr "Unduh file"
#: libraries/blobstreaming.lib.php:421 #: libraries/blobstreaming.lib.php:421
#, php-format #, php-format
msgid "Could not open file: %s" msgid "Could not open file: %s"
msgstr "" msgstr "Tidak bisa membuka arsip: %s"
#: libraries/bookmark.lib.php:83 #: libraries/bookmark.lib.php:83
msgid "shared" msgid "shared"
@@ -1800,18 +1810,16 @@ msgid "Overhead"
msgstr "Kelebihan (Overhead)" msgstr "Kelebihan (Overhead)"
#: libraries/build_html_for_db.lib.php:93 #: libraries/build_html_for_db.lib.php:93
#, fuzzy
msgid "Jump to database" msgid "Jump to database"
msgstr "Database tidak ditemukan" msgstr "Beralih ke database"
#: libraries/build_html_for_db.lib.php:130 #: libraries/build_html_for_db.lib.php:130
msgid "Not replicated" msgid "Not replicated"
msgstr "" msgstr "Tidak direplikasi"
#: libraries/build_html_for_db.lib.php:136 #: libraries/build_html_for_db.lib.php:136
#, fuzzy
msgid "Replicated" msgid "Replicated"
msgstr "Tabel Relasi" msgstr "Direplikasi"
#: libraries/build_html_for_db.lib.php:150 #: libraries/build_html_for_db.lib.php:150
#, php-format #, php-format
@@ -1823,31 +1831,29 @@ msgid "Check Privileges"
msgstr "Periksa hak-hak" msgstr "Periksa hak-hak"
#: libraries/chart.lib.php:40 #: libraries/chart.lib.php:40
#, fuzzy
msgid "Query statistics" msgid "Query statistics"
msgstr "Statistik Baris" msgstr "Statistik query"
#: libraries/chart.lib.php:63 #: libraries/chart.lib.php:63
msgid "Query execution time comparison (in microseconds)" msgid "Query execution time comparison (in microseconds)"
msgstr "" msgstr "Perbandingan waktu eksekusi query (dalam mikrodetik)"
#: libraries/chart.lib.php:83 #: libraries/chart.lib.php:83
#, fuzzy
#| msgid "SQL result" #| msgid "SQL result"
msgid "Query results" msgid "Query results"
msgstr "Hasil SQL" msgstr "Hasil query"
#: libraries/chart.lib.php:109 #: libraries/chart.lib.php:109
msgid "No data found for the chart." msgid "No data found for the chart."
msgstr "" msgstr "Tidak ditemukan data untuk diagram."
#: libraries/chart.lib.php:249 #: libraries/chart.lib.php:249
msgid "GD extension is needed for charts." msgid "GD extension is needed for charts."
msgstr "" msgstr "Ekstensi GD diperlukan untuk diagram."
#: libraries/chart.lib.php:252 #: libraries/chart.lib.php:252
msgid "JSON encoder is needed for chart tooltips." msgid "JSON encoder is needed for chart tooltips."
msgstr "" msgstr "JSON encoder diperlukan untuk tooltips pada diagram."
#: libraries/common.inc.php:576 #: libraries/common.inc.php:576
msgid "" msgid ""
@@ -1866,10 +1872,10 @@ msgstr ""
"masalah." "masalah."
#: libraries/common.inc.php:587 #: libraries/common.inc.php:587
#, fuzzy, php-format #, php-format
#| msgid "Could not load default configuration from: \"%1$s\"" #| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s" msgid "Could not load default configuration from: %1$s"
msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\"" msgstr "Tidak dapat memuat konfigurasi default dari: %1$s"
#: libraries/common.inc.php:592 #: libraries/common.inc.php:592
msgid "" msgid ""
@@ -1881,12 +1887,14 @@ msgstr ""
#: libraries/common.inc.php:622 #: libraries/common.inc.php:622
#, php-format #, php-format
msgid "Invalid server index: %s" msgid "Invalid server index: %s"
msgstr "" msgstr "Indeks server tidak sah: %s"
#: libraries/common.inc.php:629 #: libraries/common.inc.php:629
#, php-format #, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration." msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "" msgstr ""
"Hostname tidak sah untuk server %1$s. Silakan lihat kembali konfigurasi "
"Anda."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485 #: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1156 #: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1156
@@ -1896,7 +1904,7 @@ msgstr "Server"
#: libraries/common.inc.php:826 #: libraries/common.inc.php:826
msgid "Invalid authentication method set in configuration:" msgid "Invalid authentication method set in configuration:"
msgstr "" msgstr "Metode autentikasi dalam konfigurasi tidak sah:"
#: libraries/common.inc.php:929 #: libraries/common.inc.php:929
#, php-format #, php-format
@@ -1948,7 +1956,7 @@ msgstr "MySQL menyatakan: "
#: libraries/common.lib.php:1098 #: libraries/common.lib.php:1098
msgid "Failed to connect to SQL validator!" msgid "Failed to connect to SQL validator!"
msgstr "" msgstr "Gagal melakukan koneksi ke validator SQL!"
#: libraries/common.lib.php:1139 libraries/config/messages.inc.php:462 #: libraries/common.lib.php:1139 libraries/config/messages.inc.php:462
msgid "Explain SQL" msgid "Explain SQL"
@@ -1981,17 +1989,16 @@ msgstr "Mengesahkan (validate) SQL"
#: libraries/common.lib.php:1264 #: libraries/common.lib.php:1264
msgid "Inline edit of this query" msgid "Inline edit of this query"
msgstr "" msgstr "Inline edit untuk query ini"
#: libraries/common.lib.php:1266 #: libraries/common.lib.php:1266
#, fuzzy
#| msgid "Engines" #| msgid "Engines"
msgid "Inline" msgid "Inline"
msgstr "Mesin" msgstr "Inline"
#: libraries/common.lib.php:1333 libraries/common.lib.php:1349 #: libraries/common.lib.php:1333 libraries/common.lib.php:1349
msgid "Profiling" msgid "Profiling"
msgstr "" msgstr "Profiling"
#: libraries/common.lib.php:1354 libraries/tbl_triggers.lib.php:27 #: libraries/common.lib.php:1354 libraries/tbl_triggers.lib.php:27
#: server_processlist.php:70 #: server_processlist.php:70
@@ -2072,7 +2079,7 @@ msgstr "Lompat langsung ke database &quot;%s&quot;."
#: libraries/common.lib.php:2465 #: libraries/common.lib.php:2465
#, php-format #, php-format
msgid "The %s functionality is affected by a known bug, see %s" msgid "The %s functionality is affected by a known bug, see %s"
msgstr "" msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s"
#: libraries/common.lib.php:2825 libraries/common.lib.php:2832 #: libraries/common.lib.php:2825 libraries/common.lib.php:2832
#: libraries/common.lib.php:3017 libraries/config/setup.forms.php:291 #: libraries/common.lib.php:3017 libraries/config/setup.forms.php:291
@@ -2109,34 +2116,32 @@ msgstr "Operasi"
#: libraries/common.lib.php:2965 #: libraries/common.lib.php:2965
msgid "Browse your computer:" msgid "Browse your computer:"
msgstr "" msgstr "Telusuri komputer Anda:"
#: libraries/common.lib.php:2978 #: libraries/common.lib.php:2978
#, fuzzy, php-format #, php-format
#| msgid "web server upload directory" #| msgid "web server upload directory"
msgid "Select from the web server upload directory <b>%s</b>:" msgid "Select from the web server upload directory <b>%s</b>:"
msgstr "direktori upload pada web-server" msgstr "Pilih dari direktori unggah <b>%s</b> pada web server:"
#: libraries/common.lib.php:2990 libraries/sql_query_form.lib.php:501 #: libraries/common.lib.php:2990 libraries/sql_query_form.lib.php:501
#: tbl_change.php:959 #: tbl_change.php:959
msgid "The directory you set for upload work cannot be reached" msgid "The directory you set for upload work cannot be reached"
msgstr "" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi"
"Direktori yang telah ditetapkan untuk meng-upload tidak dapat dihubungi"
#: libraries/common.lib.php:2998 #: libraries/common.lib.php:2998
msgid "There are no files to upload" msgid "There are no files to upload"
msgstr "" msgstr "Tidak ada arsip untuk diunggah"
#: libraries/config.values.php:45 libraries/config.values.php:50 #: libraries/config.values.php:45 libraries/config.values.php:50
msgid "Both" msgid "Both"
msgstr "" msgstr "Keduanya"
#: libraries/config.values.php:74 #: libraries/config.values.php:74
msgid "Open" msgid "Open"
msgstr "" msgstr "Buka"
#: libraries/config.values.php:74 #: libraries/config.values.php:74
#, fuzzy
#| msgid "Close" #| msgid "Close"
msgid "Closed" msgid "Closed"
msgstr "Tutup" msgstr "Tutup"
@@ -2145,129 +2150,125 @@ msgstr "Tutup"
#: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/export/sql.php:79 libraries/export/texytext.php:23
#: libraries/import.lib.php:1172 #: libraries/import.lib.php:1172
#, fuzzy
msgid "structure" msgid "structure"
msgstr "Struktur" msgstr "struktur"
#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/config.values.php:96 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/export/sql.php:79 libraries/export/texytext.php:23
msgid "data" msgid "data"
msgstr "" msgstr "data"
#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/config.values.php:97 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/export/sql.php:79 libraries/export/texytext.php:23
#, fuzzy
#| msgid "Structure and data" #| msgid "Structure and data"
msgid "structure and data" msgid "structure and data"
msgstr "Struktur dan data" msgstr "struktur dan data"
#: libraries/config.values.php:99 #: libraries/config.values.php:99
msgid "Quick - display only the minimal options to configure" msgid "Quick - display only the minimal options to configure"
msgstr "" msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi"
#: libraries/config.values.php:100 #: libraries/config.values.php:100
msgid "Custom - display all possible options to configure" msgid "Custom - display all possible options to configure"
msgstr "" msgstr "Custom - menampilkan semua opsi yang mungkin untuk konfigurasi"
#: libraries/config.values.php:101 #: libraries/config.values.php:101
msgid "Custom - like above, but without the quick/custom choice" msgid "Custom - like above, but without the quick/custom choice"
msgstr "" msgstr "Custom - seperti di atas, namun tanpa pilihan cepat/custom"
#: libraries/config.values.php:119 #: libraries/config.values.php:119
#, fuzzy
#| msgid "Complete inserts" #| msgid "Complete inserts"
msgid "complete inserts" msgid "complete inserts"
msgstr "INSERT lengkap" msgstr "INSERT lengkap"
#: libraries/config.values.php:120 #: libraries/config.values.php:120
#, fuzzy
#| msgid "Extended inserts" #| msgid "Extended inserts"
msgid "extended inserts" msgid "extended inserts"
msgstr "INSERT memperluas" msgstr "INSERT yang diperluas"
#: libraries/config.values.php:121 #: libraries/config.values.php:121
msgid "both of the above" msgid "both of the above"
msgstr "" msgstr "keduanya dari yang di atas"
#: libraries/config.values.php:122 #: libraries/config.values.php:122
msgid "neither of the above" msgid "neither of the above"
msgstr "" msgstr "tidak keduanya dari yang di atas"
#: libraries/config/FormDisplay.class.php:83 #: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422 #: libraries/config/validate.lib.php:422
msgid "Not a positive number" msgid "Not a positive number"
msgstr " Bukan angka positif" msgstr "Bukan angka positif"
#: libraries/config/FormDisplay.class.php:84 #: libraries/config/FormDisplay.class.php:84
#: libraries/config/validate.lib.php:435 #: libraries/config/validate.lib.php:435
msgid "Not a non-negative number" msgid "Not a non-negative number"
msgstr "" msgstr "Bukan angka non-negatif"
#: libraries/config/FormDisplay.class.php:85 #: libraries/config/FormDisplay.class.php:85
#: libraries/config/validate.lib.php:409 #: libraries/config/validate.lib.php:409
msgid "Not a valid port number" msgid "Not a valid port number"
msgstr "" msgstr "Bukan angka port yang sah"
#: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:86
#: libraries/config/FormDisplay.class.php:574 #: libraries/config/FormDisplay.class.php:574
#: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 #: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450
msgid "Incorrect value" msgid "Incorrect value"
msgstr "" msgstr "Nilai yang salah"
#: libraries/config/FormDisplay.class.php:87 #: libraries/config/FormDisplay.class.php:87
#: libraries/config/validate.lib.php:464 #: libraries/config/validate.lib.php:464
#, php-format #, php-format
msgid "Value must be equal or lower than %s" msgid "Value must be equal or lower than %s"
msgstr "" msgstr "Nilai harus sama dengan atau lebih kecil dari %s"
#: libraries/config/FormDisplay.class.php:538 #: libraries/config/FormDisplay.class.php:538
#, php-format #, php-format
msgid "Missing data for %s" msgid "Missing data for %s"
msgstr "" msgstr "Data hilang untuk %s"
#: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740 #: libraries/config/FormDisplay.class.php:740
#, fuzzy
#| msgid "Variable" #| msgid "Variable"
msgid "unavailable" msgid "unavailable"
msgstr "Variabel" msgstr "tidak tersedia"
#: libraries/config/FormDisplay.class.php:737 #: libraries/config/FormDisplay.class.php:737
#: libraries/config/FormDisplay.class.php:741 #: libraries/config/FormDisplay.class.php:741
#, php-format #, php-format
msgid "\"%s\" requires %s extension" msgid "\"%s\" requires %s extension"
msgstr "" msgstr "\"%s\" memerlukan ekstensi %s"
#: libraries/config/FormDisplay.class.php:755 #: libraries/config/FormDisplay.class.php:755
#, php-format #, php-format
msgid "import will not work, missing function (%s)" msgid "import will not work, missing function (%s)"
msgstr "" msgstr "proses impor tidak akan berjalan, fungsi (%s) tidak ditemukan"
#: libraries/config/FormDisplay.class.php:759 #: libraries/config/FormDisplay.class.php:759
#, php-format #, php-format
msgid "export will not work, missing function (%s)" msgid "export will not work, missing function (%s)"
msgstr "" msgstr "proses ekspor tidak akan berjalan, fungsi (%s) tidak ditemukan"
#: libraries/config/FormDisplay.class.php:766 #: libraries/config/FormDisplay.class.php:766
msgid "SQL Validator is disabled" msgid "SQL Validator is disabled"
msgstr "" msgstr "Validator SQL tidak diaktifkan"
#: libraries/config/FormDisplay.class.php:773 #: libraries/config/FormDisplay.class.php:773
#, fuzzy
#| msgid "Link not found" #| msgid "Link not found"
msgid "SOAP extension not found" msgid "SOAP extension not found"
msgstr "Link tidak ditemukan" msgstr "Ekstensi SOAP tidak ditemukan"
#: libraries/config/FormDisplay.class.php:781 #: libraries/config/FormDisplay.class.php:781
#, php-format #, php-format
msgid "maximum %s" msgid "maximum %s"
msgstr "" msgstr "maksimum %s"
#: libraries/config/FormDisplay.tpl.php:173 #: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration" msgid "This setting is disabled, it will not be applied to your configuration"
msgstr "" msgstr ""
"Pengaturan ini tidak diaktifkan, pengaturan tidak akan diterapkan pada "
"konfigurasi anda"
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68 #: libraries/relation.lib.php:96 pmd_relation_new.php:68
@@ -2277,16 +2278,16 @@ msgstr "Tidak aktif"
#: libraries/config/FormDisplay.tpl.php:248 #: libraries/config/FormDisplay.tpl.php:248
#, php-format #, php-format
msgid "Set value: %s" msgid "Set value: %s"
msgstr "" msgstr "Tetapkan nilai: %s"
#: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/FormDisplay.tpl.php:253
#: libraries/config/messages.inc.php:350 #: libraries/config/messages.inc.php:350
msgid "Restore default value" msgid "Restore default value"
msgstr "" msgstr "Kembalikan nilai default"
#: libraries/config/FormDisplay.tpl.php:269 #: libraries/config/FormDisplay.tpl.php:269
msgid "Allow users to customize this value" msgid "Allow users to customize this value"
msgstr "" msgstr "Izinkan pengguna untuk mengubah nilai ini"
#: libraries/config/FormDisplay.tpl.php:333 #: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
@@ -2299,20 +2300,20 @@ msgid "Improves efficiency of screen refresh"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:18 #: libraries/config/messages.inc.php:18
#, fuzzy
#| msgid "Enabled" #| msgid "Enabled"
msgid "Enable Ajax" msgid "Enable Ajax"
msgstr "Aktif" msgstr "Aktifkan Ajax"
#: libraries/config/messages.inc.php:19 #: libraries/config/messages.inc.php:19
msgid "" msgid ""
"If enabled user can enter any MySQL server in login form for cookie auth" "If enabled user can enter any MySQL server in login form for cookie auth"
msgstr "" msgstr ""
"Jika diaktifkan, pengguna bisa memasukkan server MySQL manapun pada form "
"login untuk autentikasi cookie"
#: libraries/config/messages.inc.php:20 #: libraries/config/messages.inc.php:20
#, fuzzy
msgid "Allow login to any MySQL server" msgid "Allow login to any MySQL server"
msgstr "Gagal login ke MySQL server" msgstr "Izinkan login ke server MySQL manapun"
#: libraries/config/messages.inc.php:21 #: libraries/config/messages.inc.php:21
msgid "" msgid ""
@@ -2363,7 +2364,7 @@ msgstr ""
#: libraries/config/messages.inc.php:31 #: libraries/config/messages.inc.php:31
msgid "Bzip2" msgid "Bzip2"
msgstr "" msgstr "Bzip2"
#: libraries/config/messages.inc.php:32 #: libraries/config/messages.inc.php:32
msgid "" msgid ""

258
po/si.po
View File

@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-15 08:56+0200\n" "POT-Creation-Date: 2011-04-15 08:56+0200\n"
"PO-Revision-Date: 2011-04-13 20:17+0200\n" "PO-Revision-Date: 2011-04-18 21:31+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n" "Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
"Language-Team: sinhala <si@li.org>\n" "Language-Team: sinhala <si@li.org>\n"
"Language: si\n" "Language: si\n"
@@ -757,7 +757,7 @@ msgstr "ක්‍රියාව"
#: db_tracking.php:101 js/messages.php:34 #: db_tracking.php:101 js/messages.php:34
msgid "Delete tracking data for this table" msgid "Delete tracking data for this table"
msgstr "" msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න"
#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600 #: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
msgid "active" msgid "active"
@@ -956,14 +956,13 @@ msgid "Dropping Procedure"
msgstr "ක්‍රියාපටිපාටිය" msgstr "ක්‍රියාපටිපාටිය"
#: js/messages.php:35 #: js/messages.php:35
#, fuzzy
#| msgid "Allows inserting and replacing data." #| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data" msgid "Deleting tracking data"
msgstr "Allows inserting and replacing data." msgstr "අවධානය පිළිබඳ දත්ත ඉවත් කෙරෙමින්"
#: js/messages.php:36 #: js/messages.php:36
msgid "Dropping Primary Key/Index" msgid "Dropping Primary Key/Index"
msgstr "" msgstr "ප්‍රාථමික මූලය/සුචිය ඉවත් කෙරෙමින්"
#: js/messages.php:37 #: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?" msgid "This operation could take a long time. Proceed anyway?"
@@ -1011,10 +1010,9 @@ msgid "Create User"
msgstr "භාවිතා කරන්නෙක් සාදන්න" msgstr "භාවිතා කරන්නෙක් සාදන්න"
#: js/messages.php:54 #: js/messages.php:54
#, fuzzy
#| msgid "Reloading the privileges" #| msgid "Reloading the privileges"
msgid "Reloading Privileges" msgid "Reloading Privileges"
msgstr "Reloading the privileges" msgstr "වරප්‍රසාද පූරණය කෙරෙමින්"
#: js/messages.php:55 #: js/messages.php:55
msgid "Removing Selected Users" msgid "Removing Selected Users"
@@ -1032,23 +1030,21 @@ msgid "Cancel"
msgstr "අවලංගු කරන්න" msgstr "අවලංගු කරන්න"
#: js/messages.php:63 #: js/messages.php:63
#, fuzzy
msgid "Loading" msgid "Loading"
msgstr "ස්වදේශී" msgstr "පූරණය කෙරෙමින්"
#: js/messages.php:64 #: js/messages.php:64
#, fuzzy
#| msgid "Processes" #| msgid "Processes"
msgid "Processing Request" msgid "Processing Request"
msgstr "ක්‍රියාවලිය" msgstr "ඉල්ලීම පිරිසැකසෙමින්"
#: js/messages.php:65 libraries/import/ods.php:80 #: js/messages.php:65 libraries/import/ods.php:80
msgid "Error in Processing Request" msgid "Error in Processing Request"
msgstr "" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
#: js/messages.php:66 #: js/messages.php:66
msgid "Dropping Column" msgid "Dropping Column"
msgstr "" msgstr "තීරුව හලමින්"
# ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA # Terms - ICTA
@@ -1067,10 +1063,9 @@ msgid "Renaming Databases"
msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්" msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්"
#: js/messages.php:72 #: js/messages.php:72
#, fuzzy
#| msgid "Rename database to" #| msgid "Rename database to"
msgid "Reload Database" msgid "Reload Database"
msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" msgstr "දත්තගබඩාව පූරණය"
#: js/messages.php:73 #: js/messages.php:73
msgid "Copying Database" msgid "Copying Database"
@@ -1117,7 +1112,7 @@ msgstr "සුරකින්න"
#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158 #: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321 #: tbl_change.php:315 tbl_change.php:321
msgid "Hide" msgid "Hide"
msgstr "" msgstr "සඟවන්න"
#: js/messages.php:93 #: js/messages.php:93
#, fuzzy #, fuzzy
@@ -1132,7 +1127,7 @@ msgstr "SQL විමසුම"
#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198 #: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223 #: tbl_indexes.php:223
msgid "Ignore" msgid "Ignore"
msgstr "අත්හැර දමන්න" msgstr "නොසලකන්න"
#: js/messages.php:100 #: js/messages.php:100
msgid "Select referenced key" msgid "Select referenced key"
@@ -1187,9 +1182,8 @@ msgstr ", නවතම ස්ථායි අනුවාදය:"
#. l10n: Display text for calendar close link #. l10n: Display text for calendar close link
#: js/messages.php:137 #: js/messages.php:137
#, fuzzy
msgid "Done" msgid "Done"
msgstr "දත්ත" msgstr "තෝරන්න"
#. l10n: Display text for previous month link in calendar #. l10n: Display text for previous month link in calendar
#: js/messages.php:139 #: js/messages.php:139
@@ -1511,7 +1505,7 @@ msgstr "සංස්කරණය කරන්න"
#: libraries/Index.class.php:471 #: libraries/Index.class.php:471
msgid "The primary key has been dropped" msgid "The primary key has been dropped"
msgstr "The primary key has been dropped" msgstr "ප්‍රාථමික මූලය හලන ලදි"
#: libraries/Index.class.php:475 #: libraries/Index.class.php:475
#, php-format #, php-format
@@ -1542,8 +1536,8 @@ msgstr "දෝෂය"
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
msgid_plural "%1$d rows affected." msgid_plural "%1$d rows affected."
msgstr[0] "" msgstr[0] "පේළියකට බලපෑවේය"
msgstr[1] "" msgstr[1] "පේළි %1$dකට බලපෑවේය"
#: libraries/Message.class.php:300 #: libraries/Message.class.php:300
#, php-format #, php-format
@@ -1837,7 +1831,7 @@ msgstr "විමසුම් සංඛ්‍යානය"
#: libraries/chart.lib.php:63 #: libraries/chart.lib.php:63
msgid "Query execution time comparison (in microseconds)" msgid "Query execution time comparison (in microseconds)"
msgstr "" msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්‍රෝ තත්පර)"
#: libraries/chart.lib.php:83 #: libraries/chart.lib.php:83
msgid "Query results" msgid "Query results"
@@ -1991,7 +1985,7 @@ msgstr "Validate SQL"
#: libraries/common.lib.php:1264 #: libraries/common.lib.php:1264
msgid "Inline edit of this query" msgid "Inline edit of this query"
msgstr "" msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය"
#: libraries/common.lib.php:1266 #: libraries/common.lib.php:1266
msgid "Inline" msgid "Inline"
@@ -2136,23 +2130,21 @@ msgstr ""
#: libraries/config.values.php:45 libraries/config.values.php:50 #: libraries/config.values.php:45 libraries/config.values.php:50
msgid "Both" msgid "Both"
msgstr "" msgstr "දෙකම"
#: libraries/config.values.php:74 #: libraries/config.values.php:74
msgid "Open" msgid "Open"
msgstr "" msgstr "විවෘත"
#: libraries/config.values.php:74 #: libraries/config.values.php:74
#, fuzzy
#| msgid "Unclosed quote" #| msgid "Unclosed quote"
msgid "Closed" msgid "Closed"
msgstr "නොවසන ලද උද්ධරනය" msgstr "වසන ලද"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/config.values.php:95 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/export/sql.php:79 libraries/export/texytext.php:23
#: libraries/import.lib.php:1172 #: libraries/import.lib.php:1172
#, fuzzy
msgid "structure" msgid "structure"
msgstr "සැකිල්ල" msgstr "සැකිල්ල"
@@ -2160,12 +2152,11 @@ msgstr "සැකිල්ල"
#: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/export/sql.php:79 libraries/export/texytext.php:23
msgid "data" msgid "data"
msgstr "" msgstr "දත්ත"
#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/config.values.php:97 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/export/sql.php:79 libraries/export/texytext.php:23
#, fuzzy
#| msgid "Structure and data" #| msgid "Structure and data"
msgid "structure and data" msgid "structure and data"
msgstr "සැකිල්ල සහ දත්ත" msgstr "සැකිල්ල සහ දත්ත"
@@ -2183,34 +2174,32 @@ msgid "Custom - like above, but without the quick/custom choice"
msgstr "" msgstr ""
#: libraries/config.values.php:119 #: libraries/config.values.php:119
#, fuzzy
#| msgid "Complete inserts" #| msgid "Complete inserts"
msgid "complete inserts" msgid "complete inserts"
msgstr "Complete inserts" msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
#: libraries/config.values.php:120 #: libraries/config.values.php:120
#, fuzzy
#| msgid "Extended inserts" #| msgid "Extended inserts"
msgid "extended inserts" msgid "extended inserts"
msgstr "Extended inserts" msgstr "විස්තෘත ඇතුළු කිරීම්"
#: libraries/config.values.php:121 #: libraries/config.values.php:121
msgid "both of the above" msgid "both of the above"
msgstr "" msgstr "ඉහත ද්විත්වයම"
#: libraries/config.values.php:122 #: libraries/config.values.php:122
msgid "neither of the above" msgid "neither of the above"
msgstr "" msgstr "ඉහත දෙකින් එකක්වත් නොව"
#: libraries/config/FormDisplay.class.php:83 #: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422 #: libraries/config/validate.lib.php:422
msgid "Not a positive number" msgid "Not a positive number"
msgstr "" msgstr "ධන සංඛ්‍යාවක් නොවේ"
#: libraries/config/FormDisplay.class.php:84 #: libraries/config/FormDisplay.class.php:84
#: libraries/config/validate.lib.php:435 #: libraries/config/validate.lib.php:435
msgid "Not a non-negative number" msgid "Not a non-negative number"
msgstr "" msgstr "ඍණ නොවන සංඛ්‍යාවක් නොවේ"
#: libraries/config/FormDisplay.class.php:85 #: libraries/config/FormDisplay.class.php:85
#: libraries/config/validate.lib.php:409 #: libraries/config/validate.lib.php:409
@@ -2232,14 +2221,13 @@ msgstr "අගය %s ට සමාන හෝ අඩු විය යුතුය
#: libraries/config/FormDisplay.class.php:538 #: libraries/config/FormDisplay.class.php:538
#, php-format #, php-format
msgid "Missing data for %s" msgid "Missing data for %s"
msgstr "" msgstr "%s සඳහා දත්ත නොමැත"
#: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740 #: libraries/config/FormDisplay.class.php:740
#, fuzzy
#| msgid "Variable" #| msgid "Variable"
msgid "unavailable" msgid "unavailable"
msgstr "Variable" msgstr "නොතිබෙන"
#: libraries/config/FormDisplay.class.php:737 #: libraries/config/FormDisplay.class.php:737
#: libraries/config/FormDisplay.class.php:741 #: libraries/config/FormDisplay.class.php:741
@@ -2269,7 +2257,7 @@ msgstr "PHP සංස්කරණය"
#: libraries/config/FormDisplay.class.php:781 #: libraries/config/FormDisplay.class.php:781
#, php-format #, php-format
msgid "maximum %s" msgid "maximum %s"
msgstr "" msgstr "උපරිම %s"
#: libraries/config/FormDisplay.tpl.php:173 #: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration" msgid "This setting is disabled, it will not be applied to your configuration"
@@ -2278,12 +2266,12 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68 #: libraries/relation.lib.php:96 pmd_relation_new.php:68
msgid "Disabled" msgid "Disabled"
msgstr "අක්‍රිය කරන ලද" msgstr "අක්‍රිය"
#: libraries/config/FormDisplay.tpl.php:248 #: libraries/config/FormDisplay.tpl.php:248
#, php-format #, php-format
msgid "Set value: %s" msgid "Set value: %s"
msgstr "" msgstr "%s අගය පිහිටුවන්න"
#: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/FormDisplay.tpl.php:253
#: libraries/config/messages.inc.php:350 #: libraries/config/messages.inc.php:350
@@ -2305,9 +2293,8 @@ msgid "Improves efficiency of screen refresh"
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:18 #: libraries/config/messages.inc.php:18
#, fuzzy
msgid "Enable Ajax" msgid "Enable Ajax"
msgstr "සක්‍රිය කරන් ලද" msgstr "Ajax සක්‍රිය කරන්"
#: libraries/config/messages.inc.php:19 #: libraries/config/messages.inc.php:19
msgid "" msgid ""
@@ -2315,9 +2302,8 @@ msgid ""
msgstr "" msgstr ""
#: libraries/config/messages.inc.php:20 #: libraries/config/messages.inc.php:20
#, fuzzy
msgid "Allow login to any MySQL server" msgid "Allow login to any MySQL server"
msgstr "MySQL සර්වරයට ලොග් විය නොහැක" msgstr "MySQL සේවාදායකයට ලොග්වීමට ඉඩ දෙන්න "
#: libraries/config/messages.inc.php:21 #: libraries/config/messages.inc.php:21
msgid "" msgid ""
@@ -2342,11 +2328,11 @@ msgstr ""
#: libraries/config/messages.inc.php:25 #: libraries/config/messages.inc.php:25
msgid "Blowfish secret" msgid "Blowfish secret"
msgstr "" msgstr "Blowfish රහස"
#: libraries/config/messages.inc.php:26 #: libraries/config/messages.inc.php:26
msgid "Highlight selected rows" msgid "Highlight selected rows"
msgstr "" msgstr "තෝරාගත් පේළි ඉස්මතු කරන්න"
#: libraries/config/messages.inc.php:27 #: libraries/config/messages.inc.php:27
msgid "Row marker" msgid "Row marker"
@@ -2368,7 +2354,7 @@ msgstr ""
#: libraries/config/messages.inc.php:31 #: libraries/config/messages.inc.php:31
msgid "Bzip2" msgid "Bzip2"
msgstr "" msgstr "Bzip2"
#: libraries/config/messages.inc.php:32 #: libraries/config/messages.inc.php:32
msgid "" msgid ""
@@ -2379,7 +2365,7 @@ msgstr ""
#: libraries/config/messages.inc.php:33 #: libraries/config/messages.inc.php:33
msgid "CHAR columns editing" msgid "CHAR columns editing"
msgstr "" msgstr "CHAR තීරු සංස්කරණය"
#: libraries/config/messages.inc.php:34 #: libraries/config/messages.inc.php:34
msgid "Number of columns for CHAR/VARCHAR textareas" msgid "Number of columns for CHAR/VARCHAR textareas"
@@ -2424,11 +2410,11 @@ msgstr ""
#: libraries/config/messages.inc.php:43 #: libraries/config/messages.inc.php:43
msgid "Confirm DROP queries" msgid "Confirm DROP queries"
msgstr "" msgstr "DROP විමසුම් තහවුරු කරන්න"
#: libraries/config/messages.inc.php:44 #: libraries/config/messages.inc.php:44
msgid "Debug SQL" msgid "Debug SQL"
msgstr "" msgstr "SQL නිදොසන්න"
#: libraries/config/messages.inc.php:45 #: libraries/config/messages.inc.php:45
#, fuzzy #, fuzzy
@@ -2486,7 +2472,7 @@ msgstr ""
#: libraries/config/messages.inc.php:57 #: libraries/config/messages.inc.php:57
msgid "Display databases as a list" msgid "Display databases as a list"
msgstr "" msgstr "දත්තගබඩා ලැයිස්තුවක් ලෙස පෙන්වන්න"
#: libraries/config/messages.inc.php:58 #: libraries/config/messages.inc.php:58
msgid "Show server listing as a list instead of a drop down" msgid "Show server listing as a list instead of a drop down"
@@ -3146,15 +3132,15 @@ msgstr "Put fields names in the first row"
#: libraries/config/messages.inc.php:252 libraries/import/ods.php:27 #: libraries/config/messages.inc.php:252 libraries/import/ods.php:27
msgid "Do not import empty rows" msgid "Do not import empty rows"
msgstr "" msgstr "හිස් පේළි ආනයනය නොකරන්න"
#: libraries/config/messages.inc.php:253 #: libraries/config/messages.inc.php:253
msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)"
msgstr "" msgstr "ව්‍යවහාර මුදල් අගයන් ආනයනය කරන්න (උදා. $5.00, 5.00 ලෙස)"
#: libraries/config/messages.inc.php:254 #: libraries/config/messages.inc.php:254
msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "" msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)"
#: libraries/config/messages.inc.php:255 #: libraries/config/messages.inc.php:255
#, fuzzy #, fuzzy
@@ -5603,7 +5589,7 @@ msgstr "අපනයන වර්ගය"
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191 #: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194 #: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window" msgid "Open new phpMyAdmin window"
msgstr "Open new phpMyAdmin window" msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න"
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54 #: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54
msgid "SQL result" msgid "SQL result"
@@ -5660,7 +5646,7 @@ msgstr ""
msgid "" msgid ""
"The first line of the file contains the table column names <i>(if this is " "The first line of the file contains the table column names <i>(if this is "
"unchecked, the first line will become part of the data)</i>" "unchecked, the first line will become part of the data)</i>"
msgstr "" msgstr "ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය."
#: libraries/import/csv.php:39 #: libraries/import/csv.php:39
msgid "" msgid ""
@@ -5718,11 +5704,11 @@ msgstr "This plugin does not support compressed imports!"
#: libraries/import/ods.php:28 #: libraries/import/ods.php:28
msgid "Import percentages as proper decimals <i>(ex. 12.00% to .12)</i>" msgid "Import percentages as proper decimals <i>(ex. 12.00% to .12)</i>"
msgstr "" msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස ආනයනය කරන්න <i>(උදා. 12.00%, 12 ලෙස)</i>"
#: libraries/import/ods.php:29 #: libraries/import/ods.php:29
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>" msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
msgstr "" msgstr "ව්‍යවහාර මුදල් අගයන් ආනයනය කරන්න <i>(උදා. $5.00, 5.00 ලෙස)</i>"
#: libraries/import/sql.php:32 #: libraries/import/sql.php:32
msgid "SQL compatibility mode:" msgid "SQL compatibility mode:"
@@ -5853,7 +5839,7 @@ msgstr "පෝලන්ත"
#: libraries/mysql_charsets.lib.php:288 libraries/mysql_charsets.lib.php:336 #: libraries/mysql_charsets.lib.php:288 libraries/mysql_charsets.lib.php:336
msgid "West European" msgid "West European"
msgstr "බටහිර යුරෝපියානු" msgstr "බටහිර යුරෝපීය"
#: libraries/mysql_charsets.lib.php:291 #: libraries/mysql_charsets.lib.php:291
msgid "Romanian" msgid "Romanian"
@@ -5964,10 +5950,9 @@ msgid "Reload navigation frame"
msgstr "" msgstr ""
#: libraries/plugin_interface.lib.php:336 #: libraries/plugin_interface.lib.php:336
#, fuzzy
#| msgid "This format has no options" #| msgid "This format has no options"
msgid "This format has no options" msgid "This format has no options"
msgstr "මෙම ආකෘතියේ විකල්ප කිසිවක් නැත" msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත"
#: libraries/relation.lib.php:83 #: libraries/relation.lib.php:83
msgid "not OK" msgid "not OK"
@@ -9197,11 +9182,11 @@ msgstr ""
#: setup/lib/index.lib.php:351 #: setup/lib/index.lib.php:351
msgid "Key is too short, it should have at least 8 characters." msgid "Key is too short, it should have at least 8 characters."
msgstr "" msgstr "මූලය කෙටිය. අවම වශයෙන් අක්ෂර 8 වත් තිබිය යුතුය."
#: setup/lib/index.lib.php:358 #: setup/lib/index.lib.php:358
msgid "Key should contain letters, numbers [em]and[/em] special characters." msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "" msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] විශේෂ සලකුණු තිබිය යුතුය."
#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
#: tbl_select.php:30 tbl_select.php:33 #: tbl_select.php:30 tbl_select.php:33
@@ -9216,22 +9201,20 @@ msgstr ""
#: sql.php:600 tbl_replace.php:387 #: sql.php:600 tbl_replace.php:387
#, php-format #, php-format
msgid "Inserted row id: %1$d" msgid "Inserted row id: %1$d"
msgstr "" msgstr "%1$d පේළිය ඇතුල් කරන ලදි"
#: sql.php:617 #: sql.php:617
msgid "Showing as PHP code" msgid "Showing as PHP code"
msgstr "" msgstr "PHP කේත ලෙස පෙන්වමින්"
#: sql.php:620 tbl_replace.php:361 #: sql.php:620 tbl_replace.php:361
#, fuzzy
msgid "Showing SQL query" msgid "Showing SQL query"
msgstr "සම්පූර්ණ විමසුම පෙන්වන්" msgstr "SQL විමසුම පෙන්වමින්"
#: sql.php:622 #: sql.php:622
#, fuzzy
#| msgid "Validate SQL" #| msgid "Validate SQL"
msgid "Validated SQL" msgid "Validated SQL"
msgstr "Validate SQL" msgstr "තහවුරු කරන ලද SQL"
#: sql.php:897 #: sql.php:897
#, php-format #, php-format
@@ -9283,7 +9266,7 @@ msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන
#: tbl_change.php:1068 #: tbl_change.php:1068
msgid "and then" msgid "and then"
msgstr "සහ එවිට" msgstr "අනතුරුව"
#: tbl_change.php:1072 #: tbl_change.php:1072
msgid "Go back to previous page" msgid "Go back to previous page"
@@ -9313,86 +9296,83 @@ msgid "Continue insertion with %s rows"
msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න"
#: tbl_chart.php:56 #: tbl_chart.php:56
#, fuzzy
#| msgid "The privileges were reloaded successfully." #| msgid "The privileges were reloaded successfully."
msgid "Chart generated successfully." msgid "Chart generated successfully."
msgstr "The privileges were reloaded successfully." msgstr "ප්‍රස්තාරය සාර්ථකව අඳින ලදි."
#: tbl_chart.php:59 #: tbl_chart.php:59
#, fuzzy
#| msgid "" #| msgid ""
#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " #| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
#| "3.11[/a]" #| "3.11[/a]"
msgid "" msgid ""
"The result of this query can't be used for a chart. See [a@./Documentation." "The result of this query can't be used for a chart. See [a@./Documentation."
"html#faq6_29@Documentation]FAQ 6.29[/a]" "html#faq6_29@Documentation]FAQ 6.29[/a]"
msgstr "සමහර විට ආසන්න වශයෙන්. FAQ 3.11 බලන්න" msgstr ""
"මෙම විමසුම් ප්‍රතිඑලය ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. "
"[a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a] බලන්න."
#: tbl_chart.php:90 #: tbl_chart.php:90
msgid "Width" msgid "Width"
msgstr "" msgstr "පළල"
#: tbl_chart.php:94 #: tbl_chart.php:94
msgid "Height" msgid "Height"
msgstr "" msgstr "උස"
#: tbl_chart.php:98 #: tbl_chart.php:98
msgid "Title" msgid "Title"
msgstr "" msgstr "මාතෘකාව"
#: tbl_chart.php:103 #: tbl_chart.php:103
msgid "X Axis label" msgid "X Axis label"
msgstr "" msgstr "X අක්ෂයේ ලේබලය"
#: tbl_chart.php:107 #: tbl_chart.php:107
msgid "Y Axis label" msgid "Y Axis label"
msgstr "" msgstr "Y අක්ෂයේ ලේබලය"
#: tbl_chart.php:112 #: tbl_chart.php:112
msgid "Area margins" msgid "Area margins"
msgstr "" msgstr "පෙදෙසේ දාර"
#: tbl_chart.php:122 #: tbl_chart.php:122
msgid "Legend margins" msgid "Legend margins"
msgstr "" msgstr ""
#: tbl_chart.php:134 #: tbl_chart.php:134
#, fuzzy
#| msgid "Mar" #| msgid "Mar"
msgid "Bar" msgid "Bar"
msgstr "මාර්තු" msgstr "තීර"
#: tbl_chart.php:135 #: tbl_chart.php:135
msgid "Line" msgid "Line"
msgstr "" msgstr "රේඛා"
#: tbl_chart.php:136 #: tbl_chart.php:136
msgid "Radar" msgid "Radar"
msgstr "" msgstr "රේඩාර්"
#: tbl_chart.php:138 #: tbl_chart.php:138
#, fuzzy
#| msgid "PiB" #| msgid "PiB"
msgid "Pie" msgid "Pie"
msgstr "PiB" msgstr "වට"
#: tbl_chart.php:144 #: tbl_chart.php:144
#, fuzzy
#| msgid "Query type" #| msgid "Query type"
msgid "Bar type" msgid "Bar type"
msgstr "විමසුම් වර්ගය" msgstr "තීර වර්ගය"
#: tbl_chart.php:146 #: tbl_chart.php:146
msgid "Stacked" msgid "Stacked"
msgstr "" msgstr "ගොඩ ගසන ලද"
#: tbl_chart.php:147 #: tbl_chart.php:147
msgid "Multi" msgid "Multi"
msgstr "" msgstr "බහු"
#: tbl_chart.php:152 #: tbl_chart.php:152
msgid "Continuous image" msgid "Continuous image"
msgstr "" msgstr "අඛණ්ඩ ප්‍රතිරූපය"
#: tbl_chart.php:155 #: tbl_chart.php:155
msgid "" msgid ""
@@ -9410,10 +9390,13 @@ msgid ""
"Note that not every result table can be put to the chart. See <a href=\"./" "Note that not every result table can be put to the chart. See <a href=\"./"
"Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a>" "Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a>"
msgstr "" msgstr ""
"සෑම ප්‍රතිඑලයක්ම ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. <a "
"href=\"./Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a> "
"බලන්න."
#: tbl_chart.php:181 #: tbl_chart.php:181
msgid "Redraw" msgid "Redraw"
msgstr "" msgstr "නැවත අඳින්න"
#: tbl_create.php:56 #: tbl_create.php:56
#, php-format #, php-format
@@ -9421,9 +9404,9 @@ msgid "Table %s already exists!"
msgstr " %s වගුව දැනටමත් පවතී!" msgstr " %s වගුව දැනටමත් පවතී!"
#: tbl_create.php:242 #: tbl_create.php:242
#, fuzzy, php-format #, php-format
msgid "Table %1$s has been created." msgid "Table %1$s has been created."
msgstr "%s වගුව හලන ලදි" msgstr "%1$s වගුව සාදන ලදි."
#: tbl_export.php:24 #: tbl_export.php:24
msgid "View dump (schema) of table" msgid "View dump (schema) of table"
@@ -9460,8 +9443,7 @@ msgstr "සූචි වර්ගය:"
#: tbl_indexes.php:182 #: tbl_indexes.php:182
msgid "" msgid ""
"(\"PRIMARY\" <b>must</b> be the name of and <b>only of</b> a primary key!)" "(\"PRIMARY\" <b>must</b> be the name of and <b>only of</b> a primary key!)"
msgstr "" msgstr "(\"PRIMARY\" නාමය ප්‍රාථමික මූලය සඳහා <i>පමණක්</i> භාවිතා කල යුතුය!)"
"(\"PRIMARY\" <b>must</b> be the name of and <b>only of</b> a primary key!)"
#: tbl_indexes.php:249 #: tbl_indexes.php:249
#, php-format #, php-format
@@ -9554,40 +9536,37 @@ msgid "Delete the table (DROP)"
msgstr "වගුව ඉවත් කරන්න (DROP)" msgstr "වගුව ඉවත් කරන්න (DROP)"
#: tbl_operations.php:729 #: tbl_operations.php:729
#, fuzzy
msgid "Partition maintenance" msgid "Partition maintenance"
msgstr "වගු නඩත්තුව" msgstr "කොටස් (partition) නඩත්තුව"
#: tbl_operations.php:737 #: tbl_operations.php:737
#, php-format #, php-format
msgid "Partition %s" msgid "Partition %s"
msgstr "" msgstr "%s කොටස"
#: tbl_operations.php:740 #: tbl_operations.php:740
msgid "Analyze" msgid "Analyze"
msgstr "" msgstr "විශ්ලේෂණය"
#: tbl_operations.php:741 #: tbl_operations.php:741
#, fuzzy
msgid "Check" msgid "Check"
msgstr "චෙකොස්ලෝවැකියානු" msgstr "පරීක්ෂාව"
#: tbl_operations.php:742 #: tbl_operations.php:742
msgid "Optimize" msgid "Optimize"
msgstr "" msgstr "ප්‍රශස්තනය"
#: tbl_operations.php:743 #: tbl_operations.php:743
msgid "Rebuild" msgid "Rebuild"
msgstr "" msgstr "නැවත සෑදීම"
#: tbl_operations.php:744 #: tbl_operations.php:744
#, fuzzy
msgid "Repair" msgid "Repair"
msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" msgstr "ප්‍රතිසංස්කරණය"
#: tbl_operations.php:756 #: tbl_operations.php:756
msgid "Remove partitioning" msgid "Remove partitioning"
msgstr "" msgstr "කොටස් කිරීම ඉවත් කරන්න"
#: tbl_operations.php:782 #: tbl_operations.php:782
msgid "Check referential integrity:" msgid "Check referential integrity:"
@@ -9607,7 +9586,7 @@ msgstr "භාවිතය"
#: tbl_printview.php:338 tbl_structure.php:780 #: tbl_printview.php:338 tbl_structure.php:780
msgid "Effective" msgid "Effective"
msgstr "Effective" msgstr "එලදායී"
#: tbl_printview.php:363 tbl_structure.php:818 #: tbl_printview.php:363 tbl_structure.php:818
msgid "Row Statistics" msgid "Row Statistics"
@@ -9619,7 +9598,7 @@ msgstr "ප්‍රකාශය"
#: tbl_printview.php:377 tbl_structure.php:833 #: tbl_printview.php:377 tbl_structure.php:833
msgid "static" msgid "static"
msgstr "" msgstr "ස්ථිතික"
#: tbl_printview.php:379 tbl_structure.php:835 #: tbl_printview.php:379 tbl_structure.php:835
msgid "dynamic" msgid "dynamic"
@@ -9636,7 +9615,7 @@ msgstr "පේළියේ ප්‍රමාණය"
#: tbl_relation.php:276 #: tbl_relation.php:276
#, php-format #, php-format
msgid "Error creating foreign key on %1$s (check data types)" msgid "Error creating foreign key on %1$s (check data types)"
msgstr "" msgstr "%1$s මත අන්‍ය මූලය සෑදීමේදී දෝෂ ඇතිවිය (දත්ත වර්ග පරීක්ෂා කරන්න)"
#: tbl_relation.php:402 #: tbl_relation.php:402
msgid "Internal relation" msgid "Internal relation"
@@ -9650,7 +9629,7 @@ msgstr ""
#: tbl_relation.php:410 #: tbl_relation.php:410
msgid "Foreign key constraint" msgid "Foreign key constraint"
msgstr "" msgstr "අන්‍ය මූල නිරෝධය"
#: tbl_row_action.php:28 #: tbl_row_action.php:28
msgid "No rows selected" msgid "No rows selected"
@@ -9697,17 +9676,16 @@ msgid "Add FULLTEXT index"
msgstr "FULLTEXT මූලය එක් කරන්න" msgstr "FULLTEXT මූලය එක් කරන්න"
#: tbl_structure.php:385 #: tbl_structure.php:385
#, fuzzy
#| msgid "None" #| msgid "None"
msgctxt "None for default" msgctxt "None for default"
msgid "None" msgid "None"
msgstr "කිසිවක් නැත" msgstr "කිසිවක් නැත"
#: tbl_structure.php:398 #: tbl_structure.php:398
#, fuzzy, php-format #, php-format
#| msgid "Table %s has been dropped" #| msgid "Table %s has been dropped"
msgid "Column %s has been dropped" msgid "Column %s has been dropped"
msgstr "%s වගුව හලන ලදි" msgstr "%s තීරුව හලන ලදි"
#: tbl_structure.php:409 tbl_structure.php:484 #: tbl_structure.php:409 tbl_structure.php:484
#, php-format #, php-format
@@ -9721,10 +9699,9 @@ msgid "An index has been added on %s"
msgstr "%s සඳහා සූචියක් එක්කරන ලදි" msgstr "%s සඳහා සූචියක් එක්කරන ලදි"
#: tbl_structure.php:472 #: tbl_structure.php:472
#, fuzzy
#| msgid "Show PHP information" #| msgid "Show PHP information"
msgid "Show more actions" msgid "Show more actions"
msgstr "PHP තොරතුරු පෙන්වන්න" msgstr "තවත් ක්‍රියාවන් පෙන්වන්න"
#: tbl_structure.php:598 tbl_structure.php:600 #: tbl_structure.php:598 tbl_structure.php:600
msgid "Relation view" msgid "Relation view"
@@ -9735,10 +9712,9 @@ msgid "Propose table structure"
msgstr "සැකිල්ලක් යෝජනා කරන්න" msgstr "සැකිල්ලක් යෝජනා කරන්න"
#: tbl_structure.php:632 #: tbl_structure.php:632
#, fuzzy
#| msgid "Add %s field(s)" #| msgid "Add %s field(s)"
msgid "Add column" msgid "Add column"
msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" msgstr "තීරයක් එක් කරන්න"
#: tbl_structure.php:646 #: tbl_structure.php:646
msgid "At End of Table" msgid "At End of Table"
@@ -9760,12 +9736,12 @@ msgstr "පේළි&nbsp;%s&nbsp;මත සුචියක් සාදන්
#: tbl_structure.php:849 #: tbl_structure.php:849
msgid "partitioned" msgid "partitioned"
msgstr "" msgstr "කොටස් කරන ලද"
#: tbl_tracking.php:109 #: tbl_tracking.php:109
#, php-format #, php-format
msgid "Tracking report for table `%s`" msgid "Tracking report for table `%s`"
msgstr "" msgstr " `%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව"
#: tbl_tracking.php:182 #: tbl_tracking.php:182
#, php-format #, php-format
@@ -9784,7 +9760,7 @@ msgstr "%s.%s හි %s වන අනුවාදය සඳහා අවධා
#: tbl_tracking.php:208 #: tbl_tracking.php:208
msgid "SQL statements executed." msgid "SQL statements executed."
msgstr "" msgstr "SQL ය ක්‍රියාත්මක කරන ලදි."
#: tbl_tracking.php:215 #: tbl_tracking.php:215
msgid "" msgid ""
@@ -9803,7 +9779,7 @@ msgstr ""
#: tbl_tracking.php:256 #: tbl_tracking.php:256
#, php-format #, php-format
msgid "Version %s snapshot (SQL code)" msgid "Version %s snapshot (SQL code)"
msgstr "" msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)"
#: tbl_tracking.php:375 #: tbl_tracking.php:375
msgid "Tracking statements" msgid "Tracking statements"
@@ -9812,16 +9788,15 @@ msgstr ""
#: tbl_tracking.php:391 tbl_tracking.php:498 #: tbl_tracking.php:391 tbl_tracking.php:498
#, php-format #, php-format
msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "" msgstr "පෙන්වන්න, %s %s දින සිට %s දින දක්වා %s %s භාවිතා කරන්නා විසින් "
#: tbl_tracking.php:404 tbl_tracking.php:455 #: tbl_tracking.php:404 tbl_tracking.php:455
#, fuzzy
msgid "Date" msgid "Date"
msgstr "දත්ත" msgstr "දිනය"
#: tbl_tracking.php:406 #: tbl_tracking.php:406
msgid "Data definition statement" msgid "Data definition statement"
msgstr "" msgstr "දත්ත අර්ථ දැක්වීම"
#: tbl_tracking.php:457 #: tbl_tracking.php:457
msgid "Data manipulation statement" msgid "Data manipulation statement"
@@ -9837,16 +9812,16 @@ msgstr ""
#: tbl_tracking.php:503 #: tbl_tracking.php:503
msgid "This option will replace your table and contained data." msgid "This option will replace your table and contained data."
msgstr "" msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්‍රතිස්ථාපනය කෙරෙනු ඇත."
#: tbl_tracking.php:503 #: tbl_tracking.php:503
msgid "SQL execution" msgid "SQL execution"
msgstr "" msgstr "SQL ක්‍රියාත්මක කිරීම"
#: tbl_tracking.php:515 #: tbl_tracking.php:515
#, fuzzy, php-format #, php-format
msgid "Export as %s" msgid "Export as %s"
msgstr "අපනයන වර්ගය" msgstr "අපනයන කරන්න %s ලෙස"
#: tbl_tracking.php:555 #: tbl_tracking.php:555
msgid "Show versions" msgid "Show versions"
@@ -9868,11 +9843,11 @@ msgstr "අක්‍රීය කරන්න"
#: tbl_tracking.php:648 #: tbl_tracking.php:648
#, php-format #, php-format
msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s.%s"
msgstr "" msgstr "%s.%s සඳහා අවධානය සක්‍රීය කරන්න"
#: tbl_tracking.php:650 #: tbl_tracking.php:650
msgid "Activate now" msgid "Activate now"
msgstr "" msgstr "සක්‍රීය කරන්න"
#: tbl_tracking.php:663 #: tbl_tracking.php:663
#, php-format #, php-format
@@ -9902,7 +9877,7 @@ msgstr ""
#: themes.php:41 #: themes.php:41
msgid "Get more themes!" msgid "Get more themes!"
msgstr "" msgstr "තවත් තේමාවන් ලබා ගන්න!"
#: transformation_overview.php:24 #: transformation_overview.php:24
msgid "Available MIME types" msgid "Available MIME types"
@@ -9929,16 +9904,15 @@ msgstr "You don't have sufficient privileges to be here right now!"
#: user_password.php:110 #: user_password.php:110
msgid "The profile has been updated." msgid "The profile has been updated."
msgstr "The profile has been updated." msgstr "පරිශීලක පැතිකඩ යාවත්කාලීන කරන ලදි."
#: view_create.php:141 #: view_create.php:141
msgid "VIEW name" msgid "VIEW name"
msgstr "" msgstr "දසුනේ නම"
#: view_operations.php:91 #: view_operations.php:91
#, fuzzy
msgid "Rename view to" msgid "Rename view to"
msgstr "වගුව බවට නම වෙනස් කරන්න" msgstr "දසුනේ නම වෙනස් කරන්න"
#~ msgid "Background color" #~ msgid "Background color"
#~ msgstr "පසුබිම් වර්ණය" #~ msgstr "පසුබිම් වර්ණය"

View File

@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-15 08:56+0200\n" "POT-Creation-Date: 2011-04-15 08:56+0200\n"
"PO-Revision-Date: 2011-04-04 17:07+0200\n" "PO-Revision-Date: 2011-04-17 19:11+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n" "Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
"Language-Team: turkish <tr@li.org>\n" "Language-Team: turkish <tr@li.org>\n"
"Language: tr\n" "Language: tr\n"
@@ -2824,11 +2824,11 @@ msgstr "Veritabanlarının görüntü seçenekleri"
#: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18
msgid "Navigation frame" msgid "Navigation frame"
msgstr "Rehber çerçevesi" msgstr "Rehber çerçeve"
#: libraries/config/messages.inc.php:177 #: libraries/config/messages.inc.php:177
msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation frame"
msgstr "Rehber çerçevesinin görünümünü özelleştirir" msgstr "Rehber çerçevenin görünümünü özelleştirir"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42 #: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
#: setup/frames/index.inc.php:98 #: setup/frames/index.inc.php:98
@@ -3186,7 +3186,7 @@ msgid ""
"Only light version; display databases in a tree (determined by the separator " "Only light version; display databases in a tree (determined by the separator "
"defined below)" "defined below)"
msgstr "" msgstr ""
"Sadece hafif sürümde; veritabanları ağaç içinde görüntülenir (aşağıda " "Sadece sade sürümde; veritabanları ağaç içinde görüntülenir (aşağıda "
"tanımlanan ayıraçlar tarafından belirlenir)" "tanımlanan ayıraçlar tarafından belirlenir)"
#: libraries/config/messages.inc.php:273 #: libraries/config/messages.inc.php:273
@@ -3200,7 +3200,7 @@ msgstr ""
#: libraries/config/messages.inc.php:275 #: libraries/config/messages.inc.php:275
msgid "Use light version" msgid "Use light version"
msgstr "Hafif sürümü kullan" msgstr "Sade sürümü kullan"
#: libraries/config/messages.inc.php:276 #: libraries/config/messages.inc.php:276
msgid "Maximum table tree depth" msgid "Maximum table tree depth"
@@ -3227,8 +3227,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])" "([kbd]new[/kbd])"
msgstr "" msgstr ""
"Bağlantılı sayfayı ana pencerede ([kbd]ana[/kbd]) veya yeni bir tanede ([kbd]" "Bağlantılı sayfayı ana pencerede ([kbd]main[/kbd]) veya yeni bir tanede "
"yeni[/kbd]) açar" "([kbd]new[/kbd]) açar"
#: libraries/config/messages.inc.php:282 #: libraries/config/messages.inc.php:282
msgid "Logo link target" msgid "Logo link target"
@@ -3248,7 +3248,7 @@ msgstr "Az grafiksel yoğunlukta sekmeler kullanılır"
#: libraries/config/messages.inc.php:286 #: libraries/config/messages.inc.php:286
msgid "Light tabs" msgid "Light tabs"
msgstr "Hafif sekmeler" msgstr "Sade sekmeler"
#: libraries/config/messages.inc.php:287 #: libraries/config/messages.inc.php:287
msgid "" msgid ""
@@ -7029,7 +7029,7 @@ msgid ""
"automatically." "automatically."
msgstr "" msgstr ""
"Javascript desteği eksik ya da tarayıcınızda etkisizleştirilmiş, bazı " "Javascript desteği eksik ya da tarayıcınızda etkisizleştirilmiş, bazı "
"phpMyAdmin işevselliği eksik olacaktır. Örneğin rehber çerçeveyi otomatik " "phpMyAdmin işlevselliği eksik olacaktır. Örneğin rehber çerçeveyi otomatik "
"olarak yenilemeyecek." "olarak yenilemeyecek."
#: main.php:343 #: main.php:343

View File

@@ -78,7 +78,7 @@ foreach ($mysql_charsets as $current_charset) {
$odd_row = true; $odd_row = true;
foreach ($mysql_collations[$current_charset] as $current_collation) { foreach ($mysql_collations[$current_charset] as $current_collation) {
$i++; $i++;
echo '<tr class="' echo '<tr class="noclick '
. ($odd_row ? 'odd' : 'even') . ($odd_row ? 'odd' : 'even')
. ($mysql_default_collations[$current_charset] == $current_collation . ($mysql_default_collations[$current_charset] == $current_collation
? ' marked' ? ' marked'

View File

@@ -2261,7 +2261,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
$current_privileges[] = $row; $current_privileges[] = $row;
$row = PMA_DBI_fetch_assoc($res); $row = PMA_DBI_fetch_assoc($res);
} }
echo ' <tr class="' . ($odd_row ? 'odd' : 'even') . '">' . "\n" echo ' <tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
. ' <td'; . ' <td';
if (count($current_privileges) > 1) { if (count($current_privileges) > 1) {
echo ' rowspan="' . count($current_privileges) . '"'; echo ' rowspan="' . count($current_privileges) . '"';

View File

@@ -54,11 +54,11 @@ $result = PMA_DBI_query($sql_query);
<thead> <thead>
<tr> <tr>
<?php if (!PMA_DRIZZLE): ?> <?php if (!PMA_DRIZZLE): ?>
<td><a href="<?php echo $full_text_link; ?>" <th><a href="<?php echo $full_text_link; ?>"
title="<?php echo empty($full) ? __('Show Full Queries') : __('Truncate Shown Queries'); ?>"> title="<?php echo empty($full) ? __('Show Full Queries') : __('Truncate Shown Queries'); ?>">
<img src="<?php echo $pmaThemeImage . 's_' . (empty($_REQUEST['full']) ? 'full' : 'partial'); ?>text.png" <img src="<?php echo $pmaThemeImage . 's_' . (empty($_REQUEST['full']) ? 'full' : 'partial'); ?>text.png"
alt="<?php echo empty($_REQUEST['full']) ? __('Show Full Queries') : __('Truncate Shown Queries'); ?>" /> alt="<?php echo empty($_REQUEST['full']) ? __('Show Full Queries') : __('Truncate Shown Queries'); ?>" />
</a></td> </a></th>
<?php else: ?> <?php else: ?>
<th></th> <th></th>
<?php endif; ?> <?php endif; ?>

View File

@@ -93,7 +93,7 @@ foreach ($serverVars as $name => $value) {
if ($serverVarsGlobal[$name] !== $value) { if ($serverVarsGlobal[$name] !== $value) {
?> ?>
</tr> </tr>
<tr class="<?php <tr class="noclick <?php
echo $odd_row ? 'odd' : 'even'; echo $odd_row ? 'odd' : 'even';
?> marked"> ?> marked">
<td>(<?php echo __('Global value'); ?>)</td> <td>(<?php echo __('Global value'); ?>)</td>

View File

@@ -1441,6 +1441,7 @@ table#serverconnection_trg_local {
border-radius: 11px; border-radius: 11px;
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc)); background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc); background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -o-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
border: 1px solid #444444; border: 1px solid #444444;
cursor: pointer; cursor: pointer;

View File

@@ -192,18 +192,36 @@ div#left_tableList li {
white-space: nowrap; white-space: nowrap;
} }
#newtable{border:1px solid #aaa;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;margin-top:15px !important;padding:1px !important; #newtable {
margin-top: 15px !important;
}
#newtable a {
display: block;
padding: 1px;
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc)); background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc); background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -o-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
border: 1px solid #aaa;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
} }
#newtable:hover{
#newtable li:hover {
background: transparent !important;
}
#newtable a:hover {
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)) !important; background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)) !important;
background: -moz-linear-gradient(top, #cccccc, #dddddd) !important; background: -moz-linear-gradient(top, #cccccc, #dddddd) !important;
background: -o-linear-gradient(top, #cccccc, #dddddd) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd') !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd') !important;
cursor:pointer !important; }
#newtable li a:hover {
text-decoration: none;
} }
select{ select{

View File

@@ -100,6 +100,7 @@ a:hover {
border-radius:5px; border-radius:5px;
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc)); background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc); background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -o-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
} }
@@ -118,9 +119,8 @@ th {
background: #f3f3f3; background: #f3f3f3;
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc)); background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc); background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -o-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
} }
a img { a img {
@@ -191,12 +191,14 @@ input[type=submit]{
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc)); background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc); background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -o-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
} }
input[type=submit]:hover{ position: relative; input[type=submit]:hover{ position: relative;
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)); background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
background: -moz-linear-gradient(top, #cccccc, #dddddd); background: -moz-linear-gradient(top, #cccccc, #dddddd);
background: -o-linear-gradient(top, #cccccc, #dddddd);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
cursor:pointer; cursor:pointer;
} }
@@ -289,6 +291,15 @@ select{
background:url(./themes/pmahomme/img/input_bg.gif) background:url(./themes/pmahomme/img/input_bg.gif)
} }
select[multiple] {
background: #fff;
background: -webkit-gradient(linear, center top, center bottom, from(#fff), color-stop(0.8, #f1f1f1), to(#fbfbfb));
background: -webkit-linear-gradient(#fff, #f1f1f1 80%, #fbfbfb);
background: -moz-linear-gradient(#fff, #f1f1f1 80%, #fbfbfb);
/* none for Opera 11.10 as <option>s always have solid white background */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2');
}
/******************************************************************************/ /******************************************************************************/
/* classes */ /* classes */
div.tools { div.tools {
@@ -340,12 +351,14 @@ button.mult_submit {
table tr.odd th, table tr.odd th,
.odd { .odd {
background: #fff; background: #fff;
filter: none;
} }
/* even items 2,4,6,8,... */ /* even items 2,4,6,8,... */
table tr.even th, table tr.even th,
.even { .even {
background: #f3f3f3; background: #f3f3f3;
filter: none;
} }
/* odd table rows 1,3,5,7,... */ /* odd table rows 1,3,5,7,... */
@@ -1310,11 +1323,13 @@ div#querywindowcontainer fieldset {
*/ */
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc)); background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc); background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -o-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
} }
#sectionlinks a:hover, #statuslinks a:hover{ #sectionlinks a:hover, #statuslinks a:hover{
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)); background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
background: -moz-linear-gradient(top, #cccccc, #dddddd); background: -moz-linear-gradient(top, #cccccc, #dddddd);
background: -o-linear-gradient(top, #cccccc, #dddddd);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
} }
@@ -1747,12 +1762,14 @@ table#serverconnection_trg_local {
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc)); background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
background: -moz-linear-gradient(top, #ffffff, #cccccc); background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -o-linear-gradient(top, #ffffff, #cccccc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
cursor: pointer; cursor: pointer;
} }
#buttonGo:hover{ #buttonGo:hover{
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)); background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
background: -moz-linear-gradient(top, #cccccc, #dddddd); background: -moz-linear-gradient(top, #cccccc, #dddddd);
background: -o-linear-gradient(top, #cccccc, #dddddd);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
} }
@@ -1929,21 +1946,21 @@ iframe.IE_hack {
-moz-border-radius:5px 5px 0 0; -moz-border-radius:5px 5px 0 0;
-webkit-border-radius:5px 5px 0 0; -webkit-border-radius:5px 5px 0 0;
border-radius:5px 5px 0 0; border-radius:5px 5px 0 0;
background:#d5d5d5; background:#f2f2f2;
color:#fff; color:#555;
text-shadow: 0 1px 0 #fff;
} }
.config-form ul.tabs li a:hover, .config-form ul.tabs li a:hover,
.config-form ul.tabs li a:active, .config-form ul.tabs li a:active {
.config-form ul.tabs li a.active { background:#e5e5e5;
/*margin: 0;*/
/*padding: 0.1em 0.6em 0.2em;*/
} }
.config-form ul.tabs li a.active { .config-form ul.tabs li a.active {
background-color: #fff; background-color: #fff;
margin-top:1px; margin-top:1px;
color:#000; color:#000;
text-shadow: none;
} }
.config-form fieldset { .config-form fieldset {
@@ -2018,6 +2035,7 @@ iframe.IE_hack {
.config-form fieldset th, .config-form fieldset td { .config-form fieldset th, .config-form fieldset td {
border-top: 1px <?php echo $GLOBALS['cfg']['BgTwo']; ?> solid; border-top: 1px <?php echo $GLOBALS['cfg']['BgTwo']; ?> solid;
border-right: none;
} }
fieldset .group-header th { fieldset .group-header th {