Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
This commit is contained in:
@@ -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="shortcut icon" href="./favicon.ico" type="image/x-icon" />
|
||||
<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" />
|
||||
</head>
|
||||
|
||||
@@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
|
||||
<div id="header">
|
||||
<h1>
|
||||
<a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a>
|
||||
3.4.0-rc1-dev
|
||||
3.4.0-rc2-dev
|
||||
Documentation
|
||||
</h1>
|
||||
</div>
|
||||
|
2
README
2
README
@@ -1,7 +1,7 @@
|
||||
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.
|
||||
|
||||
|
@@ -85,7 +85,7 @@ if (is_array($foreignData['disp_row'])) {
|
||||
<link rel="stylesheet" type="text/css"
|
||||
href="phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=right&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
|
||||
<?php
|
||||
// includes everything asked for by libraries/common.inc.php
|
||||
// includes everything asked for by libraries/common.inc.php
|
||||
require_once './libraries/header_scripts.inc.php';
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
@@ -95,7 +95,7 @@ require_once './libraries/header_scripts.inc.php';
|
||||
var $inline = window.opener.jQuery('.browse_foreign_clicked');
|
||||
if ($inline.length != 0) {
|
||||
$inline.removeClass('browse_foreign_clicked')
|
||||
// puts new value in the previous element which is
|
||||
// puts new value in the previous element which is
|
||||
// a span with class curr_value
|
||||
.prev().text(key);
|
||||
self.close();
|
||||
@@ -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">
|
||||
<?php
|
||||
echo ($key_ordered_current_equals_data ? '<strong>' : '')
|
||||
|
@@ -1114,7 +1114,7 @@ function changeMIMEType(db, table, reference, mime_type)
|
||||
$(document).ready(function(){
|
||||
var oldText,db,table,token,sql_query;
|
||||
oldText=$(".inner_sql").html();
|
||||
$("#inline_edit").click(function(){
|
||||
$("#inline_edit").live('click',function(){
|
||||
db=$("input[name='db']").val();
|
||||
table=$("input[name='table']").val();
|
||||
token=$("input[name='token']").val();
|
||||
|
@@ -1058,8 +1058,11 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
|
||||
function PMA_changeClassForColumn($this_th, newclass) {
|
||||
// index 0 is the th containing the big T
|
||||
var th_index = $this_th.index();
|
||||
var has_big_t = !$this_th.closest('tr').children(':first').hasClass('column_heading');
|
||||
// .eq() is zero-based
|
||||
th_index--;
|
||||
if (has_big_t) {
|
||||
th_index--;
|
||||
}
|
||||
var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')');
|
||||
if ($this_th.data('has_class_'+newclass)) {
|
||||
$tds.removeClass(newclass);
|
||||
|
@@ -96,7 +96,7 @@ class PMA_Config
|
||||
*/
|
||||
function checkSystem()
|
||||
{
|
||||
$this->set('PMA_VERSION', '3.4.0-rc1-dev');
|
||||
$this->set('PMA_VERSION', '3.4.0-rc2-dev');
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
|
@@ -1133,10 +1133,11 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
|
||||
if (! empty($GLOBALS['validatequery'])) {
|
||||
$explain_params['validatequery'] = 1;
|
||||
}
|
||||
|
||||
$is_select = false;
|
||||
if (preg_match('@^SELECT[[:space:]]+@i', $sql_query)) {
|
||||
$explain_params['sql_query'] = 'EXPLAIN ' . $sql_query;
|
||||
$_message = __('Explain SQL');
|
||||
$is_select = true;
|
||||
} elseif (preg_match('@^EXPLAIN[[:space:]]+SELECT[[:space:]]+@i', $sql_query)) {
|
||||
$explain_params['sql_query'] = substr($sql_query, 8);
|
||||
$_message = __('Skip Explain SQL');
|
||||
@@ -1254,13 +1255,13 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
|
||||
|
||||
// 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
|
||||
// have two similar mechanisms on the page for the same goal
|
||||
if ($GLOBALS['is_ajax_request'] === false) {
|
||||
// have two similar mechanisms on the page for the same goal
|
||||
if ($is_select || $GLOBALS['is_ajax_request'] === false) {
|
||||
// see in js/functions.js the jQuery code attached to id inline_edit
|
||||
// document.write conflicts with jQuery, hence used $().append()
|
||||
echo "<script type=\"text/javascript\">\n" .
|
||||
"//<![CDATA[\n" .
|
||||
"$('.tools').append('[<a href=\"#\" title=\"" .
|
||||
"$('.tools form').after('[<a href=\"#\" title=\"" .
|
||||
PMA_escapeJsString(__('Inline edit of this query')) .
|
||||
"\" id=\"inline_edit\">" .
|
||||
PMA_escapeJsString(__('Inline')) .
|
||||
|
@@ -1747,11 +1747,11 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
}
|
||||
}
|
||||
|
||||
if ($in_limit) {
|
||||
if ($in_limit) {
|
||||
if ($upper_data == 'OFFSET') {
|
||||
$limit_clause .= $sep;
|
||||
}
|
||||
$limit_clause .= $arr[$i]['data'];
|
||||
$limit_clause .= $arr[$i]['data'];
|
||||
if ($upper_data == 'LIMIT' || $upper_data == 'OFFSET') {
|
||||
$limit_clause .= $sep;
|
||||
}
|
||||
@@ -2119,8 +2119,8 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
// of $cfg['SQP']['fmtType'] to make possible a replacement
|
||||
// for inline editing
|
||||
if ($mode!='query_only') {
|
||||
$str .= '<span class="inner_sql">';
|
||||
}
|
||||
$str .= '<span class="inner_sql">';
|
||||
}
|
||||
$close_docu_link = false;
|
||||
$indent = 0;
|
||||
$bracketlevel = 0;
|
||||
@@ -2296,20 +2296,20 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
}
|
||||
break;
|
||||
case 'punct_bracket_close_round':
|
||||
// only close bracket level when it was opened before
|
||||
if ($bracketlevel > 0) {
|
||||
$bracketlevel--;
|
||||
if ($infunction == TRUE) {
|
||||
$functionlevel--;
|
||||
$after .= ' ';
|
||||
$before .= ' ';
|
||||
} else {
|
||||
$indent--;
|
||||
$before .= ($mode != 'query_only' ? '</div>' : ' ');
|
||||
}
|
||||
$infunction = ($functionlevel > 0) ? TRUE : FALSE;
|
||||
}
|
||||
break;
|
||||
// only close bracket level when it was opened before
|
||||
if ($bracketlevel > 0) {
|
||||
$bracketlevel--;
|
||||
if ($infunction == TRUE) {
|
||||
$functionlevel--;
|
||||
$after .= ' ';
|
||||
$before .= ' ';
|
||||
} else {
|
||||
$indent--;
|
||||
$before .= ($mode != 'query_only' ? '</div>' : ' ');
|
||||
}
|
||||
$infunction = ($functionlevel > 0) ? TRUE : FALSE;
|
||||
}
|
||||
break;
|
||||
case 'alpha_columnType':
|
||||
if ($docu) {
|
||||
switch ($arr[$i]['data']) {
|
||||
@@ -2612,20 +2612,20 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
}
|
||||
$str .= $after;
|
||||
} // end for
|
||||
// close unclosed indent levels
|
||||
while ($indent > 0) {
|
||||
$indent--;
|
||||
$str .= ($mode != 'query_only' ? '</div>' : ' ');
|
||||
}
|
||||
// close unclosed indent levels
|
||||
while ($indent > 0) {
|
||||
$indent--;
|
||||
$str .= ($mode != 'query_only' ? '</div>' : ' ');
|
||||
}
|
||||
/* End possibly unclosed documentation link */
|
||||
if ($close_docu_link) {
|
||||
$str .= '</a>';
|
||||
$close_docu_link = false;
|
||||
}
|
||||
if ($mode!='query_only') {
|
||||
// close inner_sql span
|
||||
$str .= '</span>';
|
||||
}
|
||||
// close inner_sql span
|
||||
$str .= '</span>';
|
||||
}
|
||||
if ($mode=='color') {
|
||||
// close syntax span
|
||||
$str .= '</span>';
|
||||
|
@@ -235,9 +235,9 @@ if (! $GLOBALS['server']) {
|
||||
// In this case, the database should not be collapsible/expandable
|
||||
|
||||
$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"'
|
||||
.' width="9" height="9" alt="-" />';
|
||||
.' alt="-" />';
|
||||
|
||||
$href_left = '<a onclick="if (toggle(\'%d\')) return false;"'
|
||||
.' href="navigation.php?%s" target="_self">';
|
||||
@@ -304,9 +304,11 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) {
|
||||
echo __('No tables found in database.');
|
||||
}
|
||||
unset($table_list);
|
||||
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') . '" />'
|
||||
. _pgettext('short form', 'Create table') . '</a></li></ul>';
|
||||
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'])) . '">'
|
||||
.'<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>';
|
||||
}
|
||||
} elseif ($GLOBALS['cfg']['LeftFrameLight']) {
|
||||
/* No need to tell user to select database if we're showing complete list */
|
||||
if (!$list) {
|
||||
|
231
po/id.po
231
po/id.po
@@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-04-15 08:56+0200\n"
|
||||
"PO-Revision-Date: 2011-04-14 21:37+0200\n"
|
||||
"Last-Translator: <udienz@ubuntu.com>\n"
|
||||
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
|
||||
"Last-Translator: <aris_feryanto@yahoo.com>\n"
|
||||
"Language-Team: indonesian <id@li.org>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -91,7 +91,7 @@ msgstr "Deskripsi"
|
||||
#: browse_foreigners.php:248 browse_foreigners.php:257
|
||||
#: browse_foreigners.php:269 browse_foreigners.php:277
|
||||
msgid "Use this value"
|
||||
msgstr "gunakan nilai ini"
|
||||
msgstr "Gunakan nilai ini"
|
||||
|
||||
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
|
||||
#: libraries/blobstreaming.lib.php:331
|
||||
@@ -239,7 +239,7 @@ msgstr "Cetak"
|
||||
|
||||
#: db_export.php:30
|
||||
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
|
||||
#: 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
|
||||
#: view_operations.php:60
|
||||
msgid "Your SQL query has been executed successfully"
|
||||
msgstr "Sukses menjalankan perintah SQL"
|
||||
msgstr "Query SQL Anda berhasil dieksekusi"
|
||||
|
||||
#: db_qbe.php:38
|
||||
msgid "You have to choose at least one column to display"
|
||||
@@ -423,7 +423,7 @@ msgstr "Beralih ke"
|
||||
|
||||
#: db_qbe.php:183
|
||||
msgid "visual builder"
|
||||
msgstr "Pembuat tampilan"
|
||||
msgstr "pembangun visual"
|
||||
|
||||
#: db_qbe.php:219 libraries/db_structure.lib.php:95
|
||||
#: libraries/display_tbl.lib.php:852
|
||||
@@ -489,7 +489,7 @@ msgstr "Update proses pencarian"
|
||||
|
||||
#: db_qbe.php:636
|
||||
msgid "Use Tables"
|
||||
msgstr "Gunakan tabel"
|
||||
msgstr "Gunakan Tabel"
|
||||
|
||||
#: db_qbe.php:659
|
||||
#, php-format
|
||||
@@ -498,7 +498,7 @@ msgstr "Pencarian SQL dalam database <b>%s</b>:"
|
||||
|
||||
#: db_qbe.php:953 libraries/common.lib.php:1187
|
||||
msgid "Submit Query"
|
||||
msgstr "Jalankan pencarian SQL"
|
||||
msgstr "Jalankan Pencarian SQL"
|
||||
|
||||
#: db_search.php:52 libraries/auth/config.auth.lib.php:83
|
||||
#: libraries/auth/config.auth.lib.php:102
|
||||
@@ -803,11 +803,11 @@ msgstr "Masukkan setiap nilai dalam bidang yang terpisah."
|
||||
|
||||
#: enum_editor.php:57
|
||||
msgid "+ Restart insertion and add a new value"
|
||||
msgstr ""
|
||||
msgstr "+ Ulang pemasukan dan tambahkan sebuah nilai baru"
|
||||
|
||||
#: enum_editor.php:67
|
||||
msgid "Output"
|
||||
msgstr ""
|
||||
msgstr "Keluaran"
|
||||
|
||||
#: enum_editor.php:68
|
||||
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 "
|
||||
"file and import will resume."
|
||||
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
|
||||
msgid ""
|
||||
"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."
|
||||
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
|
||||
#: 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
|
||||
msgid "Dropping Event"
|
||||
msgstr ""
|
||||
msgstr "Menghapus Event"
|
||||
|
||||
#: js/messages.php:33
|
||||
#, fuzzy
|
||||
msgid "Dropping Procedure"
|
||||
msgstr "Proses Aktif"
|
||||
msgstr "Menghapus Procedure"
|
||||
|
||||
#: js/messages.php:35
|
||||
msgid "Deleting tracking data"
|
||||
msgstr "Hapus pelacakan data"
|
||||
msgstr "Hapus data pelacakan"
|
||||
|
||||
#: js/messages.php:36
|
||||
msgid "Dropping Primary Key/Index"
|
||||
msgstr ""
|
||||
msgstr "Menghapus Primary Key/Index"
|
||||
|
||||
#: js/messages.php:37
|
||||
msgid "This operation could take a long time. Proceed anyway?"
|
||||
@@ -972,6 +976,8 @@ msgstr "Anda akan MENONAKTIFKAN repositori BLOB!"
|
||||
#, php-format
|
||||
msgid "Are you sure you want to disable all BLOB references for database %s?"
|
||||
msgstr ""
|
||||
"Apakah Anda yakin ingin menonaktifkan semua referensi BLOB untuk database %"
|
||||
"s?"
|
||||
|
||||
#: js/messages.php:44
|
||||
msgid "Missing value in the form!"
|
||||
@@ -1067,10 +1073,9 @@ msgid "Changing Charset"
|
||||
msgstr "Perangkat karakter (Charset)"
|
||||
|
||||
#: js/messages.php:75
|
||||
#, fuzzy
|
||||
#| msgid "Table must have at least one field."
|
||||
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
|
||||
msgid "Create Table"
|
||||
@@ -1089,10 +1094,9 @@ msgid "Show query box"
|
||||
msgstr "Tampilkan kotak query"
|
||||
|
||||
#: js/messages.php:88
|
||||
#, fuzzy
|
||||
#| msgid "Engines"
|
||||
msgid "Inline Edit"
|
||||
msgstr "Mesin"
|
||||
msgstr "Inline Edit"
|
||||
|
||||
#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
|
||||
#: libraries/schema/User_Schema.class.php:317
|
||||
@@ -1121,17 +1125,16 @@ msgid "Ignore"
|
||||
msgstr "Abaikan"
|
||||
|
||||
#: js/messages.php:100
|
||||
#, fuzzy
|
||||
msgid "Select referenced key"
|
||||
msgstr "Pilih rujukan kunci"
|
||||
msgstr "Pilih kunci rujukan"
|
||||
|
||||
#: js/messages.php:101
|
||||
msgid "Select Foreign Key"
|
||||
msgstr ""
|
||||
msgstr "Pilih Foreign Key"
|
||||
|
||||
#: js/messages.php:102
|
||||
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
|
||||
msgid "Choose column to display"
|
||||
@@ -1163,6 +1166,8 @@ msgid ""
|
||||
"A newer version of phpMyAdmin is available and you should consider "
|
||||
"upgrading. The newest version is %s, released on %s."
|
||||
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
|
||||
#: js/messages.php:119
|
||||
@@ -1526,24 +1531,27 @@ msgstr "Basisdata"
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
# No difference between singular and plural in this case for Indonesian language.
|
||||
#: libraries/Message.class.php:281
|
||||
#, php-format
|
||||
msgid "%1$d row 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
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%1$d row 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
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "No rows selected"
|
||||
msgid "%1$d row 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
|
||||
msgid ""
|
||||
@@ -1610,16 +1618,16 @@ msgstr "Tema %s tidak ditemukan!"
|
||||
#: libraries/Theme_Manager.class.php:215
|
||||
#, php-format
|
||||
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
|
||||
#: themes.php:40
|
||||
msgid "Theme / Style"
|
||||
msgstr "Desain Penampilan"
|
||||
msgstr "Tema / Tampilan"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:76
|
||||
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/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 "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"anda mungkin belum membuat file konfigurasi. anda bisa menggunakan %1$ssetup "
|
||||
"script%2$s untuk membuatnya"
|
||||
"Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup "
|
||||
"script%2$s untuk membuatnya."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@@ -1665,10 +1673,11 @@ msgstr "Dokumentasi phpMyAdmin"
|
||||
#: libraries/auth/cookie.auth.lib.php:244
|
||||
msgid "You can enter hostname/IP address and port separated by space."
|
||||
msgstr ""
|
||||
"Anda bisa memasukkan hostname/alamat IP dan port dipisahkan dengan spasi."
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:243
|
||||
msgid "Server:"
|
||||
msgstr "Server"
|
||||
msgstr "Server:"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:248
|
||||
msgid "Username:"
|
||||
@@ -1684,13 +1693,15 @@ msgstr "Pilihan Server"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:72
|
||||
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/signon.auth.lib.php:206
|
||||
msgid ""
|
||||
"Login without a password is forbidden by configuration (see AllowNoPassword)"
|
||||
msgstr ""
|
||||
"Masuk tanpa kata sandi tidak diperbolehkan dalam konfigurasi (lihat "
|
||||
"AllowNoPassword)"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:647
|
||||
#: libraries/auth/signon.auth.lib.php:210
|
||||
@@ -1706,35 +1717,34 @@ msgstr "Gagal login ke MySQL server"
|
||||
|
||||
#: libraries/auth/http.auth.lib.php:69
|
||||
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
|
||||
#, php-format
|
||||
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:180
|
||||
msgid "Hardware authentication failed"
|
||||
msgstr ""
|
||||
msgstr "Autentikasi perangkat keras gagal"
|
||||
|
||||
#: libraries/auth/swekey/swekey.auth.lib.php:166
|
||||
msgid "No valid authentication key plugged"
|
||||
msgstr ""
|
||||
msgstr "Tidak ada kunci autentikasi yang terpasang"
|
||||
|
||||
#: libraries/auth/swekey/swekey.auth.lib.php:202
|
||||
msgid "Authenticating..."
|
||||
msgstr ""
|
||||
msgstr "Melakukan autentikasi..."
|
||||
|
||||
#: libraries/blobstreaming.lib.php:241
|
||||
msgid "PBMS error"
|
||||
msgstr ""
|
||||
msgstr "Kesalahan PBMS"
|
||||
|
||||
#: libraries/blobstreaming.lib.php:267
|
||||
#, fuzzy
|
||||
#| msgid "MySQL connection collation"
|
||||
msgid "PBMS connection failed:"
|
||||
msgstr "Penyortiran koneksi MySQL"
|
||||
msgstr "Koneksi PBMS gagal:"
|
||||
|
||||
#: libraries/blobstreaming.lib.php:312
|
||||
msgid "PBMS get BLOB info failed:"
|
||||
@@ -1742,7 +1752,7 @@ msgstr ""
|
||||
|
||||
#: libraries/blobstreaming.lib.php:320
|
||||
msgid "get BLOB Content-Type failed"
|
||||
msgstr ""
|
||||
msgstr "gagal mengambil BLOB Content-Type"
|
||||
|
||||
#: libraries/blobstreaming.lib.php:347
|
||||
msgid "View image"
|
||||
@@ -1750,11 +1760,11 @@ msgstr "Tampilan View"
|
||||
|
||||
#: libraries/blobstreaming.lib.php:351
|
||||
msgid "Play audio"
|
||||
msgstr " Memainkan file suara"
|
||||
msgstr "Memainkan file suara"
|
||||
|
||||
#: libraries/blobstreaming.lib.php:356
|
||||
msgid "View video"
|
||||
msgstr " Lihat Video"
|
||||
msgstr "Lihat video"
|
||||
|
||||
#: libraries/blobstreaming.lib.php:360
|
||||
msgid "Download file"
|
||||
@@ -1763,7 +1773,7 @@ msgstr "Unduh file"
|
||||
#: libraries/blobstreaming.lib.php:421
|
||||
#, php-format
|
||||
msgid "Could not open file: %s"
|
||||
msgstr ""
|
||||
msgstr "Tidak bisa membuka arsip: %s"
|
||||
|
||||
#: libraries/bookmark.lib.php:83
|
||||
msgid "shared"
|
||||
@@ -1800,18 +1810,16 @@ msgid "Overhead"
|
||||
msgstr "Kelebihan (Overhead)"
|
||||
|
||||
#: libraries/build_html_for_db.lib.php:93
|
||||
#, fuzzy
|
||||
msgid "Jump to database"
|
||||
msgstr "Database tidak ditemukan"
|
||||
msgstr "Beralih ke database"
|
||||
|
||||
#: libraries/build_html_for_db.lib.php:130
|
||||
msgid "Not replicated"
|
||||
msgstr ""
|
||||
msgstr "Tidak direplikasi"
|
||||
|
||||
#: libraries/build_html_for_db.lib.php:136
|
||||
#, fuzzy
|
||||
msgid "Replicated"
|
||||
msgstr "Tabel Relasi"
|
||||
msgstr "Direplikasi"
|
||||
|
||||
#: libraries/build_html_for_db.lib.php:150
|
||||
#, php-format
|
||||
@@ -1823,31 +1831,29 @@ msgid "Check Privileges"
|
||||
msgstr "Periksa hak-hak"
|
||||
|
||||
#: libraries/chart.lib.php:40
|
||||
#, fuzzy
|
||||
msgid "Query statistics"
|
||||
msgstr "Statistik Baris"
|
||||
msgstr "Statistik query"
|
||||
|
||||
#: libraries/chart.lib.php:63
|
||||
msgid "Query execution time comparison (in microseconds)"
|
||||
msgstr ""
|
||||
msgstr "Perbandingan waktu eksekusi query (dalam mikrodetik)"
|
||||
|
||||
#: libraries/chart.lib.php:83
|
||||
#, fuzzy
|
||||
#| msgid "SQL result"
|
||||
msgid "Query results"
|
||||
msgstr "Hasil SQL"
|
||||
msgstr "Hasil query"
|
||||
|
||||
#: libraries/chart.lib.php:109
|
||||
msgid "No data found for the chart."
|
||||
msgstr ""
|
||||
msgstr "Tidak ditemukan data untuk diagram."
|
||||
|
||||
#: libraries/chart.lib.php:249
|
||||
msgid "GD extension is needed for charts."
|
||||
msgstr ""
|
||||
msgstr "Ekstensi GD diperlukan untuk diagram."
|
||||
|
||||
#: libraries/chart.lib.php:252
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
msgstr "JSON encoder diperlukan untuk tooltips pada diagram."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
msgid ""
|
||||
@@ -1866,10 +1872,10 @@ msgstr ""
|
||||
"masalah."
|
||||
|
||||
#: 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"
|
||||
msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\""
|
||||
msgstr "Tidak dapat memuat konfigurasi default dari: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
msgid ""
|
||||
@@ -1881,12 +1887,14 @@ msgstr ""
|
||||
#: libraries/common.inc.php:622
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
msgstr "Indeks server tidak sah: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
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/header.inc.php:115 main.php:178 server_synchronize.php:1156
|
||||
@@ -1896,7 +1904,7 @@ msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
msgstr "Metode autentikasi dalam konfigurasi tidak sah:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#, php-format
|
||||
@@ -1948,7 +1956,7 @@ msgstr "MySQL menyatakan: "
|
||||
|
||||
#: libraries/common.lib.php:1098
|
||||
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
|
||||
msgid "Explain SQL"
|
||||
@@ -1981,17 +1989,16 @@ msgstr "Mengesahkan (validate) SQL"
|
||||
|
||||
#: libraries/common.lib.php:1264
|
||||
msgid "Inline edit of this query"
|
||||
msgstr ""
|
||||
msgstr "Inline edit untuk query ini"
|
||||
|
||||
#: libraries/common.lib.php:1266
|
||||
#, fuzzy
|
||||
#| msgid "Engines"
|
||||
msgid "Inline"
|
||||
msgstr "Mesin"
|
||||
msgstr "Inline"
|
||||
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:1349
|
||||
msgid "Profiling"
|
||||
msgstr ""
|
||||
msgstr "Profiling"
|
||||
|
||||
#: libraries/common.lib.php:1354 libraries/tbl_triggers.lib.php:27
|
||||
#: server_processlist.php:70
|
||||
@@ -2072,7 +2079,7 @@ msgstr "Lompat langsung ke database "%s"."
|
||||
#: libraries/common.lib.php:2465
|
||||
#, php-format
|
||||
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:3017 libraries/config/setup.forms.php:291
|
||||
@@ -2109,34 +2116,32 @@ msgstr "Operasi"
|
||||
|
||||
#: libraries/common.lib.php:2965
|
||||
msgid "Browse your computer:"
|
||||
msgstr ""
|
||||
msgstr "Telusuri komputer Anda:"
|
||||
|
||||
#: libraries/common.lib.php:2978
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "web server upload directory"
|
||||
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
|
||||
#: tbl_change.php:959
|
||||
msgid "The directory you set for upload work cannot be reached"
|
||||
msgstr ""
|
||||
"Direktori yang telah ditetapkan untuk meng-upload tidak dapat dihubungi"
|
||||
msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi"
|
||||
|
||||
#: libraries/common.lib.php:2998
|
||||
msgid "There are no files to upload"
|
||||
msgstr ""
|
||||
msgstr "Tidak ada arsip untuk diunggah"
|
||||
|
||||
#: libraries/config.values.php:45 libraries/config.values.php:50
|
||||
msgid "Both"
|
||||
msgstr ""
|
||||
msgstr "Keduanya"
|
||||
|
||||
#: libraries/config.values.php:74
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
msgstr "Buka"
|
||||
|
||||
#: libraries/config.values.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Close"
|
||||
msgid "Closed"
|
||||
msgstr "Tutup"
|
||||
@@ -2145,129 +2150,125 @@ msgstr "Tutup"
|
||||
#: libraries/export/latex.php:41 libraries/export/odt.php:33
|
||||
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
|
||||
#: libraries/import.lib.php:1172
|
||||
#, fuzzy
|
||||
msgid "structure"
|
||||
msgstr "Struktur"
|
||||
msgstr "struktur"
|
||||
|
||||
#: libraries/config.values.php:96 libraries/export/htmlword.php:24
|
||||
#: libraries/export/latex.php:41 libraries/export/odt.php:33
|
||||
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
msgstr "data"
|
||||
|
||||
#: libraries/config.values.php:97 libraries/export/htmlword.php:24
|
||||
#: libraries/export/latex.php:41 libraries/export/odt.php:33
|
||||
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
|
||||
#, fuzzy
|
||||
#| msgid "Structure and data"
|
||||
msgid "structure and data"
|
||||
msgstr "Struktur dan data"
|
||||
msgstr "struktur dan data"
|
||||
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi"
|
||||
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
msgstr "Custom - menampilkan semua opsi yang mungkin untuk konfigurasi"
|
||||
|
||||
#: libraries/config.values.php:101
|
||||
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
|
||||
#, fuzzy
|
||||
#| msgid "Complete inserts"
|
||||
msgid "complete inserts"
|
||||
msgstr "INSERT lengkap"
|
||||
|
||||
#: libraries/config.values.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Extended inserts"
|
||||
msgid "extended inserts"
|
||||
msgstr "INSERT memperluas"
|
||||
msgstr "INSERT yang diperluas"
|
||||
|
||||
#: libraries/config.values.php:121
|
||||
msgid "both of the above"
|
||||
msgstr ""
|
||||
msgstr "keduanya dari yang di atas"
|
||||
|
||||
#: libraries/config.values.php:122
|
||||
msgid "neither of the above"
|
||||
msgstr ""
|
||||
msgstr "tidak keduanya dari yang di atas"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:83
|
||||
#: libraries/config/validate.lib.php:422
|
||||
msgid "Not a positive number"
|
||||
msgstr " Bukan angka positif"
|
||||
msgstr "Bukan angka positif"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:84
|
||||
#: libraries/config/validate.lib.php:435
|
||||
msgid "Not a non-negative number"
|
||||
msgstr ""
|
||||
msgstr "Bukan angka non-negatif"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:85
|
||||
#: libraries/config/validate.lib.php:409
|
||||
msgid "Not a valid port number"
|
||||
msgstr ""
|
||||
msgstr "Bukan angka port yang sah"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:86
|
||||
#: libraries/config/FormDisplay.class.php:574
|
||||
#: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450
|
||||
msgid "Incorrect value"
|
||||
msgstr ""
|
||||
msgstr "Nilai yang salah"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:87
|
||||
#: libraries/config/validate.lib.php:464
|
||||
#, php-format
|
||||
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
|
||||
#, php-format
|
||||
msgid "Missing data for %s"
|
||||
msgstr ""
|
||||
msgstr "Data hilang untuk %s"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:736
|
||||
#: libraries/config/FormDisplay.class.php:740
|
||||
#, fuzzy
|
||||
#| msgid "Variable"
|
||||
msgid "unavailable"
|
||||
msgstr "Variabel"
|
||||
msgstr "tidak tersedia"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:737
|
||||
#: libraries/config/FormDisplay.class.php:741
|
||||
#, php-format
|
||||
msgid "\"%s\" requires %s extension"
|
||||
msgstr ""
|
||||
msgstr "\"%s\" memerlukan ekstensi %s"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:755
|
||||
#, php-format
|
||||
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
|
||||
#, php-format
|
||||
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
|
||||
msgid "SQL Validator is disabled"
|
||||
msgstr ""
|
||||
msgstr "Validator SQL tidak diaktifkan"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:773
|
||||
#, fuzzy
|
||||
#| msgid "Link not found"
|
||||
msgid "SOAP extension not found"
|
||||
msgstr "Link tidak ditemukan"
|
||||
msgstr "Ekstensi SOAP tidak ditemukan"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:781
|
||||
#, php-format
|
||||
msgid "maximum %s"
|
||||
msgstr ""
|
||||
msgstr "maksimum %s"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:173
|
||||
msgid "This setting is disabled, it will not be applied to your configuration"
|
||||
msgstr ""
|
||||
"Pengaturan ini tidak diaktifkan, pengaturan tidak akan diterapkan pada "
|
||||
"konfigurasi anda"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
|
||||
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
|
||||
@@ -2277,16 +2278,16 @@ msgstr "Tidak aktif"
|
||||
#: libraries/config/FormDisplay.tpl.php:248
|
||||
#, php-format
|
||||
msgid "Set value: %s"
|
||||
msgstr ""
|
||||
msgstr "Tetapkan nilai: %s"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:253
|
||||
#: libraries/config/messages.inc.php:350
|
||||
msgid "Restore default value"
|
||||
msgstr ""
|
||||
msgstr "Kembalikan nilai default"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:269
|
||||
msgid "Allow users to customize this value"
|
||||
msgstr ""
|
||||
msgstr "Izinkan pengguna untuk mengubah nilai ini"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:333
|
||||
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
|
||||
@@ -2299,20 +2300,20 @@ msgid "Improves efficiency of screen refresh"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:18
|
||||
#, fuzzy
|
||||
#| msgid "Enabled"
|
||||
msgid "Enable Ajax"
|
||||
msgstr "Aktif"
|
||||
msgstr "Aktifkan Ajax"
|
||||
|
||||
#: libraries/config/messages.inc.php:19
|
||||
msgid ""
|
||||
"If enabled user can enter any MySQL server in login form for cookie auth"
|
||||
msgstr ""
|
||||
"Jika diaktifkan, pengguna bisa memasukkan server MySQL manapun pada form "
|
||||
"login untuk autentikasi cookie"
|
||||
|
||||
#: libraries/config/messages.inc.php:20
|
||||
#, fuzzy
|
||||
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
|
||||
msgid ""
|
||||
@@ -2363,7 +2364,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:31
|
||||
msgid "Bzip2"
|
||||
msgstr ""
|
||||
msgstr "Bzip2"
|
||||
|
||||
#: libraries/config/messages.inc.php:32
|
||||
msgid ""
|
||||
|
258
po/si.po
258
po/si.po
@@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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"
|
||||
"Language-Team: sinhala <si@li.org>\n"
|
||||
"Language: si\n"
|
||||
@@ -757,7 +757,7 @@ msgstr "ක්රියාව"
|
||||
|
||||
#: db_tracking.php:101 js/messages.php:34
|
||||
msgid "Delete tracking data for this table"
|
||||
msgstr ""
|
||||
msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න"
|
||||
|
||||
#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
|
||||
msgid "active"
|
||||
@@ -956,14 +956,13 @@ msgid "Dropping Procedure"
|
||||
msgstr "ක්රියාපටිපාටිය"
|
||||
|
||||
#: js/messages.php:35
|
||||
#, fuzzy
|
||||
#| msgid "Allows inserting and replacing data."
|
||||
msgid "Deleting tracking data"
|
||||
msgstr "Allows inserting and replacing data."
|
||||
msgstr "අවධානය පිළිබඳ දත්ත ඉවත් කෙරෙමින්"
|
||||
|
||||
#: js/messages.php:36
|
||||
msgid "Dropping Primary Key/Index"
|
||||
msgstr ""
|
||||
msgstr "ප්රාථමික මූලය/සුචිය ඉවත් කෙරෙමින්"
|
||||
|
||||
#: js/messages.php:37
|
||||
msgid "This operation could take a long time. Proceed anyway?"
|
||||
@@ -1011,10 +1010,9 @@ msgid "Create User"
|
||||
msgstr "භාවිතා කරන්නෙක් සාදන්න"
|
||||
|
||||
#: js/messages.php:54
|
||||
#, fuzzy
|
||||
#| msgid "Reloading the privileges"
|
||||
msgid "Reloading Privileges"
|
||||
msgstr "Reloading the privileges"
|
||||
msgstr "වරප්රසාද පූරණය කෙරෙමින්"
|
||||
|
||||
#: js/messages.php:55
|
||||
msgid "Removing Selected Users"
|
||||
@@ -1032,23 +1030,21 @@ msgid "Cancel"
|
||||
msgstr "අවලංගු කරන්න"
|
||||
|
||||
#: js/messages.php:63
|
||||
#, fuzzy
|
||||
msgid "Loading"
|
||||
msgstr "ස්වදේශී"
|
||||
msgstr "පූරණය කෙරෙමින්"
|
||||
|
||||
#: js/messages.php:64
|
||||
#, fuzzy
|
||||
#| msgid "Processes"
|
||||
msgid "Processing Request"
|
||||
msgstr "ක්රියාවලිය"
|
||||
msgstr "ඉල්ලීම පිරිසැකසෙමින්"
|
||||
|
||||
#: js/messages.php:65 libraries/import/ods.php:80
|
||||
msgid "Error in Processing Request"
|
||||
msgstr ""
|
||||
msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
|
||||
|
||||
#: js/messages.php:66
|
||||
msgid "Dropping Column"
|
||||
msgstr ""
|
||||
msgstr "තීරුව හලමින්"
|
||||
|
||||
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
|
||||
# Terms - ICTA
|
||||
@@ -1067,10 +1063,9 @@ msgid "Renaming Databases"
|
||||
msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්"
|
||||
|
||||
#: js/messages.php:72
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Reload Database"
|
||||
msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න"
|
||||
msgstr "දත්තගබඩාව පූරණය"
|
||||
|
||||
#: js/messages.php:73
|
||||
msgid "Copying Database"
|
||||
@@ -1117,7 +1112,7 @@ msgstr "සුරකින්න"
|
||||
#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
|
||||
#: tbl_change.php:315 tbl_change.php:321
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
msgstr "සඟවන්න"
|
||||
|
||||
#: js/messages.php:93
|
||||
#, fuzzy
|
||||
@@ -1132,7 +1127,7 @@ msgstr "SQL විමසුම"
|
||||
#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
|
||||
#: tbl_indexes.php:223
|
||||
msgid "Ignore"
|
||||
msgstr "අත්හැර දමන්න"
|
||||
msgstr "නොසලකන්න"
|
||||
|
||||
#: js/messages.php:100
|
||||
msgid "Select referenced key"
|
||||
@@ -1187,9 +1182,8 @@ msgstr ", නවතම ස්ථායි අනුවාදය:"
|
||||
|
||||
#. l10n: Display text for calendar close link
|
||||
#: js/messages.php:137
|
||||
#, fuzzy
|
||||
msgid "Done"
|
||||
msgstr "දත්ත"
|
||||
msgstr "තෝරන්න"
|
||||
|
||||
#. l10n: Display text for previous month link in calendar
|
||||
#: js/messages.php:139
|
||||
@@ -1511,7 +1505,7 @@ msgstr "සංස්කරණය කරන්න"
|
||||
|
||||
#: libraries/Index.class.php:471
|
||||
msgid "The primary key has been dropped"
|
||||
msgstr "The primary key has been dropped"
|
||||
msgstr "ප්රාථමික මූලය හලන ලදි"
|
||||
|
||||
#: libraries/Index.class.php:475
|
||||
#, php-format
|
||||
@@ -1542,8 +1536,8 @@ msgstr "දෝෂය"
|
||||
#, php-format
|
||||
msgid "%1$d row affected."
|
||||
msgid_plural "%1$d rows affected."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "පේළියකට බලපෑවේය"
|
||||
msgstr[1] "පේළි %1$dකට බලපෑවේය"
|
||||
|
||||
#: libraries/Message.class.php:300
|
||||
#, php-format
|
||||
@@ -1837,7 +1831,7 @@ msgstr "විමසුම් සංඛ්යානය"
|
||||
|
||||
#: libraries/chart.lib.php:63
|
||||
msgid "Query execution time comparison (in microseconds)"
|
||||
msgstr ""
|
||||
msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්රෝ තත්පර)"
|
||||
|
||||
#: libraries/chart.lib.php:83
|
||||
msgid "Query results"
|
||||
@@ -1991,7 +1985,7 @@ msgstr "Validate SQL"
|
||||
|
||||
#: libraries/common.lib.php:1264
|
||||
msgid "Inline edit of this query"
|
||||
msgstr ""
|
||||
msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය"
|
||||
|
||||
#: libraries/common.lib.php:1266
|
||||
msgid "Inline"
|
||||
@@ -2136,23 +2130,21 @@ msgstr ""
|
||||
|
||||
#: libraries/config.values.php:45 libraries/config.values.php:50
|
||||
msgid "Both"
|
||||
msgstr ""
|
||||
msgstr "දෙකම"
|
||||
|
||||
#: libraries/config.values.php:74
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
msgstr "විවෘත"
|
||||
|
||||
#: libraries/config.values.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Unclosed quote"
|
||||
msgid "Closed"
|
||||
msgstr "නොවසන ලද උද්ධරනය"
|
||||
msgstr "වසන ලද"
|
||||
|
||||
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
|
||||
#: libraries/export/latex.php:41 libraries/export/odt.php:33
|
||||
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
|
||||
#: libraries/import.lib.php:1172
|
||||
#, fuzzy
|
||||
msgid "structure"
|
||||
msgstr "සැකිල්ල"
|
||||
|
||||
@@ -2160,12 +2152,11 @@ msgstr "සැකිල්ල"
|
||||
#: libraries/export/latex.php:41 libraries/export/odt.php:33
|
||||
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
msgstr "දත්ත"
|
||||
|
||||
#: libraries/config.values.php:97 libraries/export/htmlword.php:24
|
||||
#: libraries/export/latex.php:41 libraries/export/odt.php:33
|
||||
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
|
||||
#, fuzzy
|
||||
#| msgid "Structure and data"
|
||||
msgid "structure and data"
|
||||
msgstr "සැකිල්ල සහ දත්ත"
|
||||
@@ -2183,34 +2174,32 @@ msgid "Custom - like above, but without the quick/custom choice"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:119
|
||||
#, fuzzy
|
||||
#| msgid "Complete inserts"
|
||||
msgid "complete inserts"
|
||||
msgstr "Complete inserts"
|
||||
msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
|
||||
|
||||
#: libraries/config.values.php:120
|
||||
#, fuzzy
|
||||
#| msgid "Extended inserts"
|
||||
msgid "extended inserts"
|
||||
msgstr "Extended inserts"
|
||||
msgstr "විස්තෘත ඇතුළු කිරීම්"
|
||||
|
||||
#: libraries/config.values.php:121
|
||||
msgid "both of the above"
|
||||
msgstr ""
|
||||
msgstr "ඉහත ද්විත්වයම"
|
||||
|
||||
#: libraries/config.values.php:122
|
||||
msgid "neither of the above"
|
||||
msgstr ""
|
||||
msgstr "ඉහත දෙකින් එකක්වත් නොව"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:83
|
||||
#: libraries/config/validate.lib.php:422
|
||||
msgid "Not a positive number"
|
||||
msgstr ""
|
||||
msgstr "ධන සංඛ්යාවක් නොවේ"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:84
|
||||
#: libraries/config/validate.lib.php:435
|
||||
msgid "Not a non-negative number"
|
||||
msgstr ""
|
||||
msgstr "ඍණ නොවන සංඛ්යාවක් නොවේ"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:85
|
||||
#: libraries/config/validate.lib.php:409
|
||||
@@ -2232,14 +2221,13 @@ msgstr "අගය %s ට සමාන හෝ අඩු විය යුතුය
|
||||
#: libraries/config/FormDisplay.class.php:538
|
||||
#, php-format
|
||||
msgid "Missing data for %s"
|
||||
msgstr ""
|
||||
msgstr "%s සඳහා දත්ත නොමැත"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:736
|
||||
#: libraries/config/FormDisplay.class.php:740
|
||||
#, fuzzy
|
||||
#| msgid "Variable"
|
||||
msgid "unavailable"
|
||||
msgstr "Variable"
|
||||
msgstr "නොතිබෙන"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:737
|
||||
#: libraries/config/FormDisplay.class.php:741
|
||||
@@ -2269,7 +2257,7 @@ msgstr "PHP සංස්කරණය"
|
||||
#: libraries/config/FormDisplay.class.php:781
|
||||
#, php-format
|
||||
msgid "maximum %s"
|
||||
msgstr ""
|
||||
msgstr "උපරිම %s"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:173
|
||||
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/relation.lib.php:96 pmd_relation_new.php:68
|
||||
msgid "Disabled"
|
||||
msgstr "අක්රිය කරන ලද"
|
||||
msgstr "අක්රිය"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:248
|
||||
#, php-format
|
||||
msgid "Set value: %s"
|
||||
msgstr ""
|
||||
msgstr "%s අගය පිහිටුවන්න"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:253
|
||||
#: libraries/config/messages.inc.php:350
|
||||
@@ -2305,9 +2293,8 @@ msgid "Improves efficiency of screen refresh"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:18
|
||||
#, fuzzy
|
||||
msgid "Enable Ajax"
|
||||
msgstr "සක්රිය කරන් ලද"
|
||||
msgstr "Ajax සක්රිය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:19
|
||||
msgid ""
|
||||
@@ -2315,9 +2302,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:20
|
||||
#, fuzzy
|
||||
msgid "Allow login to any MySQL server"
|
||||
msgstr "MySQL සර්වරයට ලොග් විය නොහැක"
|
||||
msgstr "MySQL සේවාදායකයට ලොග්වීමට ඉඩ දෙන්න "
|
||||
|
||||
#: libraries/config/messages.inc.php:21
|
||||
msgid ""
|
||||
@@ -2342,11 +2328,11 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:25
|
||||
msgid "Blowfish secret"
|
||||
msgstr ""
|
||||
msgstr "Blowfish රහස"
|
||||
|
||||
#: libraries/config/messages.inc.php:26
|
||||
msgid "Highlight selected rows"
|
||||
msgstr ""
|
||||
msgstr "තෝරාගත් පේළි ඉස්මතු කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:27
|
||||
msgid "Row marker"
|
||||
@@ -2368,7 +2354,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:31
|
||||
msgid "Bzip2"
|
||||
msgstr ""
|
||||
msgstr "Bzip2"
|
||||
|
||||
#: libraries/config/messages.inc.php:32
|
||||
msgid ""
|
||||
@@ -2379,7 +2365,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:33
|
||||
msgid "CHAR columns editing"
|
||||
msgstr ""
|
||||
msgstr "CHAR තීරු සංස්කරණය"
|
||||
|
||||
#: libraries/config/messages.inc.php:34
|
||||
msgid "Number of columns for CHAR/VARCHAR textareas"
|
||||
@@ -2424,11 +2410,11 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:43
|
||||
msgid "Confirm DROP queries"
|
||||
msgstr ""
|
||||
msgstr "DROP විමසුම් තහවුරු කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid "Debug SQL"
|
||||
msgstr ""
|
||||
msgstr "SQL නිදොසන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
#, fuzzy
|
||||
@@ -2486,7 +2472,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:57
|
||||
msgid "Display databases as a list"
|
||||
msgstr ""
|
||||
msgstr "දත්තගබඩා ලැයිස්තුවක් ලෙස පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:58
|
||||
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
|
||||
msgid "Do not import empty rows"
|
||||
msgstr ""
|
||||
msgstr "හිස් පේළි ආනයනය නොකරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:253
|
||||
msgid "Import currencies ($5.00 to 5.00)"
|
||||
msgstr ""
|
||||
msgstr "ව්යවහාර මුදල් අගයන් ආනයනය කරන්න (උදා. $5.00, 5.00 ලෙස)"
|
||||
|
||||
#: libraries/config/messages.inc.php:254
|
||||
msgid "Import percentages as proper decimals (12.00% to .12)"
|
||||
msgstr ""
|
||||
msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)"
|
||||
|
||||
#: libraries/config/messages.inc.php:255
|
||||
#, fuzzy
|
||||
@@ -5603,7 +5589,7 @@ msgstr "අපනයන වර්ගය"
|
||||
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
|
||||
#: libraries/footer.inc.php:194
|
||||
msgid "Open new phpMyAdmin window"
|
||||
msgstr "Open new phpMyAdmin window"
|
||||
msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න"
|
||||
|
||||
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54
|
||||
msgid "SQL result"
|
||||
@@ -5660,7 +5646,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"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>"
|
||||
msgstr ""
|
||||
msgstr "ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය."
|
||||
|
||||
#: libraries/import/csv.php:39
|
||||
msgid ""
|
||||
@@ -5718,11 +5704,11 @@ msgstr "This plugin does not support compressed imports!"
|
||||
|
||||
#: libraries/import/ods.php:28
|
||||
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
|
||||
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
|
||||
msgstr ""
|
||||
msgstr "ව්යවහාර මුදල් අගයන් ආනයනය කරන්න <i>(උදා. $5.00, 5.00 ලෙස)</i>"
|
||||
|
||||
#: libraries/import/sql.php:32
|
||||
msgid "SQL compatibility mode:"
|
||||
@@ -5853,7 +5839,7 @@ msgstr "පෝලන්ත"
|
||||
|
||||
#: libraries/mysql_charsets.lib.php:288 libraries/mysql_charsets.lib.php:336
|
||||
msgid "West European"
|
||||
msgstr "බටහිර යුරෝපියානු"
|
||||
msgstr "බටහිර යුරෝපීය"
|
||||
|
||||
#: libraries/mysql_charsets.lib.php:291
|
||||
msgid "Romanian"
|
||||
@@ -5964,10 +5950,9 @@ msgid "Reload navigation frame"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugin_interface.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "This format has no options"
|
||||
msgid "This format has no options"
|
||||
msgstr "මෙම ආකෘතියේ විකල්ප කිසිවක් නැත"
|
||||
msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත"
|
||||
|
||||
#: libraries/relation.lib.php:83
|
||||
msgid "not OK"
|
||||
@@ -9197,11 +9182,11 @@ msgstr ""
|
||||
|
||||
#: setup/lib/index.lib.php:351
|
||||
msgid "Key is too short, it should have at least 8 characters."
|
||||
msgstr ""
|
||||
msgstr "මූලය කෙටිය. අවම වශයෙන් අක්ෂර 8 වත් තිබිය යුතුය."
|
||||
|
||||
#: setup/lib/index.lib.php:358
|
||||
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
|
||||
#: tbl_select.php:30 tbl_select.php:33
|
||||
@@ -9216,22 +9201,20 @@ msgstr ""
|
||||
#: sql.php:600 tbl_replace.php:387
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
msgstr "%1$d පේළිය ඇතුල් කරන ලදි"
|
||||
|
||||
#: sql.php:617
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
msgstr "PHP කේත ලෙස පෙන්වමින්"
|
||||
|
||||
#: sql.php:620 tbl_replace.php:361
|
||||
#, fuzzy
|
||||
msgid "Showing SQL query"
|
||||
msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න"
|
||||
msgstr "SQL විමසුම පෙන්වමින්"
|
||||
|
||||
#: sql.php:622
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validate SQL"
|
||||
msgstr "තහවුරු කරන ලද SQL"
|
||||
|
||||
#: sql.php:897
|
||||
#, php-format
|
||||
@@ -9283,7 +9266,7 @@ msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන
|
||||
|
||||
#: tbl_change.php:1068
|
||||
msgid "and then"
|
||||
msgstr "සහ එවිට"
|
||||
msgstr "අනතුරුව"
|
||||
|
||||
#: tbl_change.php:1072
|
||||
msgid "Go back to previous page"
|
||||
@@ -9313,86 +9296,83 @@ msgid "Continue insertion with %s rows"
|
||||
msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න"
|
||||
|
||||
#: tbl_chart.php:56
|
||||
#, fuzzy
|
||||
#| msgid "The privileges were reloaded successfully."
|
||||
msgid "Chart generated successfully."
|
||||
msgstr "The privileges were reloaded successfully."
|
||||
msgstr "ප්රස්තාරය සාර්ථකව අඳින ලදි."
|
||||
|
||||
#: tbl_chart.php:59
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
#| "3.11[/a]"
|
||||
msgid ""
|
||||
"The result of this query can't be used for a chart. See [a@./Documentation."
|
||||
"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
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
msgstr "පළල"
|
||||
|
||||
#: tbl_chart.php:94
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
msgstr "උස"
|
||||
|
||||
#: tbl_chart.php:98
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
msgstr "මාතෘකාව"
|
||||
|
||||
#: tbl_chart.php:103
|
||||
msgid "X Axis label"
|
||||
msgstr ""
|
||||
msgstr "X අක්ෂයේ ලේබලය"
|
||||
|
||||
#: tbl_chart.php:107
|
||||
msgid "Y Axis label"
|
||||
msgstr ""
|
||||
msgstr "Y අක්ෂයේ ලේබලය"
|
||||
|
||||
#: tbl_chart.php:112
|
||||
msgid "Area margins"
|
||||
msgstr ""
|
||||
msgstr "පෙදෙසේ දාර"
|
||||
|
||||
#: tbl_chart.php:122
|
||||
msgid "Legend margins"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:134
|
||||
#, fuzzy
|
||||
#| msgid "Mar"
|
||||
msgid "Bar"
|
||||
msgstr "මාර්තු"
|
||||
msgstr "තීර"
|
||||
|
||||
#: tbl_chart.php:135
|
||||
msgid "Line"
|
||||
msgstr ""
|
||||
msgstr "රේඛා"
|
||||
|
||||
#: tbl_chart.php:136
|
||||
msgid "Radar"
|
||||
msgstr ""
|
||||
msgstr "රේඩාර්"
|
||||
|
||||
#: tbl_chart.php:138
|
||||
#, fuzzy
|
||||
#| msgid "PiB"
|
||||
msgid "Pie"
|
||||
msgstr "PiB"
|
||||
msgstr "වට"
|
||||
|
||||
#: tbl_chart.php:144
|
||||
#, fuzzy
|
||||
#| msgid "Query type"
|
||||
msgid "Bar type"
|
||||
msgstr "විමසුම් වර්ගය"
|
||||
msgstr "තීර වර්ගය"
|
||||
|
||||
#: tbl_chart.php:146
|
||||
msgid "Stacked"
|
||||
msgstr ""
|
||||
msgstr "ගොඩ ගසන ලද"
|
||||
|
||||
#: tbl_chart.php:147
|
||||
msgid "Multi"
|
||||
msgstr ""
|
||||
msgstr "බහු"
|
||||
|
||||
#: tbl_chart.php:152
|
||||
msgid "Continuous image"
|
||||
msgstr ""
|
||||
msgstr "අඛණ්ඩ ප්රතිරූපය"
|
||||
|
||||
#: tbl_chart.php:155
|
||||
msgid ""
|
||||
@@ -9410,10 +9390,13 @@ msgid ""
|
||||
"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>"
|
||||
msgstr ""
|
||||
"සෑම ප්රතිඑලයක්ම ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. <a "
|
||||
"href=\"./Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a> "
|
||||
"බලන්න."
|
||||
|
||||
#: tbl_chart.php:181
|
||||
msgid "Redraw"
|
||||
msgstr ""
|
||||
msgstr "නැවත අඳින්න"
|
||||
|
||||
#: tbl_create.php:56
|
||||
#, php-format
|
||||
@@ -9421,9 +9404,9 @@ msgid "Table %s already exists!"
|
||||
msgstr " %s වගුව දැනටමත් පවතී!"
|
||||
|
||||
#: tbl_create.php:242
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Table %1$s has been created."
|
||||
msgstr "%s වගුව හලන ලදි"
|
||||
msgstr "%1$s වගුව සාදන ලදි."
|
||||
|
||||
#: tbl_export.php:24
|
||||
msgid "View dump (schema) of table"
|
||||
@@ -9460,8 +9443,7 @@ msgstr "සූචි වර්ගය:"
|
||||
#: tbl_indexes.php:182
|
||||
msgid ""
|
||||
"(\"PRIMARY\" <b>must</b> be the name of and <b>only of</b> a primary key!)"
|
||||
msgstr ""
|
||||
"(\"PRIMARY\" <b>must</b> be the name of and <b>only of</b> a primary key!)"
|
||||
msgstr "(\"PRIMARY\" නාමය ප්රාථමික මූලය සඳහා <i>පමණක්</i> භාවිතා කල යුතුය!)"
|
||||
|
||||
#: tbl_indexes.php:249
|
||||
#, php-format
|
||||
@@ -9554,40 +9536,37 @@ msgid "Delete the table (DROP)"
|
||||
msgstr "වගුව ඉවත් කරන්න (DROP)"
|
||||
|
||||
#: tbl_operations.php:729
|
||||
#, fuzzy
|
||||
msgid "Partition maintenance"
|
||||
msgstr "වගු නඩත්තුව"
|
||||
msgstr "කොටස් (partition) නඩත්තුව"
|
||||
|
||||
#: tbl_operations.php:737
|
||||
#, php-format
|
||||
msgid "Partition %s"
|
||||
msgstr ""
|
||||
msgstr "%s කොටස"
|
||||
|
||||
#: tbl_operations.php:740
|
||||
msgid "Analyze"
|
||||
msgstr ""
|
||||
msgstr "විශ්ලේෂණය"
|
||||
|
||||
#: tbl_operations.php:741
|
||||
#, fuzzy
|
||||
msgid "Check"
|
||||
msgstr "චෙකොස්ලෝවැකියානු"
|
||||
msgstr "පරීක්ෂාව"
|
||||
|
||||
#: tbl_operations.php:742
|
||||
msgid "Optimize"
|
||||
msgstr ""
|
||||
msgstr "ප්රශස්තනය"
|
||||
|
||||
#: tbl_operations.php:743
|
||||
msgid "Rebuild"
|
||||
msgstr ""
|
||||
msgstr "නැවත සෑදීම"
|
||||
|
||||
#: tbl_operations.php:744
|
||||
#, fuzzy
|
||||
msgid "Repair"
|
||||
msgstr "වගුව ප්රතිසංස්කරණය කරන්න"
|
||||
msgstr "ප්රතිසංස්කරණය"
|
||||
|
||||
#: tbl_operations.php:756
|
||||
msgid "Remove partitioning"
|
||||
msgstr ""
|
||||
msgstr "කොටස් කිරීම ඉවත් කරන්න"
|
||||
|
||||
#: tbl_operations.php:782
|
||||
msgid "Check referential integrity:"
|
||||
@@ -9607,7 +9586,7 @@ msgstr "භාවිතය"
|
||||
|
||||
#: tbl_printview.php:338 tbl_structure.php:780
|
||||
msgid "Effective"
|
||||
msgstr "Effective"
|
||||
msgstr "එලදායී"
|
||||
|
||||
#: tbl_printview.php:363 tbl_structure.php:818
|
||||
msgid "Row Statistics"
|
||||
@@ -9619,7 +9598,7 @@ msgstr "ප්රකාශය"
|
||||
|
||||
#: tbl_printview.php:377 tbl_structure.php:833
|
||||
msgid "static"
|
||||
msgstr ""
|
||||
msgstr "ස්ථිතික"
|
||||
|
||||
#: tbl_printview.php:379 tbl_structure.php:835
|
||||
msgid "dynamic"
|
||||
@@ -9636,7 +9615,7 @@ msgstr "පේළියේ ප්රමාණය"
|
||||
#: tbl_relation.php:276
|
||||
#, php-format
|
||||
msgid "Error creating foreign key on %1$s (check data types)"
|
||||
msgstr ""
|
||||
msgstr "%1$s මත අන්ය මූලය සෑදීමේදී දෝෂ ඇතිවිය (දත්ත වර්ග පරීක්ෂා කරන්න)"
|
||||
|
||||
#: tbl_relation.php:402
|
||||
msgid "Internal relation"
|
||||
@@ -9650,7 +9629,7 @@ msgstr ""
|
||||
|
||||
#: tbl_relation.php:410
|
||||
msgid "Foreign key constraint"
|
||||
msgstr ""
|
||||
msgstr "අන්ය මූල නිරෝධය"
|
||||
|
||||
#: tbl_row_action.php:28
|
||||
msgid "No rows selected"
|
||||
@@ -9697,17 +9676,16 @@ msgid "Add FULLTEXT index"
|
||||
msgstr "FULLTEXT මූලය එක් කරන්න"
|
||||
|
||||
#: tbl_structure.php:385
|
||||
#, fuzzy
|
||||
#| msgid "None"
|
||||
msgctxt "None for default"
|
||||
msgid "None"
|
||||
msgstr "කිසිවක් නැත"
|
||||
|
||||
#: tbl_structure.php:398
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Table %s has been dropped"
|
||||
msgid "Column %s has been dropped"
|
||||
msgstr "%s වගුව හලන ලදි"
|
||||
msgstr "%s තීරුව හලන ලදි"
|
||||
|
||||
#: tbl_structure.php:409 tbl_structure.php:484
|
||||
#, php-format
|
||||
@@ -9721,10 +9699,9 @@ msgid "An index has been added on %s"
|
||||
msgstr "%s සඳහා සූචියක් එක්කරන ලදි"
|
||||
|
||||
#: tbl_structure.php:472
|
||||
#, fuzzy
|
||||
#| msgid "Show PHP information"
|
||||
msgid "Show more actions"
|
||||
msgstr "PHP තොරතුරු පෙන්වන්න"
|
||||
msgstr "තවත් ක්රියාවන් පෙන්වන්න"
|
||||
|
||||
#: tbl_structure.php:598 tbl_structure.php:600
|
||||
msgid "Relation view"
|
||||
@@ -9735,10 +9712,9 @@ msgid "Propose table structure"
|
||||
msgstr "සැකිල්ලක් යෝජනා කරන්න"
|
||||
|
||||
#: tbl_structure.php:632
|
||||
#, fuzzy
|
||||
#| msgid "Add %s field(s)"
|
||||
msgid "Add column"
|
||||
msgstr "%s ක්ෂේත්ර(යක්) එක් කරන්න"
|
||||
msgstr "තීරයක් එක් කරන්න"
|
||||
|
||||
#: tbl_structure.php:646
|
||||
msgid "At End of Table"
|
||||
@@ -9760,12 +9736,12 @@ msgstr "පේළි %s මත සුචියක් සාදන්
|
||||
|
||||
#: tbl_structure.php:849
|
||||
msgid "partitioned"
|
||||
msgstr ""
|
||||
msgstr "කොටස් කරන ලද"
|
||||
|
||||
#: tbl_tracking.php:109
|
||||
#, php-format
|
||||
msgid "Tracking report for table `%s`"
|
||||
msgstr ""
|
||||
msgstr " `%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව"
|
||||
|
||||
#: tbl_tracking.php:182
|
||||
#, php-format
|
||||
@@ -9784,7 +9760,7 @@ msgstr "%s.%s හි %s වන අනුවාදය සඳහා අවධා
|
||||
|
||||
#: tbl_tracking.php:208
|
||||
msgid "SQL statements executed."
|
||||
msgstr ""
|
||||
msgstr "SQL ය ක්රියාත්මක කරන ලදි."
|
||||
|
||||
#: tbl_tracking.php:215
|
||||
msgid ""
|
||||
@@ -9803,7 +9779,7 @@ msgstr ""
|
||||
#: tbl_tracking.php:256
|
||||
#, php-format
|
||||
msgid "Version %s snapshot (SQL code)"
|
||||
msgstr ""
|
||||
msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)"
|
||||
|
||||
#: tbl_tracking.php:375
|
||||
msgid "Tracking statements"
|
||||
@@ -9812,16 +9788,15 @@ msgstr ""
|
||||
#: tbl_tracking.php:391 tbl_tracking.php:498
|
||||
#, php-format
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Date"
|
||||
msgstr "දත්ත"
|
||||
msgstr "දිනය"
|
||||
|
||||
#: tbl_tracking.php:406
|
||||
msgid "Data definition statement"
|
||||
msgstr ""
|
||||
msgstr "දත්ත අර්ථ දැක්වීම"
|
||||
|
||||
#: tbl_tracking.php:457
|
||||
msgid "Data manipulation statement"
|
||||
@@ -9837,16 +9812,16 @@ msgstr ""
|
||||
|
||||
#: tbl_tracking.php:503
|
||||
msgid "This option will replace your table and contained data."
|
||||
msgstr ""
|
||||
msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්රතිස්ථාපනය කෙරෙනු ඇත."
|
||||
|
||||
#: tbl_tracking.php:503
|
||||
msgid "SQL execution"
|
||||
msgstr ""
|
||||
msgstr "SQL ක්රියාත්මක කිරීම"
|
||||
|
||||
#: tbl_tracking.php:515
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Export as %s"
|
||||
msgstr "අපනයන වර්ගය"
|
||||
msgstr "අපනයන කරන්න %s ලෙස"
|
||||
|
||||
#: tbl_tracking.php:555
|
||||
msgid "Show versions"
|
||||
@@ -9868,11 +9843,11 @@ msgstr "අක්රීය කරන්න"
|
||||
#: tbl_tracking.php:648
|
||||
#, php-format
|
||||
msgid "Activate tracking for %s.%s"
|
||||
msgstr ""
|
||||
msgstr "%s.%s සඳහා අවධානය සක්රීය කරන්න"
|
||||
|
||||
#: tbl_tracking.php:650
|
||||
msgid "Activate now"
|
||||
msgstr ""
|
||||
msgstr "සක්රීය කරන්න"
|
||||
|
||||
#: tbl_tracking.php:663
|
||||
#, php-format
|
||||
@@ -9902,7 +9877,7 @@ msgstr ""
|
||||
|
||||
#: themes.php:41
|
||||
msgid "Get more themes!"
|
||||
msgstr ""
|
||||
msgstr "තවත් තේමාවන් ලබා ගන්න!"
|
||||
|
||||
#: transformation_overview.php:24
|
||||
msgid "Available MIME types"
|
||||
@@ -9929,16 +9904,15 @@ msgstr "You don't have sufficient privileges to be here right now!"
|
||||
|
||||
#: user_password.php:110
|
||||
msgid "The profile has been updated."
|
||||
msgstr "The profile has been updated."
|
||||
msgstr "පරිශීලක පැතිකඩ යාවත්කාලීන කරන ලදි."
|
||||
|
||||
#: view_create.php:141
|
||||
msgid "VIEW name"
|
||||
msgstr ""
|
||||
msgstr "දසුනේ නම"
|
||||
|
||||
#: view_operations.php:91
|
||||
#, fuzzy
|
||||
msgid "Rename view to"
|
||||
msgstr "වගුව බවට නම වෙනස් කරන්න"
|
||||
msgstr "දසුනේ නම වෙනස් කරන්න"
|
||||
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "පසුබිම් වර්ණය"
|
||||
|
18
po/tr.po
18
po/tr.po
@@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-rc1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\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"
|
||||
"Language-Team: turkish <tr@li.org>\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
|
||||
msgid "Navigation frame"
|
||||
msgstr "Rehber çerçevesi"
|
||||
msgstr "Rehber çerçeve"
|
||||
|
||||
#: libraries/config/messages.inc.php:177
|
||||
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
|
||||
#: setup/frames/index.inc.php:98
|
||||
@@ -3186,7 +3186,7 @@ msgid ""
|
||||
"Only light version; display databases in a tree (determined by the separator "
|
||||
"defined below)"
|
||||
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)"
|
||||
|
||||
#: libraries/config/messages.inc.php:273
|
||||
@@ -3200,7 +3200,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:275
|
||||
msgid "Use light version"
|
||||
msgstr "Hafif sürümü kullan"
|
||||
msgstr "Sade sürümü kullan"
|
||||
|
||||
#: libraries/config/messages.inc.php:276
|
||||
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 "
|
||||
"([kbd]new[/kbd])"
|
||||
msgstr ""
|
||||
"Bağlantılı sayfayı ana pencerede ([kbd]ana[/kbd]) veya yeni bir tanede ([kbd]"
|
||||
"yeni[/kbd]) açar"
|
||||
"Bağlantılı sayfayı ana pencerede ([kbd]main[/kbd]) veya yeni bir tanede "
|
||||
"([kbd]new[/kbd]) açar"
|
||||
|
||||
#: libraries/config/messages.inc.php:282
|
||||
msgid "Logo link target"
|
||||
@@ -3248,7 +3248,7 @@ msgstr "Az grafiksel yoğunlukta sekmeler kullanılır"
|
||||
|
||||
#: libraries/config/messages.inc.php:286
|
||||
msgid "Light tabs"
|
||||
msgstr "Hafif sekmeler"
|
||||
msgstr "Sade sekmeler"
|
||||
|
||||
#: libraries/config/messages.inc.php:287
|
||||
msgid ""
|
||||
@@ -7029,7 +7029,7 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
"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."
|
||||
|
||||
#: main.php:343
|
||||
|
@@ -78,7 +78,7 @@ foreach ($mysql_charsets as $current_charset) {
|
||||
$odd_row = true;
|
||||
foreach ($mysql_collations[$current_charset] as $current_collation) {
|
||||
$i++;
|
||||
echo '<tr class="'
|
||||
echo '<tr class="noclick '
|
||||
. ($odd_row ? 'odd' : 'even')
|
||||
. ($mysql_default_collations[$current_charset] == $current_collation
|
||||
? ' marked'
|
||||
|
@@ -1287,7 +1287,7 @@ if (isset($_REQUEST['delete']) || (isset($_REQUEST['change_copy']) && $_REQUEST[
|
||||
if (isset($_REQUEST['drop_users_db'])) {
|
||||
$queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
|
||||
$GLOBALS['reload'] = TRUE;
|
||||
|
||||
|
||||
if($GLOBALS['is_ajax_request'] != true) {
|
||||
PMA_reloadNavigation();
|
||||
}
|
||||
@@ -2127,7 +2127,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
|
||||
}
|
||||
}
|
||||
} elseif (isset($_REQUEST['adduser'])) {
|
||||
|
||||
|
||||
// Add a new user
|
||||
$GLOBALS['url_query'] .= '&adduser=1';
|
||||
echo '<h2>' . "\n"
|
||||
@@ -2261,7 +2261,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
|
||||
$current_privileges[] = $row;
|
||||
$row = PMA_DBI_fetch_assoc($res);
|
||||
}
|
||||
echo ' <tr class="' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
|
||||
echo ' <tr class="noclick ' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
|
||||
. ' <td';
|
||||
if (count($current_privileges) > 1) {
|
||||
echo ' rowspan="' . count($current_privileges) . '"';
|
||||
|
@@ -54,11 +54,11 @@ $result = PMA_DBI_query($sql_query);
|
||||
<thead>
|
||||
<tr>
|
||||
<?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'); ?>">
|
||||
<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'); ?>" />
|
||||
</a></td>
|
||||
</a></th>
|
||||
<?php else: ?>
|
||||
<th></th>
|
||||
<?php endif; ?>
|
||||
|
@@ -93,7 +93,7 @@ foreach ($serverVars as $name => $value) {
|
||||
if ($serverVarsGlobal[$name] !== $value) {
|
||||
?>
|
||||
</tr>
|
||||
<tr class="<?php
|
||||
<tr class="noclick <?php
|
||||
echo $odd_row ? 'odd' : 'even';
|
||||
?> marked">
|
||||
<td>(<?php echo __('Global value'); ?>)</td>
|
||||
|
@@ -1441,6 +1441,7 @@ table#serverconnection_trg_local {
|
||||
border-radius: 11px;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
||||
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||
border: 1px solid #444444;
|
||||
cursor: pointer;
|
||||
|
@@ -192,18 +192,36 @@ div#left_tableList li {
|
||||
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;
|
||||
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
||||
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||
|
||||
#newtable {
|
||||
margin-top: 15px !important;
|
||||
}
|
||||
#newtable:hover{
|
||||
|
||||
#newtable a {
|
||||
display: block;
|
||||
padding: 1px;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
||||
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
background: -o-linear-gradient(top, #ffffff, #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 li:hover {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
#newtable a:hover {
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#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;
|
||||
cursor:pointer !important;
|
||||
}
|
||||
|
||||
#newtable li a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
select{
|
||||
|
@@ -100,6 +100,7 @@ a:hover {
|
||||
border-radius:5px;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
||||
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||
}
|
||||
|
||||
@@ -118,9 +119,8 @@ th {
|
||||
background: #f3f3f3;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
||||
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||
|
||||
|
||||
}
|
||||
|
||||
a img {
|
||||
@@ -191,12 +191,14 @@ input[type=submit]{
|
||||
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
||||
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||
}
|
||||
|
||||
input[type=submit]:hover{ position: relative;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
|
||||
background: -moz-linear-gradient(top, #cccccc, #dddddd);
|
||||
background: -o-linear-gradient(top, #cccccc, #dddddd);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
|
||||
cursor:pointer;
|
||||
}
|
||||
@@ -289,6 +291,15 @@ select{
|
||||
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 */
|
||||
div.tools {
|
||||
@@ -340,12 +351,14 @@ button.mult_submit {
|
||||
table tr.odd th,
|
||||
.odd {
|
||||
background: #fff;
|
||||
filter: none;
|
||||
}
|
||||
|
||||
/* even items 2,4,6,8,... */
|
||||
table tr.even th,
|
||||
.even {
|
||||
background: #f3f3f3;
|
||||
filter: none;
|
||||
}
|
||||
|
||||
/* 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: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||
}
|
||||
#sectionlinks a:hover, #statuslinks a:hover{
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
|
||||
background: -moz-linear-gradient(top, #cccccc, #dddddd);
|
||||
background: -o-linear-gradient(top, #cccccc, #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: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||
cursor: pointer;
|
||||
}
|
||||
#buttonGo:hover{
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
|
||||
background: -moz-linear-gradient(top, #cccccc, #dddddd);
|
||||
background: -o-linear-gradient(top, #cccccc, #dddddd);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
|
||||
}
|
||||
|
||||
@@ -1929,21 +1946,21 @@ iframe.IE_hack {
|
||||
-moz-border-radius:5px 5px 0 0;
|
||||
-webkit-border-radius:5px 5px 0 0;
|
||||
border-radius:5px 5px 0 0;
|
||||
background:#d5d5d5;
|
||||
color:#fff;
|
||||
background:#f2f2f2;
|
||||
color:#555;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
.config-form ul.tabs li a:hover,
|
||||
.config-form ul.tabs li a:active,
|
||||
.config-form ul.tabs li a.active {
|
||||
/*margin: 0;*/
|
||||
/*padding: 0.1em 0.6em 0.2em;*/
|
||||
.config-form ul.tabs li a:active {
|
||||
background:#e5e5e5;
|
||||
}
|
||||
|
||||
.config-form ul.tabs li a.active {
|
||||
background-color: #fff;
|
||||
margin-top:1px;
|
||||
color:#000;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.config-form fieldset {
|
||||
@@ -2018,6 +2035,7 @@ iframe.IE_hack {
|
||||
|
||||
.config-form fieldset th, .config-form fieldset td {
|
||||
border-top: 1px <?php echo $GLOBALS['cfg']['BgTwo']; ?> solid;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
fieldset .group-header th {
|
||||
|
Reference in New Issue
Block a user