Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
This commit is contained in:
commit
50bbe39d30
@ -24,7 +24,7 @@ PMA_checkParameters(array('db', 'table'));
|
||||
* Defining global variables, in case this script is included by a function.
|
||||
* This is necessary because this script can be included by libraries/header.inc.php.
|
||||
*/
|
||||
global $showtable, $tbl_is_view, $tbl_type, $show_comment, $tbl_collation,
|
||||
global $showtable, $tbl_is_view, $tbl_storage_engine, $show_comment, $tbl_collation,
|
||||
$table_info_num_rows, $auto_increment;
|
||||
|
||||
/**
|
||||
@ -52,16 +52,16 @@ $GLOBALS['showtable'] = PMA_Table::sGetStatusInfo($GLOBALS['db'], $GLOBALS['tabl
|
||||
|
||||
// need this test because when we are creating a table, we get 0 rows
|
||||
// from the SHOW TABLE query
|
||||
// and we don't want to mess up the $tbl_type coming from the form
|
||||
// and we don't want to mess up the $tbl_storage_engine coming from the form
|
||||
|
||||
if ($showtable) {
|
||||
if (PMA_Table::isView($GLOBALS['db'], $GLOBALS['table'])) {
|
||||
$tbl_is_view = true;
|
||||
$tbl_type = __('View');
|
||||
$tbl_storage_engine = __('View');
|
||||
$show_comment = null;
|
||||
} else {
|
||||
$tbl_is_view = false;
|
||||
$tbl_type = isset($showtable['Engine'])
|
||||
$tbl_storage_engine = isset($showtable['Engine'])
|
||||
? strtoupper($showtable['Engine'])
|
||||
: '';
|
||||
// a new comment could be coming from tbl_operations.php
|
||||
|
||||
@ -669,8 +669,8 @@ if ($action == 'tbl_create.php') {
|
||||
<td width="25"> </td>
|
||||
<td>
|
||||
<?php
|
||||
echo PMA_StorageEngine::getHtmlSelect('tbl_type', null,
|
||||
(isset($_REQUEST['tbl_type']) ? $_REQUEST['tbl_type'] : null));
|
||||
echo PMA_StorageEngine::getHtmlSelect('tbl_storage_engine', null,
|
||||
(isset($_REQUEST['tbl_storage_engine']) ? $_REQUEST['tbl_storage_engine'] : null));
|
||||
?>
|
||||
</td>
|
||||
<td width="25"> </td>
|
||||
|
||||
151
po/ja.po
151
po/ja.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-06 13:06+0200\n"
|
||||
"PO-Revision-Date: 2012-04-02 12:42+0200\n"
|
||||
"PO-Revision-Date: 2012-04-08 07:38+0200\n"
|
||||
"Last-Translator: Yuichiro Takahashi <yuichiro@pop07.odn.ne.jp>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
"Language: ja\n"
|
||||
@ -108,7 +108,7 @@ msgstr "データベース %1$s を作成しました。"
|
||||
|
||||
#: db_datadict.php:49 db_operations.php:390
|
||||
msgid "Database comment: "
|
||||
msgstr "データベースのコメント"
|
||||
msgstr "データベースのコメント: "
|
||||
|
||||
#: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279
|
||||
#: libraries/tbl_properties.inc.php:657 tbl_operations.php:366
|
||||
@ -245,16 +245,16 @@ msgid "The database name is empty!"
|
||||
msgstr "データベース名が空です!"
|
||||
|
||||
#: db_operations.php:300
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Database %s has been renamed to %s"
|
||||
msgid "Database %1$s has been renamed to %2$s"
|
||||
msgstr "データベース %s の名称を %s に変更しました"
|
||||
msgstr "データベース %1$s の名称を %2$s に変更しました"
|
||||
|
||||
#: db_operations.php:304
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Database %s has been copied to %s"
|
||||
msgid "Database %1$s has been copied to %2$s"
|
||||
msgstr "データベース %s を %s にコピーしました"
|
||||
msgstr "データベース %1$s を %2$s にコピーしました"
|
||||
|
||||
#: db_operations.php:432
|
||||
msgid "Rename database to"
|
||||
@ -505,12 +505,12 @@ msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" の検索結果 %s:"
|
||||
|
||||
#: db_search.php:227
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "%s match inside table <i>%s</i>"
|
||||
#| msgid_plural "%s matches inside table <i>%s</i>"
|
||||
msgid "%1$s match inside table <i>%2$s</i>"
|
||||
msgid_plural "%1$s matches inside table <i>%2$s</i>"
|
||||
msgstr[0] "%s 件 (テーブル <i>%s</i>)"
|
||||
msgstr[0] "%1$s 件 (テーブル <i>%2$s</i>)"
|
||||
|
||||
#: db_search.php:234 libraries/common.lib.php:3147
|
||||
#: libraries/common.lib.php:3366 libraries/common.lib.php:3367
|
||||
@ -1736,16 +1736,14 @@ msgid "Foreign key check:"
|
||||
msgstr "外部キーのチェックを無効にする"
|
||||
|
||||
#: js/messages.php:251 libraries/mult_submits.inc.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Enabled"
|
||||
msgid "(Enabled)"
|
||||
msgstr "有効"
|
||||
msgstr "(有効)"
|
||||
|
||||
#: js/messages.php:252 libraries/mult_submits.inc.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Disabled"
|
||||
msgid "(Disabled)"
|
||||
msgstr "無効"
|
||||
msgstr "(無効)"
|
||||
|
||||
#: js/messages.php:255
|
||||
msgid "Searching"
|
||||
@ -1956,7 +1954,7 @@ msgstr "クリックでカラムを反転/解除"
|
||||
|
||||
#: js/messages.php:348
|
||||
msgid "Double-click to copy column name"
|
||||
msgstr ""
|
||||
msgstr "ダブルクリックでカラム名をコピー"
|
||||
|
||||
#: js/messages.php:349
|
||||
msgid "Click the drop-down arrow<br />to toggle column's visibility"
|
||||
@ -1983,20 +1981,18 @@ msgid "Go to link"
|
||||
msgstr "リンク先へ移動する"
|
||||
|
||||
#: js/messages.php:354
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
msgid "Copy column name"
|
||||
msgstr "カラム名"
|
||||
msgstr "カラム名のコピー"
|
||||
|
||||
#: js/messages.php:355
|
||||
msgid "Right-click the column name to copy it to your clipboard."
|
||||
msgstr ""
|
||||
msgstr "右クリックでカラム名をクリップボードにコピーしてください。"
|
||||
|
||||
#: js/messages.php:356
|
||||
#, fuzzy
|
||||
#| msgid "Update row(s)"
|
||||
msgid "Show data row(s)"
|
||||
msgstr "行の更新"
|
||||
msgstr "データ行の表示"
|
||||
|
||||
#: js/messages.php:359
|
||||
msgid "Generate password"
|
||||
@ -2505,7 +2501,7 @@ msgstr "この MySQL サーバは %s ストレージエンジンをサポート
|
||||
|
||||
#: libraries/Table.class.php:329
|
||||
msgid "unknown table status: "
|
||||
msgstr "不明なテーブルステータス:"
|
||||
msgstr "不明なテーブルステータス: "
|
||||
|
||||
#: libraries/Table.class.php:1125
|
||||
msgid "Invalid database"
|
||||
@ -2521,10 +2517,10 @@ msgid "Error renaming table %1$s to %2$s"
|
||||
msgstr "テーブル名を %1$s から %2$s に変更するときにエラーが発生しました"
|
||||
|
||||
#: libraries/Table.class.php:1257
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Table %s has been renamed to %s"
|
||||
msgid "Table %1$s has been renamed to %2$s."
|
||||
msgstr "テーブル %s の名称を %s に変更しました"
|
||||
msgstr "テーブル %1$s の名称を %2$s に変更しました。"
|
||||
|
||||
#: libraries/Table.class.php:1389
|
||||
msgid "Could not save table UI preferences"
|
||||
@ -2616,10 +2612,9 @@ msgid "Failed to use Blowfish from mcrypt!"
|
||||
msgstr "mcrypt から Blowfish を使おうとして失敗しました!"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:208 libraries/header.inc.php:90
|
||||
#, fuzzy
|
||||
#| msgid "Cookies must be enabled past this point."
|
||||
msgid "Javascript must be enabled past this point"
|
||||
msgstr "クッキーを有効にしてください。"
|
||||
msgstr "Javascript を有効にしてください"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:227
|
||||
msgid "Log in"
|
||||
@ -2641,7 +2636,7 @@ msgstr ""
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:241
|
||||
msgid "Server:"
|
||||
msgstr "サーバ"
|
||||
msgstr "サーバ:"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:246
|
||||
msgid "Username:"
|
||||
@ -2663,9 +2658,7 @@ msgstr "クッキーを有効にしてください。"
|
||||
#: libraries/auth/signon.auth.lib.php:236
|
||||
msgid ""
|
||||
"Login without a password is forbidden by configuration (see AllowNoPassword)"
|
||||
msgstr ""
|
||||
"パスワード無しログインは設定 (AllowNoPassword 参照) によって禁止されていま"
|
||||
"す。"
|
||||
msgstr "パスワードなしログインは設定 (AllowNoPassword 参照) によって禁止されています"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:610
|
||||
#: libraries/auth/signon.auth.lib.php:240
|
||||
@ -3206,7 +3199,7 @@ msgstr "リセット"
|
||||
|
||||
#: libraries/config/messages.inc.php:17
|
||||
msgid "Improves efficiency of screen refresh"
|
||||
msgstr "画面更新を改善し効率化します。"
|
||||
msgstr "画面更新を改善し効率化します"
|
||||
|
||||
#: libraries/config/messages.inc.php:18
|
||||
msgid "Enable Ajax"
|
||||
@ -6311,25 +6304,25 @@ msgstr "Paul McCullagh 氏による PrimeBase XT ブログ"
|
||||
|
||||
#: libraries/export/csv.php:24 libraries/import/csv.php:28
|
||||
msgid "Columns separated with:"
|
||||
msgstr "カラムの区切り記号"
|
||||
msgstr "カラムの区切り記号:"
|
||||
|
||||
#: libraries/export/csv.php:25 libraries/import/csv.php:29
|
||||
msgid "Columns enclosed with:"
|
||||
msgstr "カラム囲み記号"
|
||||
msgstr "カラム囲み記号:"
|
||||
|
||||
#: libraries/export/csv.php:26 libraries/import/csv.php:30
|
||||
msgid "Columns escaped with:"
|
||||
msgstr "カラムのエスケープ記号"
|
||||
msgstr "カラムのエスケープ記号:"
|
||||
|
||||
#: libraries/export/csv.php:27 libraries/import/csv.php:31
|
||||
msgid "Lines terminated with:"
|
||||
msgstr "行の終端記号"
|
||||
msgstr "行の終端記号:"
|
||||
|
||||
#: libraries/export/csv.php:28 libraries/export/excel.php:23
|
||||
#: libraries/export/htmlword.php:29 libraries/export/latex.php:80
|
||||
#: libraries/export/ods.php:24 libraries/export/odt.php:60
|
||||
msgid "Replace NULL with:"
|
||||
msgstr "NULL の代替文字列"
|
||||
msgstr "NULL の代替文字列:"
|
||||
|
||||
#: libraries/export/csv.php:29 libraries/export/excel.php:24
|
||||
msgid "Remove carriage return/line feed characters within columns"
|
||||
@ -6337,7 +6330,7 @@ msgstr "カラム内の改行/復帰文字を削除する"
|
||||
|
||||
#: libraries/export/excel.php:33
|
||||
msgid "Excel edition:"
|
||||
msgstr "Excel のエディション"
|
||||
msgstr "Excel のエディション:"
|
||||
|
||||
#: libraries/export/htmlword.php:28 libraries/export/latex.php:70
|
||||
#: libraries/export/odt.php:56 libraries/export/sql.php:222
|
||||
@ -6457,7 +6450,7 @@ msgstr "データベースの作成日時、最終更新日時、最終検査日
|
||||
#: libraries/export/sql.php:100
|
||||
msgid ""
|
||||
"Database system or older MySQL server to maximize output compatibility with:"
|
||||
msgstr "他のデータベースシステムまたは古い MySQL サーバとの互換性"
|
||||
msgstr "他のデータベースシステムまたは古い MySQL サーバとの互換性:"
|
||||
|
||||
#: libraries/export/sql.php:114 libraries/export/sql.php:173
|
||||
#: libraries/export/sql.php:180
|
||||
@ -6479,7 +6472,7 @@ msgstr ""
|
||||
|
||||
#: libraries/export/sql.php:226 libraries/export/sql.php:1185
|
||||
msgid "Truncate table before insert"
|
||||
msgstr ""
|
||||
msgstr "挿入前にテーブルを空にする"
|
||||
|
||||
#: libraries/export/sql.php:232
|
||||
msgid "Instead of <code>INSERT</code> statements, use:"
|
||||
@ -6692,7 +6685,7 @@ msgstr ""
|
||||
|
||||
#: libraries/import/csv.php:42
|
||||
msgid "Column names: "
|
||||
msgstr "カラム名:"
|
||||
msgstr "カラム名: "
|
||||
|
||||
#: libraries/import/csv.php:62 libraries/import/csv.php:75
|
||||
#: libraries/import/csv.php:80 libraries/import/csv.php:85
|
||||
@ -7037,7 +7030,6 @@ msgid "not OK"
|
||||
msgstr "NG"
|
||||
|
||||
#: libraries/relation.lib.php:80
|
||||
#, fuzzy
|
||||
#| msgid "OK"
|
||||
msgctxt "Correctly working"
|
||||
msgid "OK"
|
||||
@ -7096,7 +7088,7 @@ msgstr "ユーザ環境設定"
|
||||
|
||||
#: libraries/relation.lib.php:152
|
||||
msgid "Quick steps to setup advanced features:"
|
||||
msgstr "高度な機能の設定する簡単な方法"
|
||||
msgstr "高度な機能の設定する簡単な方法:"
|
||||
|
||||
#: libraries/relation.lib.php:154
|
||||
msgid ""
|
||||
@ -7668,7 +7660,7 @@ msgstr "このページにはテーブルがありません!"
|
||||
|
||||
#: libraries/schema/Export_Relation_Schema.class.php:228
|
||||
msgid "SCHEMA ERROR: "
|
||||
msgstr "スキーマエラー:"
|
||||
msgstr "スキーマエラー: "
|
||||
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:858
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1171
|
||||
@ -7980,10 +7972,10 @@ msgid "Table seems to be empty!"
|
||||
msgstr "テーブルが空のようです!"
|
||||
|
||||
#: libraries/tbl_links.inc.php:126
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Tracking of %s.%s is activated."
|
||||
msgid "Tracking of %s is activated."
|
||||
msgstr "%s.%s の SQL コマンド追跡機能はアクティブです。"
|
||||
msgstr "%s の SQL コマンド追跡機能はアクティブです。"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:98
|
||||
msgid ""
|
||||
@ -8049,7 +8041,7 @@ msgstr "なし"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:348
|
||||
msgid "As defined:"
|
||||
msgstr "ユーザ定義"
|
||||
msgstr "ユーザ定義:"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:462 tbl_structure.php:152
|
||||
#: tbl_structure.php:157 tbl_structure.php:575
|
||||
@ -8766,11 +8758,11 @@ msgid "No databases selected."
|
||||
msgstr "データベースが選択されていません。"
|
||||
|
||||
#: server_databases.php:99
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "%s databases have been dropped successfully."
|
||||
msgid "%1$d database has been dropped successfully."
|
||||
msgid_plural "%1$d databases have been dropped successfully."
|
||||
msgstr[0] "データベース %s を正常に削除しました"
|
||||
msgstr[0] "%1$d 個のデータベースを正常に削除しました。"
|
||||
|
||||
#: server_databases.php:119
|
||||
msgid "Databases statistics"
|
||||
@ -9128,10 +9120,9 @@ msgid "Revoke"
|
||||
msgstr "取り消し"
|
||||
|
||||
#: server_privileges.php:1543
|
||||
#, fuzzy
|
||||
#| msgid "Export"
|
||||
msgid "Export all"
|
||||
msgstr "エクスポート"
|
||||
msgstr "すべてエクスポート"
|
||||
|
||||
#: server_privileges.php:1562 server_privileges.php:1844
|
||||
#: server_privileges.php:2476
|
||||
@ -9139,16 +9130,15 @@ msgid "Any"
|
||||
msgstr "すべて"
|
||||
|
||||
#: server_privileges.php:1642
|
||||
#, fuzzy
|
||||
#| msgid "Privileges"
|
||||
msgid "Privileges for all users"
|
||||
msgstr "特権"
|
||||
msgstr "すべてのユーザに対する特権"
|
||||
|
||||
#: server_privileges.php:1654
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Privileges"
|
||||
msgid "Privileges for %s"
|
||||
msgstr "特権"
|
||||
msgstr "%s に対する特権"
|
||||
|
||||
#: server_privileges.php:1682
|
||||
msgid "Users overview"
|
||||
@ -9537,7 +9527,7 @@ msgstr "アドバイザ"
|
||||
|
||||
#: server_status.php:790 server_status.php:812
|
||||
msgid "Refresh rate: "
|
||||
msgstr "再描画間隔:"
|
||||
msgstr "再描画間隔: "
|
||||
|
||||
#: server_status.php:825 server_variables.php:108
|
||||
msgid "Filters"
|
||||
@ -10105,10 +10095,9 @@ msgstr ""
|
||||
"クの最大数です。"
|
||||
|
||||
#: server_status.php:1364
|
||||
#, fuzzy
|
||||
#| msgid "Percentage of used open files limit"
|
||||
msgid "Percentage of used key cache (calculated value)"
|
||||
msgstr "開いているファイルの上限に対する比率"
|
||||
msgstr "使われているキーキャッシュの比率 (計算値)"
|
||||
|
||||
#: server_status.php:1365
|
||||
msgid "The number of requests to read a key block from the cache."
|
||||
@ -10128,7 +10117,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"Key cache miss calculated as rate of physical reads compared to read "
|
||||
"requests (calculated value)"
|
||||
msgstr ""
|
||||
msgstr "キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算値)"
|
||||
|
||||
#: server_status.php:1368
|
||||
msgid "The number of requests to write a key block to the cache."
|
||||
@ -10141,7 +10130,7 @@ msgstr "ディスクにキーブロックを物理書き込みした回数。"
|
||||
#: server_status.php:1370
|
||||
msgid ""
|
||||
"Percentage of physical writes compared to write requests (calculated value)"
|
||||
msgstr ""
|
||||
msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)"
|
||||
|
||||
#: server_status.php:1371
|
||||
msgid ""
|
||||
@ -10359,10 +10348,9 @@ msgstr ""
|
||||
"がない場合はふつうあまりパフォーマンスは向上しません)"
|
||||
|
||||
#: server_status.php:1406
|
||||
#, fuzzy
|
||||
#| msgid "Thread cache hit rate %%"
|
||||
msgid "Thread cache hit rate (calculated value)"
|
||||
msgstr "スレッドキャッシュのヒット率"
|
||||
msgstr "スレッドキャッシュのヒット割合 (計算値)"
|
||||
|
||||
#: server_status.php:1407
|
||||
msgid "The number of threads that are not sleeping."
|
||||
@ -10528,7 +10516,7 @@ msgstr "系列をクリアする"
|
||||
|
||||
#: server_status.php:1697
|
||||
msgid "Series in Chart:"
|
||||
msgstr "グラフの系列"
|
||||
msgstr "グラフの系列:"
|
||||
|
||||
#: server_status.php:1710
|
||||
msgid "Log statistics"
|
||||
@ -11307,7 +11295,7 @@ msgstr "(1 回)"
|
||||
|
||||
#: tbl_operations.php:297
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgstr "テーブルを (データベース)<b>.</b>(テーブル) へ移動する"
|
||||
msgstr "テーブルを (データベース)<b>.</b>(テーブル) へ移動する:"
|
||||
|
||||
#: tbl_operations.php:355
|
||||
msgid "Table options"
|
||||
@ -11319,7 +11307,7 @@ msgstr "変更後のテーブル名称"
|
||||
|
||||
#: tbl_operations.php:537
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgstr "テーブルを (データベース)<b>.</b>(テーブル) にコピーする"
|
||||
msgstr "テーブルを (データベース)<b>.</b>(テーブル) にコピーする:"
|
||||
|
||||
#: tbl_operations.php:584
|
||||
msgid "Switch to copied table"
|
||||
@ -11425,7 +11413,7 @@ msgstr "行の長さ"
|
||||
|
||||
#: tbl_printview.php:373 tbl_structure.php:898
|
||||
msgid "Row size"
|
||||
msgstr "行のサイズ "
|
||||
msgstr "行のサイズ"
|
||||
|
||||
#: tbl_printview.php:383 tbl_structure.php:906
|
||||
msgid "Next autoindex"
|
||||
@ -11459,11 +11447,11 @@ msgstr "定型問い合わせ (ワイルドカード: \"%\")"
|
||||
|
||||
#: tbl_select.php:203
|
||||
msgid "Select columns (at least one):"
|
||||
msgstr "表示するカラム (最低 1 つ)"
|
||||
msgstr "表示するカラム (最低 1 つ):"
|
||||
|
||||
#: tbl_select.php:221
|
||||
msgid "Add search conditions (body of the \"where\" clause):"
|
||||
msgstr "検索条件 (WHERE 節の全内容)"
|
||||
msgstr "検索条件 (WHERE 節の全内容):"
|
||||
|
||||
#: tbl_select.php:228
|
||||
msgid "Number of rows per page"
|
||||
@ -11471,7 +11459,7 @@ msgstr "ページあたりの行数"
|
||||
|
||||
#: tbl_select.php:234
|
||||
msgid "Display order:"
|
||||
msgstr "表示順"
|
||||
msgstr "表示順:"
|
||||
|
||||
#: tbl_structure.php:155 tbl_structure.php:160 tbl_structure.php:581
|
||||
msgid "Spatial"
|
||||
@ -11567,23 +11555,22 @@ msgid "Tracking report for table `%s`"
|
||||
msgstr "テーブル `%s` に対しての追跡レポート"
|
||||
|
||||
#: tbl_tracking.php:174
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Version %s is created, tracking for %s.%s is activated."
|
||||
msgid "Version %1$s was created, tracking for %2$s is active."
|
||||
msgstr ""
|
||||
"世代 %s を作成しました。%s.%s の SQL コマンド追跡機能はアクティブです。"
|
||||
msgstr "世代 %1$s を作成しました。%2$s の SQL コマンド追跡機能はアクティブです。"
|
||||
|
||||
#: tbl_tracking.php:186
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Tracking of %s.%s is activated."
|
||||
msgid "Tracking for %1$s was deactivated at version %2$s."
|
||||
msgstr "%s.%s の SQL コマンド追跡機能はアクティブです。"
|
||||
msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s で非アクティブです。"
|
||||
|
||||
#: tbl_tracking.php:198
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Tracking of %s.%s is activated."
|
||||
msgid "Tracking for %1$s was activated at version %2$s."
|
||||
msgstr "%s.%s の SQL コマンド追跡機能はアクティブです。"
|
||||
msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s でアクティブです。"
|
||||
|
||||
#: tbl_tracking.php:211
|
||||
msgid "SQL statements executed."
|
||||
@ -11630,10 +11617,10 @@ msgid "Tracking statements"
|
||||
msgstr "追跡しているコマンド"
|
||||
|
||||
#: tbl_tracking.php:445 tbl_tracking.php:573
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Show %s with dates from %s to %s by user %s %s"
|
||||
msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s"
|
||||
msgstr "種別:%s、期間:%s-%s、ユーザ:%sで絞り込む %s"
|
||||
msgstr "種別:%1$s、期間:%2$s-%3$s、ユーザ:%4$sで絞り込む %5$s"
|
||||
|
||||
#: tbl_tracking.php:450
|
||||
msgid "Delete tracking data row from report"
|
||||
@ -11682,38 +11669,38 @@ msgid "Show versions"
|
||||
msgstr "世代を表示する"
|
||||
|
||||
#: tbl_tracking.php:714
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Deactivate tracking for %s.%s"
|
||||
msgid "Deactivate tracking for %s"
|
||||
msgstr "%s.%s への SQL コマンド追跡を非アクティブにする"
|
||||
msgstr "%s への SQL コマンド追跡を非アクティブにする"
|
||||
|
||||
#: tbl_tracking.php:716
|
||||
msgid "Deactivate now"
|
||||
msgstr "すぐに非アクティブにする"
|
||||
|
||||
#: tbl_tracking.php:727
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Activate tracking for %s.%s"
|
||||
msgid "Activate tracking for %s"
|
||||
msgstr "%s.%s への SQL コマンド追跡をアクティブにする"
|
||||
msgstr "%s への SQL コマンド追跡をアクティブにする"
|
||||
|
||||
#: tbl_tracking.php:729
|
||||
msgid "Activate now"
|
||||
msgstr "すぐにアクティブにする"
|
||||
|
||||
#: tbl_tracking.php:742
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Create version %s of %s.%s"
|
||||
msgid "Create version %1$s of %2$s"
|
||||
msgstr "%2$s.%3$s に世代 %1$s を作成"
|
||||
msgstr "%2$s に世代 %1$s を作成"
|
||||
|
||||
#: tbl_tracking.php:746
|
||||
msgid "Track these data definition statements:"
|
||||
msgstr "追跡するデータ定義コマンド"
|
||||
msgstr "追跡するデータ定義コマンド:"
|
||||
|
||||
#: tbl_tracking.php:754
|
||||
msgid "Track these data manipulation statements:"
|
||||
msgstr "追跡するデータ操作コマンド"
|
||||
msgstr "追跡するデータ操作コマンド:"
|
||||
|
||||
#: tbl_tracking.php:762
|
||||
msgid "Create version"
|
||||
|
||||
226
po/nb.po
226
po/nb.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-06 13:06+0200\n"
|
||||
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"PO-Revision-Date: 2012-04-08 05:59+0200\n"
|
||||
"Last-Translator: Asle Ommundsen <aommundsen@gmail.com>\n"
|
||||
"Language-Team: norwegian <no@li.org>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
"X-Generator: Weblate 0.8\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1794
|
||||
@ -394,10 +394,10 @@ msgid "You have to choose at least one column to display"
|
||||
msgstr "Du må velge minst en kolonne for visning"
|
||||
|
||||
#: db_qbe.php:186
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "visual builder"
|
||||
msgid "Switch to %svisual builder%s"
|
||||
msgstr "visuell bygger"
|
||||
msgstr "Bytt til %svisuell bygger%s"
|
||||
|
||||
#: db_qbe.php:222 libraries/db_structure.lib.php:91
|
||||
#: libraries/display_tbl.lib.php:1013
|
||||
@ -548,10 +548,9 @@ msgid "Search in database"
|
||||
msgstr "Søk i database"
|
||||
|
||||
#: db_search.php:277
|
||||
#, fuzzy
|
||||
#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgid "Words or values to search for (wildcard: \"%\"):"
|
||||
msgstr "Ord eller verdi(er) å søke etter (jokertegn: \"%\"):"
|
||||
msgstr "Ord eller verdier å søke med (jokertegn: \"%\"):"
|
||||
|
||||
#: db_search.php:282
|
||||
msgid "Find:"
|
||||
@ -562,10 +561,9 @@ msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Ord er separert med et mellomrom (\" \")."
|
||||
|
||||
#: db_search.php:300
|
||||
#, fuzzy
|
||||
#| msgid "Inside table(s):"
|
||||
msgid "Inside tables:"
|
||||
msgstr "I tabell(ene):"
|
||||
msgstr "I tabellene:"
|
||||
|
||||
#: db_search.php:330
|
||||
msgid "Inside column:"
|
||||
@ -698,22 +696,19 @@ msgid "Analyze table"
|
||||
msgstr "Analyser tabell"
|
||||
|
||||
#: db_structure.php:607
|
||||
#, fuzzy
|
||||
#| msgid "Go to table"
|
||||
msgid "Add prefix to table"
|
||||
msgstr "Gå til tabell"
|
||||
msgstr "Legg prefiks til tabell"
|
||||
|
||||
#: db_structure.php:609 libraries/mult_submits.inc.php:272
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Replace table prefix"
|
||||
msgstr "Erstatt tabell med filen"
|
||||
msgstr "Erstatt tabellprefiks"
|
||||
|
||||
#: db_structure.php:611 libraries/mult_submits.inc.php:272
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Copy table with prefix"
|
||||
msgstr "Erstatt tabell med filen"
|
||||
msgstr "Kopier tabell med prefiks"
|
||||
|
||||
#: db_structure.php:640 libraries/schema/User_Schema.class.php:423
|
||||
msgid "Data Dictionary"
|
||||
@ -799,20 +794,18 @@ msgid "Database Log"
|
||||
msgstr "Databaselogg"
|
||||
|
||||
#: export.php:38
|
||||
#, fuzzy
|
||||
#| msgid "Bar type"
|
||||
msgid "Bad type!"
|
||||
msgstr "Spørringstype"
|
||||
msgstr "Feil type!"
|
||||
|
||||
#: export.php:86
|
||||
msgid "Selected export type has to be saved in file!"
|
||||
msgstr "Valgte eksporteringstype krever lagring til ei fil!"
|
||||
|
||||
#: export.php:115
|
||||
#, fuzzy
|
||||
#| msgid "Apply index(s)"
|
||||
msgid "Bad parameters!"
|
||||
msgstr "Utfør indeks(er)"
|
||||
msgstr "Feil parametere!"
|
||||
|
||||
#: export.php:176 export.php:201 export.php:672
|
||||
#, php-format
|
||||
@ -838,29 +831,28 @@ msgid "Dump has been saved to file %s."
|
||||
msgstr "Dump har blitt lagret til fila %s."
|
||||
|
||||
#: file_echo.php:21
|
||||
#, fuzzy
|
||||
#| msgid "Export type"
|
||||
msgid "Invalid export type"
|
||||
msgstr "Eksport type"
|
||||
msgstr "Ugyldig eksport-type"
|
||||
|
||||
#: gis_data_editor.php:84
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Values for the column \"%s\""
|
||||
msgid "Value for the column \"%s\""
|
||||
msgstr "Verdier for kolonnen \"%s\""
|
||||
msgstr "Verdi for kolonnen \"%s\""
|
||||
|
||||
#: gis_data_editor.php:113 tbl_gis_visualization.php:164
|
||||
msgid "Use OpenStreetMaps as Base Layer"
|
||||
msgstr ""
|
||||
msgstr "Bruk OpenStreetMaps som baselag"
|
||||
|
||||
#: gis_data_editor.php:134
|
||||
msgid "SRID"
|
||||
msgstr ""
|
||||
msgstr "SRID"
|
||||
|
||||
#: gis_data_editor.php:151 js/messages.php:322
|
||||
#: libraries/display_tbl.lib.php:692
|
||||
msgid "Geometry"
|
||||
msgstr ""
|
||||
msgstr "Geometri"
|
||||
|
||||
#: gis_data_editor.php:172 js/messages.php:318
|
||||
msgid "Point"
|
||||
@ -869,12 +861,12 @@ msgstr ""
|
||||
#: gis_data_editor.php:173 gis_data_editor.php:197 gis_data_editor.php:245
|
||||
#: gis_data_editor.php:297 js/messages.php:316
|
||||
msgid "X"
|
||||
msgstr ""
|
||||
msgstr "X"
|
||||
|
||||
#: gis_data_editor.php:175 gis_data_editor.php:199 gis_data_editor.php:247
|
||||
#: gis_data_editor.php:299 js/messages.php:317
|
||||
msgid "Y"
|
||||
msgstr ""
|
||||
msgstr "Y"
|
||||
|
||||
#: gis_data_editor.php:195 gis_data_editor.php:243 gis_data_editor.php:295
|
||||
#: js/messages.php:319
|
||||
@ -884,52 +876,46 @@ msgstr ""
|
||||
|
||||
#: gis_data_editor.php:204 gis_data_editor.php:250 gis_data_editor.php:302
|
||||
#: js/messages.php:325
|
||||
#, fuzzy
|
||||
#| msgid "Apply index(s)"
|
||||
msgid "Add a point"
|
||||
msgstr "Utfør indeks(er)"
|
||||
msgstr ""
|
||||
|
||||
#: gis_data_editor.php:220 js/messages.php:320
|
||||
#, fuzzy
|
||||
#| msgid "Lines terminated by"
|
||||
msgid "Linestring"
|
||||
msgstr "Linker avsluttet med"
|
||||
msgstr "Linjestreng"
|
||||
|
||||
#: gis_data_editor.php:223 gis_data_editor.php:279 js/messages.php:324
|
||||
msgid "Outer Ring"
|
||||
msgstr ""
|
||||
msgstr "Ytre ring"
|
||||
|
||||
#: gis_data_editor.php:225 gis_data_editor.php:281 js/messages.php:323
|
||||
msgid "Inner Ring"
|
||||
msgstr ""
|
||||
msgstr "Indre ring"
|
||||
|
||||
#: gis_data_editor.php:252
|
||||
#, fuzzy
|
||||
#| msgid "Add a new User"
|
||||
msgid "Add a linestring"
|
||||
msgstr "Legg til en ny bruker"
|
||||
msgstr "Legg til linjestreng"
|
||||
|
||||
#: gis_data_editor.php:252 gis_data_editor.php:304 js/messages.php:326
|
||||
#, fuzzy
|
||||
#| msgid "Add a new User"
|
||||
msgid "Add an inner ring"
|
||||
msgstr "Legg til en ny bruker"
|
||||
msgstr "Legg til en indre ring"
|
||||
|
||||
#: gis_data_editor.php:266 js/messages.php:321
|
||||
msgid "Polygon"
|
||||
msgstr ""
|
||||
msgstr "Polygon"
|
||||
|
||||
#: gis_data_editor.php:306 js/messages.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Add column"
|
||||
msgid "Add a polygon"
|
||||
msgstr "Legg til kolonne(r)"
|
||||
msgstr "Legg til polygon"
|
||||
|
||||
#: gis_data_editor.php:310
|
||||
#, fuzzy
|
||||
#| msgid "Add a new server"
|
||||
msgid "Add geometry"
|
||||
msgstr "Legg til en ny tjener"
|
||||
msgstr "Legg til geometri"
|
||||
|
||||
#: gis_data_editor.php:317
|
||||
msgid "Output"
|
||||
@ -940,6 +926,8 @@ msgid ""
|
||||
"Chose \"GeomFromText\" from the \"Function\" column and paste the below "
|
||||
"string into the \"Value\" field"
|
||||
msgstr ""
|
||||
"Velg \"GeomFromText\" fra kolonnen \"Funksjon\" og lim inn teksten nedenfor inn "
|
||||
"i feltet \"Verdi\""
|
||||
|
||||
#: import.php:86
|
||||
#, php-format
|
||||
@ -988,6 +976,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"Cannot convert file's character set without character set conversion library"
|
||||
msgstr ""
|
||||
"Kan ikke konvertere filens tegnsett uten tegnsett konverteringsbibliotek"
|
||||
|
||||
#: import.php:439 libraries/display_import.lib.php:23
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
@ -1052,16 +1041,14 @@ msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Du er i ferd med å SLETTE en komplett database!"
|
||||
|
||||
#: js/messages.php:32
|
||||
#, fuzzy
|
||||
#| msgid "You are about to DESTROY a complete database!"
|
||||
msgid "You are about to DESTROY a complete table!"
|
||||
msgstr "Du er i ferd med å SLETTE en komplett database!"
|
||||
msgstr "Du er i ferd med å SLETTE en hel database!"
|
||||
|
||||
#: js/messages.php:33
|
||||
#, fuzzy
|
||||
#| msgid "You are about to DESTROY a complete database!"
|
||||
msgid "You are about to TRUNCATE a complete table!"
|
||||
msgstr "Du er i ferd med å SLETTE en komplett database!"
|
||||
msgstr "Du er i ferd med å AVKORTE en hel database!"
|
||||
|
||||
#: js/messages.php:35
|
||||
msgid "Deleting tracking data"
|
||||
@ -1084,29 +1071,26 @@ msgid "This is not a number!"
|
||||
msgstr "Dette er ikke ett tall!"
|
||||
|
||||
#: js/messages.php:42
|
||||
#, fuzzy
|
||||
#| msgid "Apply index(s)"
|
||||
msgid "Add Index"
|
||||
msgstr "Utfør indeks(er)"
|
||||
msgstr "Legg til index"
|
||||
|
||||
#: js/messages.php:43
|
||||
#, fuzzy
|
||||
#| msgid "Edit mode"
|
||||
msgid "Edit Index"
|
||||
msgstr "Redigeringsmodus"
|
||||
msgstr "Rediger indeks"
|
||||
|
||||
#: js/messages.php:44 tbl_indexes.php:293
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Add %s column(s)"
|
||||
msgid "Add %d column(s) to index"
|
||||
msgstr "Legg til %s kolonne(r)"
|
||||
msgstr "Legg %d kolonne(r) til index"
|
||||
|
||||
#. l10n: Default description for the y-Axis of Charts
|
||||
#: js/messages.php:48
|
||||
#, fuzzy
|
||||
#| msgid "Log file count"
|
||||
msgid "Total count"
|
||||
msgstr "Antall loggfiler"
|
||||
msgstr "Totalt antall"
|
||||
|
||||
#: js/messages.php:51
|
||||
msgid "The host name is empty!"
|
||||
@ -1126,10 +1110,9 @@ msgstr "Passordene er ikke like!"
|
||||
|
||||
#: js/messages.php:55 server_privileges.php:1913 server_privileges.php:1937
|
||||
#: server_privileges.php:2349 server_privileges.php:2543
|
||||
#, fuzzy
|
||||
#| msgid "Any user"
|
||||
msgid "Add user"
|
||||
msgstr "Alle brukere"
|
||||
msgstr "Legg til bruker"
|
||||
|
||||
#: js/messages.php:56
|
||||
msgid "Reloading Privileges"
|
||||
@ -1153,24 +1136,22 @@ msgid "Edit"
|
||||
msgstr "Rediger"
|
||||
|
||||
#: js/messages.php:62 server_status.php:795
|
||||
#, fuzzy
|
||||
#| msgid "Server Choice"
|
||||
msgid "Live traffic chart"
|
||||
msgstr "Tjenervalg"
|
||||
msgstr "Live trafikk-graf"
|
||||
|
||||
#: js/messages.php:63 server_status.php:798
|
||||
msgid "Live conn./process chart"
|
||||
msgstr ""
|
||||
msgstr "Live tilkbl./prosess-graf"
|
||||
|
||||
#: js/messages.php:64 server_status.php:816
|
||||
#, fuzzy
|
||||
#| msgid "Show query box"
|
||||
msgid "Live query chart"
|
||||
msgstr "Vis spørringsboks"
|
||||
msgstr "Live spørrings-graf"
|
||||
|
||||
#: js/messages.php:66
|
||||
msgid "Static data"
|
||||
msgstr ""
|
||||
msgstr "Statistikkdata"
|
||||
|
||||
#. l10n: Total number of queries
|
||||
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
|
||||
@ -1183,7 +1164,7 @@ msgstr "Totalt"
|
||||
#. l10n: Other, small valued, queries
|
||||
#: js/messages.php:70 server_status.php:595 server_status.php:1014
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
msgstr "Annet"
|
||||
|
||||
#. l10n: Thousands separator
|
||||
#: js/messages.php:72 libraries/common.lib.php:1484
|
||||
@ -1197,51 +1178,48 @@ msgstr ","
|
||||
|
||||
#: js/messages.php:76
|
||||
msgid "KiB sent since last refresh"
|
||||
msgstr ""
|
||||
msgstr "KiB sendt siden sist oppdatering"
|
||||
|
||||
#: js/messages.php:77
|
||||
msgid "KiB received since last refresh"
|
||||
msgstr ""
|
||||
msgstr "KiB mottatt siden sist oppdatering"
|
||||
|
||||
#: js/messages.php:78
|
||||
#, fuzzy
|
||||
#| msgid "Server Choice"
|
||||
msgid "Server traffic (in KiB)"
|
||||
msgstr "Tjenervalg"
|
||||
msgstr "Servertrafikk (i KiB)"
|
||||
|
||||
#: js/messages.php:79
|
||||
msgid "Connections since last refresh"
|
||||
msgstr ""
|
||||
msgstr "Tilkoblinger siden sist oppdatering"
|
||||
|
||||
#: js/messages.php:80 js/messages.php:118 server_status.php:1227
|
||||
msgid "Processes"
|
||||
msgstr "Prosesser"
|
||||
|
||||
#: js/messages.php:81
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Connections / Processes"
|
||||
msgstr "tilkoblinger"
|
||||
msgstr "Tilkoblinger/prosesser"
|
||||
|
||||
#. l10n: Questions is the name of a MySQL Status variable
|
||||
#: js/messages.php:83
|
||||
msgid "Questions since last refresh"
|
||||
msgstr ""
|
||||
msgstr "Spørringer siden sist oppdatering"
|
||||
|
||||
#. l10n: Questions is the name of a MySQL Status variable
|
||||
#: js/messages.php:85
|
||||
msgid "Questions (executed statements by the server)"
|
||||
msgstr ""
|
||||
msgstr "Spørringer (executed statements av serveren)"
|
||||
|
||||
#: js/messages.php:87 server_status.php:777
|
||||
msgid "Query statistics"
|
||||
msgstr "Spørringsstatistikk"
|
||||
|
||||
#: js/messages.php:90
|
||||
#, fuzzy
|
||||
#| msgid "Could not save configuration"
|
||||
msgid "Local monitor configuration incompatible"
|
||||
msgstr "Kunne ikke lagre konfigurasjonen"
|
||||
msgstr "Lokal monitor-konfigurasjon er inkompatibel"
|
||||
|
||||
#: js/messages.php:91
|
||||
msgid ""
|
||||
@ -1252,34 +1230,31 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:93
|
||||
#, fuzzy
|
||||
#| msgid "Query cache"
|
||||
msgid "Query cache efficiency"
|
||||
msgstr "Spørringsmellomlager"
|
||||
msgstr "Spørrings cache effektivitet"
|
||||
|
||||
#: js/messages.php:94
|
||||
#, fuzzy
|
||||
#| msgid "Query cache"
|
||||
msgid "Query cache usage"
|
||||
msgstr "Spørringsmellomlager"
|
||||
msgstr "Spørrings cache bruk"
|
||||
|
||||
#: js/messages.php:95
|
||||
#, fuzzy
|
||||
#| msgid "Query cache"
|
||||
msgid "Query cache used"
|
||||
msgstr "Spørringsmellomlager"
|
||||
msgstr "Spørrings cache brukt"
|
||||
|
||||
#: js/messages.php:97
|
||||
msgid "System CPU Usage"
|
||||
msgstr ""
|
||||
msgstr "System CPU-bruk"
|
||||
|
||||
#: js/messages.php:98
|
||||
msgid "System memory"
|
||||
msgstr ""
|
||||
msgstr "System minne"
|
||||
|
||||
#: js/messages.php:99
|
||||
msgid "System swap"
|
||||
msgstr ""
|
||||
msgstr "System swap"
|
||||
|
||||
#. l10n: shortcuts for Megabyte
|
||||
#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1434
|
||||
@ -1295,61 +1270,56 @@ msgstr "KiB"
|
||||
|
||||
#: js/messages.php:103
|
||||
msgid "Average load"
|
||||
msgstr ""
|
||||
msgstr "Gjennomsnitt load"
|
||||
|
||||
#: js/messages.php:104
|
||||
#, fuzzy
|
||||
#| msgid "Log file count"
|
||||
msgid "Total memory"
|
||||
msgstr "Antall loggfiler"
|
||||
msgstr "Totalt minne"
|
||||
|
||||
#: js/messages.php:105
|
||||
msgid "Cached memory"
|
||||
msgstr ""
|
||||
msgstr "Cached minne"
|
||||
|
||||
#: js/messages.php:106
|
||||
#, fuzzy
|
||||
#| msgid "Buffer Pool"
|
||||
msgid "Buffered memory"
|
||||
msgstr "Mellomlager"
|
||||
msgstr "Buffered minne"
|
||||
|
||||
#: js/messages.php:107
|
||||
msgid "Free memory"
|
||||
msgstr ""
|
||||
msgstr "Ledig minne"
|
||||
|
||||
#: js/messages.php:108
|
||||
msgid "Used memory"
|
||||
msgstr ""
|
||||
msgstr "Brukt minne"
|
||||
|
||||
#: js/messages.php:110
|
||||
#, fuzzy
|
||||
#| msgid "Total"
|
||||
msgid "Total Swap"
|
||||
msgstr "Totalt"
|
||||
msgstr "Totalt swap"
|
||||
|
||||
#: js/messages.php:111
|
||||
msgid "Cached Swap"
|
||||
msgstr ""
|
||||
msgstr "Cached swap"
|
||||
|
||||
#: js/messages.php:112
|
||||
msgid "Used Swap"
|
||||
msgstr ""
|
||||
msgstr "Brukt swap"
|
||||
|
||||
#: js/messages.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Free pages"
|
||||
msgid "Free Swap"
|
||||
msgstr "Ledige sider"
|
||||
msgstr "Ledig swap"
|
||||
|
||||
#: js/messages.php:115
|
||||
msgid "Bytes sent"
|
||||
msgstr ""
|
||||
msgstr "Bytes sendt"
|
||||
|
||||
#: js/messages.php:116
|
||||
#, fuzzy
|
||||
#| msgid "Received"
|
||||
msgid "Bytes received"
|
||||
msgstr "Mottatt"
|
||||
msgstr "Bytes mottatt"
|
||||
|
||||
#: js/messages.php:117 server_status.php:1137
|
||||
msgid "Connections"
|
||||
@ -1381,18 +1351,17 @@ msgid "EiB"
|
||||
msgstr "EiB"
|
||||
|
||||
#: js/messages.php:128
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "%s table"
|
||||
#| msgid_plural "%s tables"
|
||||
msgid "%d table(s)"
|
||||
msgstr "%s tabell"
|
||||
msgstr "%d tabell(er)"
|
||||
|
||||
#. l10n: Questions is the name of a MySQL Status variable
|
||||
#: js/messages.php:131
|
||||
#, fuzzy
|
||||
#| msgid "Versions"
|
||||
msgid "Questions"
|
||||
msgstr "Versjoner"
|
||||
msgstr "Spørringer"
|
||||
|
||||
#: js/messages.php:132 server_status.php:1092
|
||||
msgid "Traffic"
|
||||
@ -1401,27 +1370,25 @@ msgstr "Trafikk"
|
||||
#: js/messages.php:133 libraries/server_links.inc.php:73
|
||||
#: server_status.php:1557
|
||||
msgid "Settings"
|
||||
msgstr "Iinnstillinger"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#: js/messages.php:134
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Remove chart"
|
||||
msgstr "Fjern database"
|
||||
msgstr "Fjern graf"
|
||||
|
||||
#: js/messages.php:135
|
||||
msgid "Edit title and labels"
|
||||
msgstr ""
|
||||
msgstr "Rediger tittel og etiketter"
|
||||
|
||||
#: js/messages.php:136
|
||||
#, fuzzy
|
||||
#| msgid "Snap to grid"
|
||||
msgid "Add chart to grid"
|
||||
msgstr "Lås til ruter"
|
||||
msgstr "Legg graf til grid"
|
||||
|
||||
#: js/messages.php:138
|
||||
msgid "Please add at least one variable to the series"
|
||||
msgstr ""
|
||||
msgstr "Legg minst én variabel til serien"
|
||||
|
||||
#: js/messages.php:139 libraries/display_export.lib.php:311
|
||||
#: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1113
|
||||
@ -1433,35 +1400,35 @@ msgstr "Ingen"
|
||||
|
||||
#: js/messages.php:140
|
||||
msgid "Resume monitor"
|
||||
msgstr ""
|
||||
msgstr "Gjenoppta monitor"
|
||||
|
||||
#: js/messages.php:141
|
||||
msgid "Pause monitor"
|
||||
msgstr ""
|
||||
msgstr "Pause monitor"
|
||||
|
||||
#: js/messages.php:143
|
||||
msgid "general_log and slow_query_log are enabled."
|
||||
msgstr ""
|
||||
msgstr "general_log og slow_query_log er aktivert."
|
||||
|
||||
#: js/messages.php:144
|
||||
msgid "general_log is enabled."
|
||||
msgstr ""
|
||||
msgstr "general_log er aktivert."
|
||||
|
||||
#: js/messages.php:145
|
||||
msgid "slow_query_log is enabled."
|
||||
msgstr ""
|
||||
msgstr "slow_query_log er aktivert."
|
||||
|
||||
#: js/messages.php:146
|
||||
msgid "slow_query_log and general_log are disabled."
|
||||
msgstr ""
|
||||
msgstr "slow_query_log og general_log er deaktivert."
|
||||
|
||||
#: js/messages.php:147
|
||||
msgid "log_output is not set to TABLE."
|
||||
msgstr ""
|
||||
msgstr "log_output er ikke satt til TABLE."
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "log_output is set to TABLE."
|
||||
msgstr ""
|
||||
msgstr "log_output er satt til TABLE."
|
||||
|
||||
#: js/messages.php:149
|
||||
#, php-format
|
||||
@ -1470,17 +1437,22 @@ msgid ""
|
||||
"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, "
|
||||
"depending on your system."
|
||||
msgstr ""
|
||||
"slow_query_log er aktivert, men serveren loggfører kun spørringer som tar "
|
||||
"lenger enn %d sekunder. Avhengig av ditt system, er det tilrådelig å sette "
|
||||
"long_query_time til 0-2 sekunder."
|
||||
|
||||
#: js/messages.php:150
|
||||
#, php-format
|
||||
msgid "long_query_time is set to %d second(s)."
|
||||
msgstr ""
|
||||
msgstr "long_query_time er satt til %d sekund(er)."
|
||||
|
||||
#: js/messages.php:151
|
||||
msgid ""
|
||||
"Following settings will be applied globally and reset to default on server "
|
||||
"restart:"
|
||||
msgstr ""
|
||||
"Følgende innstillinger blir lagt til globalt og endret til default ved "
|
||||
"omstart av server:"
|
||||
|
||||
#. l10n: %s is FILE or TABLE
|
||||
#: js/messages.php:153
|
||||
@ -1882,25 +1854,23 @@ msgstr ""
|
||||
|
||||
#: js/messages.php:265 libraries/rte/rte_routines.lib.php:689
|
||||
msgid "ENUM/SET editor"
|
||||
msgstr ""
|
||||
msgstr "ENUM/SET-editor"
|
||||
|
||||
#: js/messages.php:266
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Values for the column \"%s\""
|
||||
msgid "Values for column %s"
|
||||
msgstr "Verdier for kolonnen \"%s\""
|
||||
msgstr "Verdier for kolonne %s"
|
||||
|
||||
#: js/messages.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Values for the column \"%s\""
|
||||
msgid "Values for a new column"
|
||||
msgstr "Verdier for kolonnen \"%s\""
|
||||
msgstr "Verdier for ny kolonne"
|
||||
|
||||
#: js/messages.php:268
|
||||
#, fuzzy
|
||||
#| msgid "Enter each value in a separate field."
|
||||
msgid "Enter each value in a separate field"
|
||||
msgstr "Skriv inn hver verdi i separate felter."
|
||||
msgstr "Skriv hver verdi i et eget felt"
|
||||
|
||||
#: js/messages.php:269
|
||||
#, fuzzy, php-format
|
||||
|
||||
20
po/ru.po
20
po/ru.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-06 13:06+0200\n"
|
||||
"PO-Revision-Date: 2012-04-04 22:26+0200\n"
|
||||
"PO-Revision-Date: 2012-04-07 15:11+0200\n"
|
||||
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
|
||||
"Language-Team: russian <ru@li.org>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 0.8\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
@ -246,16 +246,16 @@ msgid "The database name is empty!"
|
||||
msgstr "Не указано имя базы данных!"
|
||||
|
||||
#: db_operations.php:300
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Database %s has been renamed to %s"
|
||||
msgid "Database %1$s has been renamed to %2$s"
|
||||
msgstr "База данных %s переименована в %s"
|
||||
msgstr "База данных %1$s переименована в %2$s"
|
||||
|
||||
#: db_operations.php:304
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Database %s has been copied to %s"
|
||||
msgid "Database %1$s has been copied to %2$s"
|
||||
msgstr "База данных %s была скопирована в %s"
|
||||
msgstr "База данных %1$s скопирована в %2$s"
|
||||
|
||||
#: db_operations.php:432
|
||||
msgid "Rename database to"
|
||||
@ -2001,10 +2001,9 @@ msgstr ""
|
||||
"мышки."
|
||||
|
||||
#: js/messages.php:356
|
||||
#, fuzzy
|
||||
#| msgid "Update row(s)"
|
||||
msgid "Show data row(s)"
|
||||
msgstr "Обновить строку(и)"
|
||||
msgstr "Вывести строку(и) данных"
|
||||
|
||||
#: js/messages.php:359
|
||||
msgid "Generate password"
|
||||
@ -2631,10 +2630,9 @@ msgid "Failed to use Blowfish from mcrypt!"
|
||||
msgstr "Невозможно использование Blowfish из mcrypt!"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:208 libraries/header.inc.php:90
|
||||
#, fuzzy
|
||||
#| msgid "Cookies must be enabled past this point."
|
||||
msgid "Javascript must be enabled past this point"
|
||||
msgstr "Для полноценной работы необходима поддержка cookies браузером."
|
||||
msgstr "Для полноценной работы необходима поддержка Javascript браузером"
|
||||
|
||||
#: libraries/auth/cookie.auth.lib.php:227
|
||||
msgid "Log in"
|
||||
|
||||
278
po/si.po
278
po/si.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-06 13:06+0200\n"
|
||||
"PO-Revision-Date: 2012-04-06 18:03+0200\n"
|
||||
"PO-Revision-Date: 2012-04-08 16:29+0200\n"
|
||||
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
|
||||
"Language-Team: sinhala <si@li.org>\n"
|
||||
"Language: si\n"
|
||||
@ -1586,7 +1586,9 @@ msgstr "වෙනස් වූ පේළි:"
|
||||
|
||||
#: js/messages.php:206
|
||||
msgid "Failed parsing config file. It doesn't seem to be valid JSON code."
|
||||
msgstr "Config ගොනුව විග්රහ කිරීම අසමත් විය. ගොනුවෙහි වලංගු JSON කේත ඇත්දැයි පරීක්ෂා කරන්න."
|
||||
msgstr ""
|
||||
"වින්යාස ගොනුව විග්රහ කිරීම අසමත් විය. ගොනුවෙහි වලංගු JSON කේත ඇත්දැයි "
|
||||
"පරීක්ෂා කරන්න."
|
||||
|
||||
#: js/messages.php:207
|
||||
msgid ""
|
||||
@ -2299,7 +2301,7 @@ msgstr "වින්යාස ගොනුව සඳහා වැරදි
|
||||
|
||||
#: libraries/Config.class.php:1298
|
||||
msgid "Font size"
|
||||
msgstr "ෆොන්ට් එකෙහි ප්රමාණය"
|
||||
msgstr "ෆොන්ටයෙහි ප්රමාණය"
|
||||
|
||||
#: libraries/Error_Handler.class.php:62
|
||||
msgid "Too many error messages, some are not displayed."
|
||||
@ -2440,15 +2442,15 @@ msgstr "PDF සැදීමේදී දෝෂ:"
|
||||
|
||||
#: libraries/RecentTable.class.php:106
|
||||
msgid "Could not save recent table"
|
||||
msgstr "නූතන වගු සුරැකීම අසමත් විය"
|
||||
msgstr "මෑතදී භාවිතා කල වගු සුරැකීම අසමත් විය"
|
||||
|
||||
#: libraries/RecentTable.class.php:141
|
||||
msgid "Recent tables"
|
||||
msgstr "නූතන වගු"
|
||||
msgstr "මෑතදී භාවිතා කල වගු"
|
||||
|
||||
#: libraries/RecentTable.class.php:148
|
||||
msgid "There are no recent tables"
|
||||
msgstr "නූතන වගු කිසිවක් නොමැත"
|
||||
msgstr "මෑතදී භාවිතා කල වගු කිසිවක් නොමැත"
|
||||
|
||||
#: libraries/StorageEngine.class.php:203
|
||||
msgid ""
|
||||
@ -2563,8 +2565,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 ""
|
||||
"Probably reason of this is that you did not create configuration file. You "
|
||||
"might want to use %1$ssetup script%2$s to create one."
|
||||
"ඔබ වින්යාස ගොනුවක් නොසෑදුවා විය යුතුය. වින්යාස ගොනුවක් සෑදීමට %"
|
||||
"1$sපිහිටුවීමේ විධානාවලිය%2$s භාවිතා කිරීම අවශ්ය විය හැකිය."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:110
|
||||
msgid ""
|
||||
@ -3777,6 +3779,9 @@ msgid ""
|
||||
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
|
||||
"get special values."
|
||||
msgstr ""
|
||||
"බව්සරයේ මාතෘකා පටියේ දැක්වෙන පෙළ සඳහන් කරයි. මේ සඳහා යොදාගත හැකි විශේෂ අගයන් "
|
||||
"ගෙනදෙන වචන දැනගැනීමට [a@Documentation.html#cfg_TitleTable]ලියකියවිලි[/a] "
|
||||
"බලන්න."
|
||||
|
||||
#: libraries/config/messages.inc.php:196
|
||||
#: libraries/navigation_header.inc.php:79
|
||||
@ -3989,6 +3994,8 @@ msgid ""
|
||||
"Default format; be aware that this list depends on location (database, "
|
||||
"table) and only SQL is always available"
|
||||
msgstr ""
|
||||
"පෙරනිමි ආකෘතිය; මෙම ලැයිස්තුව ඔබ සිටිනා ස්ථානය (දත්තගබඩා, වගු) මත තීරණය වේ. "
|
||||
"SQL පමණක් සෑම විටම ඇත"
|
||||
|
||||
#: libraries/config/messages.inc.php:249
|
||||
msgid "Format of imported file"
|
||||
@ -4141,7 +4148,7 @@ msgstr "මෑතදී භාවිතා කල වගු"
|
||||
|
||||
#: libraries/config/messages.inc.php:292
|
||||
msgid "Use less graphically intense tabs"
|
||||
msgstr ""
|
||||
msgstr "දර්ශනය කිරීමට පහසු ටැබ පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:293
|
||||
msgid "Light tabs"
|
||||
@ -4165,17 +4172,18 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:297
|
||||
msgid "Delete all cookies on logout"
|
||||
msgstr ""
|
||||
msgstr "පිටවීමේදී කුකී සියල්ල ඉවත් කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:298
|
||||
msgid ""
|
||||
"Define whether the previous login should be recalled or not in cookie "
|
||||
"authentication mode"
|
||||
msgstr ""
|
||||
"කුකී සත්යාපන ප්රකාරයේදී අවසන් ඇතුළු වීමම භාවිතා කල යුතුදැයි සඳහන් කරයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:299
|
||||
msgid "Recall user name"
|
||||
msgstr ""
|
||||
msgstr "භාවිත නාමය සිහියට නගන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:300
|
||||
msgid ""
|
||||
@ -4184,10 +4192,14 @@ msgid ""
|
||||
"and will be deleted as soon as you close the browser window. This is "
|
||||
"recommended for non-trusted environments."
|
||||
msgstr ""
|
||||
"ඇතුල් වීමේ කුකිය කොපමණ කාලයක් (තත්පර වලින්) බ්රව්සරයේ තබාගත යුතුදැයි සඳහන් "
|
||||
"කරයි. පෙරනිමි අගය වන 0 න් අදහස් වනුයේ එය වත්මන් සැසිය සඳහ පමණක් තබාගෙන "
|
||||
"බ්රව්සරය වැසීමෙන් පසු ඉවත් කල යුතුය යන්නය. විශ්වාසදායි නොවන පරිසරයන් සඳහා "
|
||||
"මෙම පෙරනිමි අගය නිර්දේශිතය."
|
||||
|
||||
#: libraries/config/messages.inc.php:301
|
||||
msgid "Login cookie store"
|
||||
msgstr ""
|
||||
msgstr "ඇතුල් වීමේ කුකිය රඳවාගන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:302
|
||||
msgid "Define how long (in seconds) a login cookie is valid"
|
||||
@ -4199,7 +4211,7 @@ msgstr "ලොගින් කුකියේ වලංගුතාවය"
|
||||
|
||||
#: libraries/config/messages.inc.php:304
|
||||
msgid "Double size of textarea for LONGTEXT columns"
|
||||
msgstr ""
|
||||
msgstr "LONGTEXT තීර සඳහා දෙගුණයක් විශාල පෙළපෙදෙසක්"
|
||||
|
||||
#: libraries/config/messages.inc.php:305
|
||||
msgid "Bigger textarea for LONGTEXT"
|
||||
@ -4207,15 +4219,15 @@ msgstr "LONGTEXT සඳහා විශාල පෙළ පෙදෙසක්"
|
||||
|
||||
#: libraries/config/messages.inc.php:306
|
||||
msgid "Use icons on main page"
|
||||
msgstr ""
|
||||
msgstr "ප්රධාන පිටුවේ අයිකන භාවිතා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:307
|
||||
msgid "Maximum number of characters used when a SQL query is displayed"
|
||||
msgstr ""
|
||||
msgstr "SQL විමසුම පෙන්වීමේදී භාවිතා කල යුතු උපරිම අනුලකුණු ගණන"
|
||||
|
||||
#: libraries/config/messages.inc.php:308
|
||||
msgid "Maximum displayed SQL length"
|
||||
msgstr ""
|
||||
msgstr "දර්ෂිත SQL සඳහා උපරිම දිග"
|
||||
|
||||
#: libraries/config/messages.inc.php:309 libraries/config/messages.inc.php:314
|
||||
#: libraries/config/messages.inc.php:341
|
||||
@ -4236,10 +4248,12 @@ msgid ""
|
||||
"contains more rows, "Previous" and "Next" links will be "
|
||||
"shown."
|
||||
msgstr ""
|
||||
"ප්රථිඵල පිරික්සීමේදී එකවර පෙන්විය යුතු පේළි ගණන. ප්රතිඵලයේ ඊට වඩා පේළි "
|
||||
"ඇත්නම් "පෙර" සහ "මීළඟ" සබැඳි පෙන්වයි."
|
||||
|
||||
#: libraries/config/messages.inc.php:313
|
||||
msgid "Maximum number of rows to display"
|
||||
msgstr ""
|
||||
msgstr "පෙන්විය යුතු උපරිම පේළි ගණන"
|
||||
|
||||
#: libraries/config/messages.inc.php:315
|
||||
msgid "Maximum number of tables displayed in table list"
|
||||
@ -4254,16 +4268,20 @@ msgid ""
|
||||
"Disable the default warning that is displayed if mcrypt is missing for "
|
||||
"cookie authentication"
|
||||
msgstr ""
|
||||
"කුකී සත්යාපනය සඳහා අවශ්ය mcrypt නොමැති අවස්ථාවකදී පෙන්වන අනතුරු ඇඟවීම "
|
||||
"අක්රීය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:318
|
||||
msgid "mcrypt warning"
|
||||
msgstr ""
|
||||
msgstr "mcrypt අනතුරු ඇඟවීම"
|
||||
|
||||
#: libraries/config/messages.inc.php:319
|
||||
msgid ""
|
||||
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
|
||||
"([kbd]0[/kbd] for no limit)"
|
||||
msgstr ""
|
||||
"විධානවලියකට වෙන් කිරීමට අවසර ඇති බයිට ගණන, උදා. [kbd]32M[/kbd] (අසීමිත බයිට "
|
||||
"ගණනක් සඳහා [kbd]0[/kbd])"
|
||||
|
||||
#: libraries/config/messages.inc.php:320
|
||||
msgid "Memory limit"
|
||||
@ -4271,15 +4289,17 @@ msgstr "මතක සීමාව"
|
||||
|
||||
#: libraries/config/messages.inc.php:321
|
||||
msgid "These are Edit, Copy and Delete links"
|
||||
msgstr ""
|
||||
msgstr "මේවා සංස්කරණය කරන්න, පිටපත් කරන්න සහ ඉවත් කරන්න යන සබැඳිය"
|
||||
|
||||
#: libraries/config/messages.inc.php:322
|
||||
msgid "Where to show the table row links"
|
||||
msgstr ""
|
||||
msgstr "වගුවේ පේළි වලට අදාල සබැඳි පෙන්විය යුත්තේ කොහේද යන වග"
|
||||
|
||||
#: libraries/config/messages.inc.php:323
|
||||
msgid "Use natural order for sorting table and database names"
|
||||
msgstr ""
|
||||
"වගු හා දත්තගබඩා වල නම් අනුපිළිවෙලට සැකසීම සඳහා ස්වභාවික අනුපිළිවෙල භාවිතා "
|
||||
"කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:324
|
||||
msgid "Natural order"
|
||||
@ -4287,37 +4307,40 @@ msgstr "ස්වභාවික අනුපිළිවල"
|
||||
|
||||
#: libraries/config/messages.inc.php:325 libraries/config/messages.inc.php:335
|
||||
msgid "Use only icons, only text or both"
|
||||
msgstr ""
|
||||
msgstr "භාවිතා කල යුත්තේ අයිකන පමණක්, පෙළ පමණක්, හෝ මේ දෙකම"
|
||||
|
||||
#: libraries/config/messages.inc.php:326
|
||||
msgid "Iconic navigation bar"
|
||||
msgstr ""
|
||||
msgstr "අයිකන සහිත යාත්රණ පටිය"
|
||||
|
||||
#: libraries/config/messages.inc.php:327
|
||||
msgid "use GZip output buffering for increased speed in HTTP transfers"
|
||||
msgstr ""
|
||||
"HTTP හුවමාරුවල වේගය වැඩි කිරීම සඳහා GZip ප්රතිදාන ගොඩගැසීම භාවිතා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:328
|
||||
msgid "GZip output buffering"
|
||||
msgstr ""
|
||||
msgstr "GZip ප්රතිදාන ගොඩගැසීම"
|
||||
|
||||
#: libraries/config/messages.inc.php:329
|
||||
msgid ""
|
||||
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
|
||||
"DATETIME and TIMESTAMP, ascending order otherwise"
|
||||
msgstr ""
|
||||
"[kbd]SMART[/kbd] - එනම් TIME, DATE, DATETIME සහ TIMESTAMP තීර සඳහා අවරෝහණ "
|
||||
"පිළිවෙලත්, අනෙකුත් තීර සඳහා ආරෝහණ පිළිවෙලත්"
|
||||
|
||||
#: libraries/config/messages.inc.php:330
|
||||
msgid "Default sorting order"
|
||||
msgstr ""
|
||||
msgstr "පෙරනිමි අනුපිළිවෙල"
|
||||
|
||||
#: libraries/config/messages.inc.php:331
|
||||
msgid "Use persistent connections to MySQL databases"
|
||||
msgstr ""
|
||||
msgstr "MySQL දත්තගබඩා වෙත කල්පවතිනා සබඳතා භාවිතා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:332
|
||||
msgid "Persistent connections"
|
||||
msgstr ""
|
||||
msgstr "කල්පවතිනා සබඳතා"
|
||||
|
||||
#: libraries/config/messages.inc.php:333
|
||||
msgid ""
|
||||
@ -4325,22 +4348,24 @@ msgid ""
|
||||
"Structure page if any of the required tables for the phpMyAdmin "
|
||||
"configuration storage could not be found"
|
||||
msgstr ""
|
||||
"phpMyAdmin වින්යාස ගබඩාවට අවශ්ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී "
|
||||
"දත්තගබඩා සැකිල්ල පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්රීය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:334
|
||||
msgid "Missing phpMyAdmin configuration storage tables"
|
||||
msgstr ""
|
||||
msgstr "phpMyAdmin වින්යාස ගබඩාවේ අඩු වගු"
|
||||
|
||||
#: libraries/config/messages.inc.php:336
|
||||
msgid "Iconic table operations"
|
||||
msgstr ""
|
||||
msgstr "අයිකන සහිත වගු මෙහෙයුම්"
|
||||
|
||||
#: libraries/config/messages.inc.php:337
|
||||
msgid "Disallow BLOB and BINARY columns from editing"
|
||||
msgstr ""
|
||||
msgstr "BLOB සහ BINARY තීරු සංස්කරණය වලකන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:338
|
||||
msgid "Protect binary columns"
|
||||
msgstr ""
|
||||
msgstr "ද්වීමය තීරු ආරක්ෂා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:339
|
||||
msgid ""
|
||||
@ -4351,27 +4376,27 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:340
|
||||
msgid "Permanent query history"
|
||||
msgstr ""
|
||||
msgstr "ස්ථායී විමසුම් ඉතිහාසය"
|
||||
|
||||
#: libraries/config/messages.inc.php:342
|
||||
msgid "How many queries are kept in history"
|
||||
msgstr ""
|
||||
msgstr "කොපමණ විමසුම් ප්රමාණයක් ඉතිහාසයේ රඳවා ගත යුතුද යන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:343
|
||||
msgid "Query history length"
|
||||
msgstr ""
|
||||
msgstr "විමසුම් ඉතිහාසයේ ප්රමාණය"
|
||||
|
||||
#: libraries/config/messages.inc.php:344
|
||||
msgid "Tab displayed when opening a new query window"
|
||||
msgstr ""
|
||||
msgstr "නව විමසුම් කවුළුවක් අරින විට පෙන්වන ටැබය"
|
||||
|
||||
#: libraries/config/messages.inc.php:345
|
||||
msgid "Default query window tab"
|
||||
msgstr ""
|
||||
msgstr "පෙරනිමි විමසුම් කවුළු ටැබය"
|
||||
|
||||
#: libraries/config/messages.inc.php:346
|
||||
msgid "Query window height (in pixels)"
|
||||
msgstr ""
|
||||
msgstr "විමසුම් කවුළුවේ උස(පික්සල් වලින්)"
|
||||
|
||||
#: libraries/config/messages.inc.php:347
|
||||
msgid "Query window height"
|
||||
@ -4387,15 +4412,15 @@ msgstr "විමසුම් කවුළුවේ පළල"
|
||||
|
||||
#: libraries/config/messages.inc.php:350
|
||||
msgid "Select which functions will be used for character set conversion"
|
||||
msgstr ""
|
||||
msgstr "අක්ෂර කට්ටල පරිවර්තනය සඳහා කුමන ශ්රිතය භාවිතා විය යුතුදැයි තෝරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:351
|
||||
msgid "Recoding engine"
|
||||
msgstr ""
|
||||
msgstr "පටිගත කිරීමේ යන්ත්රය"
|
||||
|
||||
#: libraries/config/messages.inc.php:352
|
||||
msgid "When browsing tables, the sorting of each table is remembered"
|
||||
msgstr ""
|
||||
msgstr "වගු පිරික්සීමේදී එක් එක් වගුවේ අනුපිලිවෙල සැකසූ ආකාරය මතක තබා ගැනේ"
|
||||
|
||||
#: libraries/config/messages.inc.php:353
|
||||
msgid "Remember table's sorting"
|
||||
@ -4404,6 +4429,8 @@ msgstr "වගුව සැකසූ අනුපිළිවෙල මතක
|
||||
#: libraries/config/messages.inc.php:354
|
||||
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
|
||||
msgstr ""
|
||||
"පේළි x සංඛ්යාවකට වරක් ශීර්ෂ පුනරාවර්තනය කරන්න. අක්රීය කිරීමට [kbd]0[/kbd] "
|
||||
"යොදන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:355
|
||||
msgid "Repeat headers"
|
||||
@ -4411,7 +4438,7 @@ msgstr "ශීර්ෂක පුනරාවර්තනය"
|
||||
|
||||
#: libraries/config/messages.inc.php:356
|
||||
msgid "Show help button instead of Documentation text"
|
||||
msgstr ""
|
||||
msgstr "ලියකියවිලි වෙනුවට උදවු බොත්තම පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:357
|
||||
msgid "Show help button"
|
||||
@ -4419,11 +4446,11 @@ msgstr "උදවු බොත්තම පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:359
|
||||
msgid "Save all edited cells at once"
|
||||
msgstr ""
|
||||
msgstr "සංස්කරණය කල කොටු සියල්ල එකවර සුරකින්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:360
|
||||
msgid "Directory where exports can be saved on server"
|
||||
msgstr ""
|
||||
msgstr "සේවාදායකය මත අපනයන සුරැකිය හැකි ඩිරෙක්ටරිය"
|
||||
|
||||
#: libraries/config/messages.inc.php:361
|
||||
msgid "Save directory"
|
||||
@ -4431,27 +4458,27 @@ msgstr "සුරැකුම් ඩිරෙක්ටරිය"
|
||||
|
||||
#: libraries/config/messages.inc.php:362
|
||||
msgid "Leave blank if not used"
|
||||
msgstr ""
|
||||
msgstr "භාවිතා නොකෙරේ නම් හිස්ව තබන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:363
|
||||
msgid "Host authorization order"
|
||||
msgstr ""
|
||||
msgstr "දායකයන් සඳහා අවසර ලබා දීමේ අනුපිළිවෙල"
|
||||
|
||||
#: libraries/config/messages.inc.php:364
|
||||
msgid "Leave blank for defaults"
|
||||
msgstr ""
|
||||
msgstr "පෙරනිමි අගයන් සඳහා හිස්ව තබන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:365
|
||||
msgid "Host authorization rules"
|
||||
msgstr ""
|
||||
msgstr "දායක සඳහා අවසර දීමේ රීති"
|
||||
|
||||
#: libraries/config/messages.inc.php:366
|
||||
msgid "Allow logins without a password"
|
||||
msgstr ""
|
||||
msgstr "මුරපදයක් රහිතව ඇතුල් වීමට ඉඩ ලබා දෙන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:367
|
||||
msgid "Allow root login"
|
||||
msgstr ""
|
||||
msgstr "root ලෙස ඇතුල් වීමට ඉඩ දෙන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:368
|
||||
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
|
||||
@ -4470,47 +4497,52 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:371
|
||||
msgid "SweKey config file"
|
||||
msgstr ""
|
||||
msgstr "SweKey වින්යාස ගොනුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:372
|
||||
msgid "Authentication method to use"
|
||||
msgstr ""
|
||||
msgstr "භාවිතා කල යුතු සත්යාපන ක්රමය"
|
||||
|
||||
#: libraries/config/messages.inc.php:373 setup/frames/index.inc.php:128
|
||||
msgid "Authentication type"
|
||||
msgstr ""
|
||||
msgstr "සත්යාපන වර්ගය"
|
||||
|
||||
#: libraries/config/messages.inc.php:374
|
||||
msgid ""
|
||||
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
|
||||
"support, suggested: [kbd]pma_bookmark[/kbd]"
|
||||
msgstr ""
|
||||
"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්ය "
|
||||
"නම් හිස්ව තබන්න. යෝජිත: [kbd]pma_bookmark[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:375
|
||||
msgid "Bookmark table"
|
||||
msgstr ""
|
||||
msgstr "පොත්සලකුණු ගොනුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:376
|
||||
msgid ""
|
||||
"Leave blank for no column comments/mime types, suggested: [kbd]"
|
||||
"pma_column_info[/kbd]"
|
||||
msgstr ""
|
||||
"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න. යෝජිත: "
|
||||
"[kbd]pma_column_info[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:377
|
||||
msgid "Column information table"
|
||||
msgstr ""
|
||||
msgstr "තීර විස්තර ගොනුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:378
|
||||
msgid "Compress connection to MySQL server"
|
||||
msgstr ""
|
||||
msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුලන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:379
|
||||
msgid "Compress connection"
|
||||
msgstr ""
|
||||
msgstr "සම්බන්දතාව හකුලන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr ""
|
||||
"සේවාදායකයට කෙසේ සම්බන්ද විය යුතුද යන්න, අනියත නම් [kbd]tcp[/kbd] ලෙස යොදන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
@ -4518,23 +4550,27 @@ msgstr "සම්බන්දතා වර්ගය"
|
||||
|
||||
#: libraries/config/messages.inc.php:382
|
||||
msgid "Control user password"
|
||||
msgstr ""
|
||||
msgstr "පරිපාලක භාවිතා කරන්නාගේ මුරපදය"
|
||||
|
||||
#: libraries/config/messages.inc.php:383
|
||||
msgid ""
|
||||
"A special MySQL user configured with limited permissions, more information "
|
||||
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
|
||||
msgstr ""
|
||||
"සීමිත අවසර සහිතව වින්යාස කරන ලද විශේෂ MySQL භාවිතා කරන්නෙක්, වැඩි විස්තර "
|
||||
"සඳහා [a@http://wiki.phpmyadmin.net/pma/controluser]විකිය[/a] බලන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:384
|
||||
msgid "Control user"
|
||||
msgstr ""
|
||||
msgstr "පරිපාලක භාවිතා කරන්නා"
|
||||
|
||||
#: libraries/config/messages.inc.php:385
|
||||
msgid ""
|
||||
"An alternate host to hold the configuration storage; leave blank to use the "
|
||||
"already defined host"
|
||||
msgstr ""
|
||||
"වින්යාස ගබඩාව තබා ගැනීම සඳහා විකල්ප දායකයෙක්; දැනට අර්ථ දක්වා ඇති දායකයා "
|
||||
"භාවිතා කිරීමට හිස්ව තබන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:386
|
||||
msgid "Control host"
|
||||
@ -4542,7 +4578,7 @@ msgstr "පාලක දායකයා"
|
||||
|
||||
#: libraries/config/messages.inc.php:387
|
||||
msgid "Count tables when showing database list"
|
||||
msgstr ""
|
||||
msgstr "දත්තගබඩා ලැයිස්තුව පෙන්වීමේදී වගු ගණන් කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:388
|
||||
msgid "Count tables"
|
||||
@ -4553,6 +4589,8 @@ msgid ""
|
||||
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
|
||||
"kbd]"
|
||||
msgstr ""
|
||||
"සැලසුම්කරණය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
|
||||
"[kbd]pma_designer_coords[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:390
|
||||
msgid "Designer table"
|
||||
@ -4566,11 +4604,12 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:392
|
||||
msgid "Disable use of INFORMATION_SCHEMA"
|
||||
msgstr ""
|
||||
msgstr "INFORMATION_SCHEMA භාවිතය අක්රීය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:393
|
||||
msgid "What PHP extension to use; you should use mysqli if supported"
|
||||
msgstr ""
|
||||
"කුමන PHP දිගුව භාවිතා කල යුතුද යන්න. mysqli සහය ඇත්නම් එය භාවිතා කල යුතුය"
|
||||
|
||||
#: libraries/config/messages.inc.php:394
|
||||
msgid "PHP extension to use"
|
||||
@ -4589,14 +4628,16 @@ msgid ""
|
||||
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
|
||||
"kbd]"
|
||||
msgstr ""
|
||||
"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
|
||||
"[kbd]pma_history[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:398
|
||||
msgid "SQL query history table"
|
||||
msgstr ""
|
||||
msgstr "SQL විමසුම් ඉතිහාස වගුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:399
|
||||
msgid "Hostname where MySQL server is running"
|
||||
msgstr ""
|
||||
msgstr "MySQL සේවාදායකය ක්රියාත්මක දායකයේ දායක නාමය"
|
||||
|
||||
#: libraries/config/messages.inc.php:400
|
||||
msgid "Server hostname"
|
||||
@ -4604,7 +4645,7 @@ msgstr "සේවාදායකයේ දායක නාමය"
|
||||
|
||||
#: libraries/config/messages.inc.php:401
|
||||
msgid "Logout URL"
|
||||
msgstr ""
|
||||
msgstr "පිටවිය යුතු URLය"
|
||||
|
||||
#: libraries/config/messages.inc.php:402
|
||||
msgid ""
|
||||
@ -4618,11 +4659,11 @@ msgstr "ගබඩා කල යුතු උපරිම වගු අභිර
|
||||
|
||||
#: libraries/config/messages.inc.php:404
|
||||
msgid "Try to connect without password"
|
||||
msgstr ""
|
||||
msgstr "මුරපදය නොමැතිව සම්බන්ධ වීමට උත්සාහ කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:405
|
||||
msgid "Connect without password"
|
||||
msgstr ""
|
||||
msgstr "මුරපදය නොමැතිව සම්බන්ධ වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:406
|
||||
msgid ""
|
||||
@ -4639,20 +4680,22 @@ msgstr "සඳහන් දත්තගබඩා පමණක් පෙන්ව
|
||||
|
||||
#: libraries/config/messages.inc.php:408 libraries/config/messages.inc.php:449
|
||||
msgid "Leave empty if not using config auth"
|
||||
msgstr ""
|
||||
msgstr "config සත්යාපනය භාවිතා නොකරයි නම් හිස්ව තබන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:409
|
||||
msgid "Password for config auth"
|
||||
msgstr ""
|
||||
msgstr "config සත්යාපනය සඳහා මුරපදය"
|
||||
|
||||
#: libraries/config/messages.inc.php:410
|
||||
msgid ""
|
||||
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
|
||||
msgstr ""
|
||||
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
|
||||
"[kbd]pma_pdf_pages[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:411
|
||||
msgid "PDF schema: pages table"
|
||||
msgstr ""
|
||||
msgstr "PDF ක්රමනුරූපයේ පිටු පිලිබඳ විස්තර අඩංගු වගුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:412
|
||||
msgid ""
|
||||
@ -4660,6 +4703,9 @@ msgid ""
|
||||
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
|
||||
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
|
||||
msgstr ""
|
||||
"වගු සබඳතා, පොත්සලකුණු, PDF අපනයන ආදී විශේෂාංග සඳහා භාවිතා කරන දත්තගබඩාව, "
|
||||
"පූර්ණ විස්තරයක් සඳහා [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] "
|
||||
"බලන්න. විශේෂාංග අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]phpmyadmin[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:413
|
||||
msgid "Database name"
|
||||
@ -4667,7 +4713,7 @@ msgstr "දත්තගබඩාවේ නම"
|
||||
|
||||
#: libraries/config/messages.inc.php:414
|
||||
msgid "Port on which MySQL server is listening, leave empty for default"
|
||||
msgstr ""
|
||||
msgstr "MySQL සේවාදායකය සවන් දෙන පෝර්ටය, පෙරනිමි අගය සඳහා හිස්ව තබන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:415
|
||||
msgid "Server port"
|
||||
@ -4678,6 +4724,8 @@ msgid ""
|
||||
"Leave blank for no \"persistent\" recently used tables across sessions, "
|
||||
"suggested: [kbd]pma_recent[/kbd]"
|
||||
msgstr ""
|
||||
"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය "
|
||||
"අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_recent[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:417
|
||||
msgid "Recently used table"
|
||||
@ -4688,6 +4736,8 @@ msgid ""
|
||||
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
|
||||
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
|
||||
msgstr ""
|
||||
"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන "
|
||||
"සබැඳි[/a] විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_relation[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:419
|
||||
msgid "Relation table"
|
||||
@ -4695,29 +4745,31 @@ msgstr "සබැඳුම් දත්ත ඇතුලත් වගුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:420
|
||||
msgid "SQL command to fetch available databases"
|
||||
msgstr ""
|
||||
msgstr "දත්තගබඩා ලබාගැනීම සඳහා SQL විධානය"
|
||||
|
||||
#: libraries/config/messages.inc.php:421
|
||||
msgid "SHOW DATABASES command"
|
||||
msgstr ""
|
||||
msgstr "SHOW DATABASES විධානය"
|
||||
|
||||
#: libraries/config/messages.inc.php:422
|
||||
msgid ""
|
||||
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
|
||||
"[/a] for an example"
|
||||
msgstr ""
|
||||
"උදාහරණයක් ලෙස [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]සත්යාපන "
|
||||
"ක්රම[/a] බලන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:423
|
||||
msgid "Signon session name"
|
||||
msgstr ""
|
||||
msgstr "Signon සැසි නාමය"
|
||||
|
||||
#: libraries/config/messages.inc.php:424
|
||||
msgid "Signon URL"
|
||||
msgstr ""
|
||||
msgstr "Signon URLය"
|
||||
|
||||
#: libraries/config/messages.inc.php:425
|
||||
msgid "Socket on which MySQL server is listening, leave empty for default"
|
||||
msgstr ""
|
||||
msgstr "MySQL සේවාදායකය සවන් දෙන සොකටය, පෙරනිමි අගය සඳහා හිස්ව තබන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:426
|
||||
msgid "Server socket"
|
||||
@ -4725,26 +4777,30 @@ msgstr "සර්වරයේ සොකට්"
|
||||
|
||||
#: libraries/config/messages.inc.php:427
|
||||
msgid "Enable SSL for connection to MySQL server"
|
||||
msgstr ""
|
||||
msgstr "MySQL සේවාදායකය වෙත සබඳතාවය සඳහා SSL සක්රීය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:428
|
||||
msgid "Use SSL"
|
||||
msgstr ""
|
||||
msgstr "SSL භාවිතා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:429
|
||||
msgid ""
|
||||
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
|
||||
msgstr ""
|
||||
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
|
||||
"[kbd]pma_table_coords[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:430
|
||||
msgid "PDF schema: table coordinates"
|
||||
msgstr ""
|
||||
msgstr "PDF ක්රමානුරූපය: වගු ඛණ්ඩාංක"
|
||||
|
||||
#: libraries/config/messages.inc.php:431
|
||||
msgid ""
|
||||
"Table to describe the display columns, leave blank for no support; "
|
||||
"suggested: [kbd]pma_table_info[/kbd]"
|
||||
msgstr ""
|
||||
"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: "
|
||||
"[kbd]pma_table_info[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:432
|
||||
msgid "Display columns table"
|
||||
@ -4854,11 +4910,11 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:455
|
||||
msgid "Whether a user should be displayed a "show all (rows)" button"
|
||||
msgstr ""
|
||||
msgstr ""සියලුම පේළි පෙන්වන්න" සබැඳිය භාවිතා කරන්නාට පෙන්වන්නේද යන වග"
|
||||
|
||||
#: libraries/config/messages.inc.php:456
|
||||
msgid "Allow to display all the rows"
|
||||
msgstr ""
|
||||
msgstr "සියලුම පේළි දර්ශනය කිරීමට ඉඩ ලබාදෙයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:457
|
||||
msgid ""
|
||||
@ -4880,6 +4936,7 @@ msgid ""
|
||||
"Defines whether or not type display direction option is shown when browsing "
|
||||
"a table"
|
||||
msgstr ""
|
||||
"වගුවක් පිරික්සීමේදී දර්ශන දිශාව තෝරාගැනීමට ඉඩ ලබා දෙන්නේද යන්න සඳහන් කරයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:461
|
||||
msgid "Show display direction"
|
||||
@ -4890,6 +4947,8 @@ msgid ""
|
||||
"Defines whether or not type fields should be initially displayed in edit/"
|
||||
"insert mode"
|
||||
msgstr ""
|
||||
"සංස්කරණ/ඇතුළුකිරීම් ප්රකාරයේදී තීර වර්ගය දක්වන ක්ෂේත්රය ආරම්භයේදී පෙන්විය "
|
||||
"යුතුද නැතිද යන වග"
|
||||
|
||||
#: libraries/config/messages.inc.php:463
|
||||
msgid "Show field types"
|
||||
@ -4897,15 +4956,15 @@ msgstr "ක්ෂේත්රයේ වර්ගය පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:464
|
||||
msgid "Display the function fields in edit/insert mode"
|
||||
msgstr ""
|
||||
msgstr "සංස්කරණ/ඇතුළුකිරීම් ප්රකාරයේදී ශ්රිතය ක්ෂේත්රයන් පෙන්වයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:465
|
||||
msgid "Show function fields"
|
||||
msgstr ""
|
||||
msgstr "ශ්රිතය තීරුව පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:466
|
||||
msgid "Whether to show hint or not"
|
||||
msgstr ""
|
||||
msgstr "ඉඟිය පෙන්විය යුතුද නැත්ද යන වග"
|
||||
|
||||
#: libraries/config/messages.inc.php:467
|
||||
msgid "Show hint"
|
||||
@ -4923,11 +4982,11 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:470
|
||||
msgid "Show detailed MySQL server information"
|
||||
msgstr ""
|
||||
msgstr "MySQL සේවාදායකය පිලිබඳ විස්තරාත්මක තොරතුරු පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:471
|
||||
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
|
||||
msgstr ""
|
||||
msgstr "phpMyAdmin විසින් සාදන ලද විමසුම් පෙන්විය යුතුදැයි සඳහන් කරයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:472
|
||||
msgid "Show SQL queries"
|
||||
@ -4937,6 +4996,8 @@ msgstr "SQL විමසුම් පෙන්වන්න"
|
||||
msgid ""
|
||||
"Defines whether the query box should stay on-screen after its submission"
|
||||
msgstr ""
|
||||
"විමසුම ක්රියාත්මක කිරීමෙන් පසුව විමසුම් කවුළුව තිරය මත රඳවා ගත යුතුදැයි "
|
||||
"සඳහන් කරයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:474 libraries/sql_query_form.lib.php:358
|
||||
msgid "Retain query box"
|
||||
@ -4945,6 +5006,8 @@ msgstr "විමසුම් කවුළුව රඳවාගන්න"
|
||||
#: libraries/config/messages.inc.php:475
|
||||
msgid "Allow to display database and table statistics (eg. space usage)"
|
||||
msgstr ""
|
||||
"දත්තගබඩා හා වගු වලට අදාල සංඛ්යාලේඛන (උදා. භාවිතා වන ඉඩ ප්රමාණය) පෙන්වීමට "
|
||||
"ඉඩ සලසයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:476
|
||||
msgid "Show statistics"
|
||||
@ -4955,10 +5018,12 @@ msgid ""
|
||||
"If tooltips are enabled and a database comment is set, this will flip the "
|
||||
"comment and the real name"
|
||||
msgstr ""
|
||||
"මෙවලම් ඉඟිය සක්රීය කර සහ දත්තගබඩා විස්තරය සිටුවා ඇත්නම්, මෙය දත්තගබඩා "
|
||||
"විස්තරය සහ නම හුවමාරුකර පෙන්වයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:478
|
||||
msgid "Display database comment instead of its name"
|
||||
msgstr ""
|
||||
msgstr "දත්තගබඩාවේ නම වෙනුවට එහි විස්තරය පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:479
|
||||
msgid ""
|
||||
@ -4970,16 +5035,17 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:480
|
||||
msgid "Display table comment instead of its name"
|
||||
msgstr ""
|
||||
msgstr "වගුවේ නම වෙනුවට විස්තරය පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:481
|
||||
msgid "Display table comments in tooltips"
|
||||
msgstr ""
|
||||
msgstr "මෙවලම් ඉඟිය ලෙස වගු විස්තරය පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:482
|
||||
msgid ""
|
||||
"Mark used tables and make it possible to show databases with locked tables"
|
||||
msgstr ""
|
||||
"භාවිතා කරන ලද වගු සලකුණු කර අගුලු ළෑ වගු සහිත දත්තගබඩා පෙන්වීමට ඉඩ සලසන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:483
|
||||
msgid "Skip locked tables"
|
||||
@ -4987,7 +5053,7 @@ msgstr "අගුලු ළෑ දත්තගබඩා මඟහරින්න
|
||||
|
||||
#: libraries/config/messages.inc.php:488
|
||||
msgid "Requires SQL Validator to be enabled"
|
||||
msgstr ""
|
||||
msgstr "SQL වලංගු කරණය සක්රීය කිරීම අවශ්ය වේ"
|
||||
|
||||
#: libraries/config/messages.inc.php:490
|
||||
#: libraries/display_change_password.lib.php:40
|
||||
@ -5025,24 +5091,28 @@ msgid ""
|
||||
"Suggest a database name on the "Create Database" form (if "
|
||||
"possible) or keep the text field empty"
|
||||
msgstr ""
|
||||
"හැකිනම් "නව දත්තගබඩාවක් සාදන්න" පෝරමයේ දත්තගබඩාව සඳහා නමක් යෝජනා "
|
||||
"කරන්න. එසේත් නැතිනම් පෙළ ක්ෂේත්රය හිස්ව තබන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:496
|
||||
msgid "Suggest new database name"
|
||||
msgstr ""
|
||||
msgstr "නව දත්තගබඩා සඳහා නම් යෝජනා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:497
|
||||
msgid "A warning is displayed on the main page if Suhosin is detected"
|
||||
msgstr ""
|
||||
msgstr "Suhosin ඇති බව හඳුනාගතහොත් ප්රධාන පිටුවේ අනතුරු ඇඟවීමක් පෙන්වයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:498
|
||||
msgid "Suhosin warning"
|
||||
msgstr ""
|
||||
msgstr "Suhosin අනතුරු ඇඟවීම"
|
||||
|
||||
#: libraries/config/messages.inc.php:499
|
||||
msgid ""
|
||||
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
|
||||
"query textareas (*2) and for query window (*1.25)"
|
||||
msgstr ""
|
||||
"සංස්කරණ ප්රකාරයේදී පෙළ පෙදෙසේ පළල (තීරු ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL "
|
||||
"විමසුම් පෙළ පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) පළල ලබා ගැනේ"
|
||||
|
||||
#: libraries/config/messages.inc.php:500
|
||||
msgid "Textarea columns"
|
||||
@ -5053,6 +5123,8 @@ msgid ""
|
||||
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
|
||||
"query textareas (*2) and for query window (*1.25)"
|
||||
msgstr ""
|
||||
"සංස්කරණ ප්රකාරයේදී පෙළ පෙදෙසේ උස (පේලි ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL "
|
||||
"විමසුම් පෙළ පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) උස ලබා ගැනේ"
|
||||
|
||||
#: libraries/config/messages.inc.php:502
|
||||
msgid "Textarea rows"
|
||||
@ -5060,11 +5132,11 @@ msgstr "පෙළ පෙදෙසේ උස"
|
||||
|
||||
#: libraries/config/messages.inc.php:503
|
||||
msgid "Title of browser window when a database is selected"
|
||||
msgstr ""
|
||||
msgstr "දත්තගබඩාවක් තෝරා ඇති විට බ්රව්සර කවුළුවේ මාතෘකාව"
|
||||
|
||||
#: libraries/config/messages.inc.php:505
|
||||
msgid "Title of browser window when nothing is selected"
|
||||
msgstr ""
|
||||
msgstr "කිසිවක් තෝරා නැති විට බ්රව්සර කවුළුවේ මාතෘකාව"
|
||||
|
||||
#: libraries/config/messages.inc.php:506
|
||||
msgid "Default title"
|
||||
@ -5072,11 +5144,11 @@ msgstr "පෙරනිමි නාමය"
|
||||
|
||||
#: libraries/config/messages.inc.php:507
|
||||
msgid "Title of browser window when a server is selected"
|
||||
msgstr ""
|
||||
msgstr "සේවාදායකයක් තෝරා ඇති විට බ්රව්සර කවුළුවේ මාතෘකාව"
|
||||
|
||||
#: libraries/config/messages.inc.php:509
|
||||
msgid "Title of browser window when a table is selected"
|
||||
msgstr ""
|
||||
msgstr "වගුවක් තෝරා ඇති විට බ්රව්සර කවුළුවේ මාතෘකාව"
|
||||
|
||||
#: libraries/config/messages.inc.php:511
|
||||
msgid ""
|
||||
@ -5172,7 +5244,7 @@ msgstr ""
|
||||
#: libraries/config/setup.forms.php:251
|
||||
#: libraries/config/user_preferences.forms.php:151 libraries/import/ldi.php:35
|
||||
msgid "CSV using LOAD DATA"
|
||||
msgstr ""
|
||||
msgstr "LOAD DATA භාවිතයෙන් CSV"
|
||||
|
||||
#: libraries/config/setup.forms.php:260 libraries/config/setup.forms.php:353
|
||||
#: libraries/config/user_preferences.forms.php:159
|
||||
@ -5184,12 +5256,12 @@ msgstr "Open Document පැතුරුම්පත"
|
||||
#: libraries/config/setup.forms.php:267
|
||||
#: libraries/config/user_preferences.forms.php:166
|
||||
msgid "Quick"
|
||||
msgstr ""
|
||||
msgstr "කඩිනම්"
|
||||
|
||||
#: libraries/config/setup.forms.php:271
|
||||
#: libraries/config/user_preferences.forms.php:170
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
msgstr "අභිමත"
|
||||
|
||||
#: libraries/config/setup.forms.php:292
|
||||
#: libraries/config/user_preferences.forms.php:190
|
||||
@ -5299,7 +5371,7 @@ msgstr "විමසුම"
|
||||
|
||||
#: libraries/db_links.inc.php:75 libraries/relation.lib.php:132
|
||||
msgid "Designer"
|
||||
msgstr ""
|
||||
msgstr "සැලසුම්කරණය"
|
||||
|
||||
#: libraries/db_links.inc.php:92 server_privileges.php:178
|
||||
#: server_privileges.php:1649 server_privileges.php:2038
|
||||
@ -6945,7 +7017,7 @@ msgstr "ස්වදේශී"
|
||||
|
||||
#: libraries/replication_gui.lib.php:318 server_privileges.php:926
|
||||
msgid "This Host"
|
||||
msgstr "this host"
|
||||
msgstr "මෙම දායකයා"
|
||||
|
||||
#: libraries/replication_gui.lib.php:324 server_privileges.php:932
|
||||
msgid "Use Host Table"
|
||||
@ -7509,7 +7581,7 @@ msgstr ""
|
||||
#. l10n: Text direction, use either ltr or rtl
|
||||
#: libraries/select_lang.lib.php:493
|
||||
msgid "ltr"
|
||||
msgstr "වමේ සිට දකුණට"
|
||||
msgstr "ltr"
|
||||
|
||||
#: libraries/select_lang.lib.php:511 libraries/select_lang.lib.php:520
|
||||
#: libraries/select_lang.lib.php:529
|
||||
@ -7989,7 +8061,7 @@ msgstr "සේවාදායක සම්බන්ධතා collation"
|
||||
|
||||
#: main.php:123
|
||||
msgid "Appearance Settings"
|
||||
msgstr ""
|
||||
msgstr "මුහුණුවර සම්බන්ධ සිටුවම්"
|
||||
|
||||
# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA
|
||||
#: main.php:152 prefs_manage.php:272
|
||||
@ -8024,7 +8096,7 @@ msgstr "සේවාදායකයේ අක්ෂර කට්ටලය"
|
||||
|
||||
#: main.php:195
|
||||
msgid "Web server"
|
||||
msgstr ""
|
||||
msgstr "වෙබ් සේවාදායකය"
|
||||
|
||||
#: main.php:208
|
||||
msgid "Database client version"
|
||||
@ -8378,7 +8450,7 @@ msgstr "බ්රවුසරයේ ගබඩාවේ සිටුවම්
|
||||
|
||||
#: prefs_manage.php:306
|
||||
msgid "Existing settings will be overwritten!"
|
||||
msgstr ""
|
||||
msgstr "වත්මන් සිටුවම් උඩින් නව සිටුවම් ලියැවේ!"
|
||||
|
||||
#: prefs_manage.php:321
|
||||
msgid "You can reset all your settings and restore them to default values."
|
||||
|
||||
222
po/sl.po
222
po/sl.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-06 13:06+0200\n"
|
||||
"PO-Revision-Date: 2012-04-06 21:04+0200\n"
|
||||
"PO-Revision-Date: 2012-04-07 21:06+0200\n"
|
||||
"Last-Translator: Domen <dbc334@gmail.com>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
"Language: sl\n"
|
||||
@ -647,7 +647,7 @@ msgstr "Označi vse"
|
||||
#: libraries/replication_gui.lib.php:35 server_databases.php:282
|
||||
#: server_privileges.php:754 server_privileges.php:1893 tbl_structure.php:564
|
||||
msgid "Uncheck All"
|
||||
msgstr "Odznači vse"
|
||||
msgstr "Počisti vse"
|
||||
|
||||
#: db_structure.php:579
|
||||
msgid "Check tables having overhead"
|
||||
@ -1045,7 +1045,7 @@ msgstr "Brisanje primarnega ključa/indeksa"
|
||||
|
||||
#: js/messages.php:37
|
||||
msgid "This operation could take a long time. Proceed anyway?"
|
||||
msgstr "Ta operacija lahko traja dolgo časa. Vseeno nadaljujem?"
|
||||
msgstr "Operacija lahko traja dolgo časa. Vseeno nadaljujem?"
|
||||
|
||||
#: js/messages.php:40
|
||||
msgid "Missing value in the form!"
|
||||
@ -2399,7 +2399,7 @@ msgstr "Edinstven"
|
||||
|
||||
#: libraries/Index.class.php:457 tbl_tracking.php:334
|
||||
msgid "Packed"
|
||||
msgstr "Stisnjeno"
|
||||
msgstr "Stisnjen"
|
||||
|
||||
#: libraries/Index.class.php:459 tbl_tracking.php:336
|
||||
msgid "Cardinality"
|
||||
@ -2488,7 +2488,7 @@ msgstr "Ni nobenih nedavnih tabel"
|
||||
msgid ""
|
||||
"There is no detailed status information available for this storage engine."
|
||||
msgstr ""
|
||||
"Za ta skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju."
|
||||
"Za skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju."
|
||||
|
||||
#: libraries/StorageEngine.class.php:341
|
||||
#, php-format
|
||||
@ -2816,7 +2816,7 @@ msgstr "%s bi morali nadgraditi na različico %s ali novejšo."
|
||||
#: libraries/common.lib.php:195
|
||||
#, php-format
|
||||
msgid "Max: %s%s"
|
||||
msgstr "Največja velikost: %s%s"
|
||||
msgstr "Največja velikost: %s %s"
|
||||
|
||||
#. l10n: Please check that translation actually exists.
|
||||
#: libraries/common.lib.php:450
|
||||
@ -3183,7 +3183,7 @@ msgstr "Wiki"
|
||||
#: libraries/config/FormDisplay.tpl.php:199
|
||||
msgid "This setting is disabled, it will not be applied to your configuration"
|
||||
msgstr ""
|
||||
"Ta nastavitev je onemogočena, zato ne bo uporabljena pri vaši konfiguraciji"
|
||||
"Nastavitev je onemogočena, zato ne bo uporabljena pri vaši konfiguraciji"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:274
|
||||
#, php-format
|
||||
@ -3506,13 +3506,13 @@ msgstr "Postavi imena stolpcev v prvo vrstico"
|
||||
#: libraries/config/messages.inc.php:250 libraries/import/csv.php:76
|
||||
#: libraries/import/ldi.php:42
|
||||
msgid "Columns enclosed by"
|
||||
msgstr "Stolpci obdani z"
|
||||
msgstr "Stolpci so obdani z"
|
||||
|
||||
#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:244
|
||||
#: libraries/config/messages.inc.php:251 libraries/import/csv.php:81
|
||||
#: libraries/import/ldi.php:43
|
||||
msgid "Columns escaped by"
|
||||
msgstr "Stolpci izognjeni z"
|
||||
msgstr "Stolpci so izognjeni z"
|
||||
|
||||
#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:85
|
||||
#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:101
|
||||
@ -3530,12 +3530,12 @@ msgstr "Odstrani znake CRLF znotraj stolpcev"
|
||||
#: libraries/config/messages.inc.php:255 libraries/import/csv.php:63
|
||||
#: libraries/import/ldi.php:41
|
||||
msgid "Columns terminated by"
|
||||
msgstr "Stolpci zaključeni z"
|
||||
msgstr "Stolpci so zaključeni z"
|
||||
|
||||
#: libraries/config/messages.inc.php:82 libraries/config/messages.inc.php:242
|
||||
#: libraries/import/csv.php:86 libraries/import/ldi.php:44
|
||||
msgid "Lines terminated by"
|
||||
msgstr "Vrstice zaključene z"
|
||||
msgstr "Vrstice so zaključene z"
|
||||
|
||||
#: libraries/config/messages.inc.php:84
|
||||
msgid "Excel edition"
|
||||
@ -4046,8 +4046,8 @@ msgid ""
|
||||
"Default format; be aware that this list depends on location (database, "
|
||||
"table) and only SQL is always available"
|
||||
msgstr ""
|
||||
"Privzeta oblika; pomnite, da je seznam odvisen od položaja (podatkovna "
|
||||
"zbirka, tabela) in vedno je na voljo samo SQL"
|
||||
"Privzeta oblika; pomnite, da je seznam odvisen od položaja (zbirka podatkov, "
|
||||
"tabela) in vedno je na voljo samo SQL"
|
||||
|
||||
#: libraries/config/messages.inc.php:249
|
||||
msgid "Format of imported file"
|
||||
@ -4072,7 +4072,7 @@ msgstr "Uvozi denarne enote ($5.00 v 5.00)"
|
||||
|
||||
#: libraries/config/messages.inc.php:259
|
||||
msgid "Import percentages as proper decimals (12.00% to .12)"
|
||||
msgstr "Uvozi odstotke kot ustrezne decimalne vrednosti (12.00% v ,12)"
|
||||
msgstr "Uvozi odstotke kot ustrezne decimalne vrednosti (12.00% v .12)"
|
||||
|
||||
#: libraries/config/messages.inc.php:260
|
||||
msgid "Number of queries to skip from start"
|
||||
@ -4298,12 +4298,12 @@ msgstr "Uporabniki ne morejo določiti višje vrednosti"
|
||||
#: libraries/config/messages.inc.php:310
|
||||
msgid "Maximum number of databases displayed in left frame and database list"
|
||||
msgstr ""
|
||||
"Največje število podatkovnih zbirk prikazanih v levem okvirju in na seznamu "
|
||||
"Največje število zbirk podatkov, prikazanih v levem okvirju in na seznamu "
|
||||
"zbirk podatkov"
|
||||
|
||||
#: libraries/config/messages.inc.php:311
|
||||
msgid "Maximum databases"
|
||||
msgstr "Največ podatkovnih zbirk"
|
||||
msgstr "Največ zbirk podatkov"
|
||||
|
||||
#: libraries/config/messages.inc.php:312
|
||||
msgid ""
|
||||
@ -4644,7 +4644,7 @@ msgstr "Krmilni gostitelj"
|
||||
|
||||
#: libraries/config/messages.inc.php:387
|
||||
msgid "Count tables when showing database list"
|
||||
msgstr "Preštej tabele med prikazovanjem seznama podatkovnih zbirk"
|
||||
msgstr "Preštej tabele med prikazovanjem seznama zbirk podatkov"
|
||||
|
||||
#: libraries/config/messages.inc.php:388
|
||||
msgid "Count tables"
|
||||
@ -6257,8 +6257,8 @@ msgid ""
|
||||
"The percentage of garbage in a data log file before it is compacted. This is "
|
||||
"a value between 1 and 99. The default is 50."
|
||||
msgstr ""
|
||||
"Odstotek smeti v dnevniški datoteki, preden je ta stisnjena. Vrednost je med "
|
||||
"1 in 99. Privzeto je 50."
|
||||
"Odstotek smeti v dnevniški datoteki, preden je stisnjena. Vrednost je med 1 "
|
||||
"in 99. Privzeto je 50."
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:62
|
||||
msgid "Log buffer size"
|
||||
@ -6442,7 +6442,7 @@ msgstr "PDF"
|
||||
|
||||
#: libraries/export/pdf.php:24
|
||||
msgid "(Generates a report containing the data of a single table)"
|
||||
msgstr "(Ustvari poročilo, ki vsebuje podatke tabele same)"
|
||||
msgstr "(Ustvari poročilo, ki vsebuje podatke ene tabele)"
|
||||
|
||||
#: libraries/export/pdf.php:25
|
||||
msgid "Report title:"
|
||||
@ -6483,7 +6483,7 @@ msgstr ""
|
||||
#: libraries/export/sql.php:180
|
||||
#, php-format
|
||||
msgid "Add %s statement"
|
||||
msgstr "Dodaj %s izjavo"
|
||||
msgstr "Dodaj izjavo %s"
|
||||
|
||||
#: libraries/export/sql.php:152
|
||||
msgid "Add statements:"
|
||||
@ -6562,8 +6562,8 @@ msgid ""
|
||||
"Dump binary columns in hexadecimal notation <i>(for example, \"abc\" becomes "
|
||||
"0x616263)</i>"
|
||||
msgstr ""
|
||||
"Odloži dvojiške stolpce v šestnajstiškem zapisu <i>(na primer, \"abc\" "
|
||||
"postane 0x616263)</i>"
|
||||
"Odloži dvojiške stolpce v šestnajstiškem zapisu <i>(na primer: \"abc\" postane "
|
||||
"0x616263)</i>"
|
||||
|
||||
#: libraries/export/sql.php:302
|
||||
msgid ""
|
||||
@ -6760,12 +6760,12 @@ msgstr "Imena stolpcev"
|
||||
|
||||
#: libraries/import/ldi.php:57
|
||||
msgid "This plugin does not support compressed imports!"
|
||||
msgstr "Ta vtičnik ne podpira stisnjenih uvozov!"
|
||||
msgstr "Vtičnik ne podpira stisnjenih uvozov!"
|
||||
|
||||
#: libraries/import/ods.php:35
|
||||
msgid "Import percentages as proper decimals <i>(ex. 12.00% to .12)</i>"
|
||||
msgstr ""
|
||||
"Uvozi odstotke kot ustrezne decimalne vrednosti <i>(npr. 12.00% v ,12)</i>"
|
||||
"Uvozi odstotke kot ustrezne decimalne vrednosti <i>(npr. 12.00% v .12)</i>"
|
||||
|
||||
#: libraries/import/ods.php:36
|
||||
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
|
||||
@ -7056,7 +7056,7 @@ msgstr "Osveži okvir navigacije"
|
||||
|
||||
#: libraries/plugin_interface.lib.php:284
|
||||
msgid "This format has no options"
|
||||
msgstr "Za to obliko ni možnosti"
|
||||
msgstr "Oblika nima nobenih možnosti"
|
||||
|
||||
#: libraries/relation.lib.php:76
|
||||
msgid "not OK"
|
||||
@ -7125,11 +7125,11 @@ msgstr "Hitri koraki za namestitev naprednih funkcij:"
|
||||
#: libraries/relation.lib.php:154
|
||||
msgid ""
|
||||
"Create the needed tables with the <code>examples/create_tables.sql</code>."
|
||||
msgstr "Ustvari potrebne tabele s <code>examples/create_tables.sql</code>."
|
||||
msgstr "Ustvarite potrebne tabele s <code>examples/create_tables.sql</code>."
|
||||
|
||||
#: libraries/relation.lib.php:155
|
||||
msgid "Create a pma user and give access to these tables."
|
||||
msgstr "Ustvari uporabnika pma in dovoli dostop do teh tabel."
|
||||
msgstr "Ustvarite uporabnika pma in mu dodelite dostop do teh tabel."
|
||||
|
||||
#: libraries/relation.lib.php:156
|
||||
msgid ""
|
||||
@ -7694,7 +7694,7 @@ msgstr "Shema zbirke podatkov %s - Stran %s"
|
||||
|
||||
#: libraries/schema/Export_Relation_Schema.class.php:200
|
||||
msgid "This page does not contain any tables!"
|
||||
msgstr "Ta stran ne vsebuje nobenih tabel!"
|
||||
msgstr "Stran ne vsebuje nobenih tabel!"
|
||||
|
||||
#: libraries/schema/Export_Relation_Schema.class.php:228
|
||||
msgid "SCHEMA ERROR: "
|
||||
@ -7891,7 +7891,7 @@ msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s"
|
||||
#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235
|
||||
#, php-format
|
||||
msgid "Run SQL query/queries on database %s"
|
||||
msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s"
|
||||
msgstr "Izvedi poizvedbo/poizvedbe SQL na zbirki podatkov %s"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:267 navigation.php:259
|
||||
#: setup/frames/index.inc.php:233
|
||||
@ -7939,8 +7939,8 @@ msgid ""
|
||||
"There seems to be an error in your SQL query. The MySQL server error output "
|
||||
"below, if there is any, may also help you in diagnosing the problem"
|
||||
msgstr ""
|
||||
"Izgleda, da je v poizvedbi SQL prišlo do napake. Če je strežnik MySQL "
|
||||
"izpisal napako, vam le-ta lahko pomaga pri odkrivanju težav"
|
||||
"Kaže, da je v poizvedbi SQL prišlo do napake. Če je strežnik MySQL izpisal "
|
||||
"napako, vam le-ta lahko pomaga pri odkrivanju težav"
|
||||
|
||||
#: libraries/sqlparser.lib.php:176
|
||||
msgid ""
|
||||
@ -8062,8 +8062,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Vrednosti za možnosti pretvorbe vnesite v naslednji obliki: 'a', 100, "
|
||||
"b,'c'...<br />Če želite med vrednosti vnesti poševnico nazaj (\"\\\") ali "
|
||||
"enojni narekovaj (\"'\"), morate pred ta znak postaviti (še eno) poševnico "
|
||||
"nazaj (npr. '\\\\xyz' ali 'a\\'b')."
|
||||
"enojni narekovaj (\"'\"), morate pred znak postaviti (še eno) poševnico nazaj "
|
||||
"(npr. '\\\\xyz' ali 'a\\'b')."
|
||||
|
||||
#: libraries/tbl_properties.inc.php:321
|
||||
msgid "ENUM or SET data too long?"
|
||||
@ -8399,7 +8399,7 @@ msgid ""
|
||||
"option is incompatible with phpMyAdmin and might cause some data to be "
|
||||
"corrupted!"
|
||||
msgstr ""
|
||||
"V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Ta možnost ni "
|
||||
"V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Možnost ni "
|
||||
"združljiva s phpMyAdminom in lahko pokvari nekatere podatke!"
|
||||
|
||||
#: main.php:284
|
||||
@ -8889,7 +8889,7 @@ msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin."
|
||||
#: server_privileges.php:94 server_privileges.php:270
|
||||
#: server_privileges.php:696
|
||||
msgid "Allows creating new databases and tables."
|
||||
msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel."
|
||||
msgstr "Omogoča ustvarjanje novih zbirk podatkov in tabel."
|
||||
|
||||
#: server_privileges.php:95 server_privileges.php:356
|
||||
#: server_privileges.php:702
|
||||
@ -8924,7 +8924,7 @@ msgstr "Omogoča brisanje podatkov."
|
||||
#: server_privileges.php:101 server_privileges.php:274
|
||||
#: server_privileges.php:699
|
||||
msgid "Allows dropping databases and tables."
|
||||
msgstr "Omogoča brisanje podatkovnih zbirk in tabel."
|
||||
msgstr "Omogoča brisanje zbirk podatkov in tabel."
|
||||
|
||||
#: server_privileges.php:102 server_privileges.php:699
|
||||
msgid "Allows dropping tables."
|
||||
@ -9028,7 +9028,7 @@ msgstr "Omogoča branje podatkov."
|
||||
#: server_privileges.php:120 server_privileges.php:306
|
||||
#: server_privileges.php:729
|
||||
msgid "Gives access to the complete list of databases."
|
||||
msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk."
|
||||
msgstr "Omogoča dostop do popolnega spiska zbirk podatkov."
|
||||
|
||||
#: server_privileges.php:121 server_privileges.php:347
|
||||
#: server_privileges.php:352 server_privileges.php:701
|
||||
@ -9229,7 +9229,7 @@ msgstr "Privilegiji tipični za stolpec"
|
||||
|
||||
#: server_privileges.php:2246
|
||||
msgid "Add privileges on the following database"
|
||||
msgstr "Dodaj privilegije na naslednji podatkovni zbirki"
|
||||
msgstr "Dodaj privilegije na naslednji zbirki podatkov"
|
||||
|
||||
#: server_privileges.php:2264
|
||||
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
|
||||
@ -9272,7 +9272,7 @@ msgstr ""
|
||||
|
||||
#: server_privileges.php:2355
|
||||
msgid "Database for user"
|
||||
msgstr "Podatkovna zbirka za uporabnika"
|
||||
msgstr "Zbirka podatkov za uporabnika"
|
||||
|
||||
#: server_privileges.php:2357
|
||||
msgid "Create database with same name and grant all privileges"
|
||||
@ -9336,8 +9336,7 @@ msgstr "Glavni strežnik je uspešno spremenjen v %s"
|
||||
|
||||
#: server_replication.php:210
|
||||
msgid "This server is configured as master in a replication process."
|
||||
msgstr ""
|
||||
"Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja."
|
||||
msgstr "Strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja."
|
||||
|
||||
#: server_replication.php:212 server_status.php:614
|
||||
msgid "Show master status"
|
||||
@ -9353,8 +9352,8 @@ msgid ""
|
||||
"This server is not configured as master in a replication process. Would you "
|
||||
"like to <a href=\"%s\">configure</a> it?"
|
||||
msgstr ""
|
||||
"Ta strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Ali "
|
||||
"ga želite <a href=\"%s\">konfigurirati</a>?"
|
||||
"Strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Ga "
|
||||
"želite <a href=\"%s\">konfigurirati</a>?"
|
||||
|
||||
#: server_replication.php:247
|
||||
msgid "Master configuration"
|
||||
@ -9368,7 +9367,7 @@ msgid ""
|
||||
"ignore all databases by default and allow only certain databases to be "
|
||||
"replicated. Please select the mode:"
|
||||
msgstr ""
|
||||
"Ta strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. "
|
||||
"Strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. "
|
||||
"Izbirate lahko med ali podvojevanjem vseh zbirk podatkov in prezrtjem "
|
||||
"nekaterih (uporabno, če želite podvojiti večino zbirk podatkov) ali "
|
||||
"prezrtjem vseh zbirk podatkov po privzetem in podvojitvijo samo določenih "
|
||||
@ -9400,8 +9399,8 @@ msgid ""
|
||||
"should see a message informing you, that this server <b>is</b> configured as "
|
||||
"master"
|
||||
msgstr ""
|
||||
"Ko enkrat ponovno zažetene strežnik MySQL, prosimo, kliknite na gumb Pojdi. "
|
||||
"Nato bi morali videti sporočilo, ki vam sporoča, da ta strežnik <b>je</b> "
|
||||
"Ko enkrat ponovno zaženete strežnik MySQL, prosimo, kliknite na gumb Pojdi. "
|
||||
"Nato bi morali videti sporočilo, ki vam sporoča, da <b>je</b> strežnik "
|
||||
"konfiguriran kot glavni strežnik"
|
||||
|
||||
#: server_replication.php:323
|
||||
@ -9486,8 +9485,8 @@ msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
"like to <a href=\"%s\">configure</a> it?"
|
||||
msgstr ""
|
||||
"Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga "
|
||||
"želite <a href=\"%s\">konfigurirati</a>?"
|
||||
"Strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ga želite "
|
||||
"<a href=\"%s\">konfigurirati</a>?"
|
||||
|
||||
#: server_status.php:447
|
||||
#, php-format
|
||||
@ -9498,7 +9497,7 @@ msgstr "Nit %s je bila prekinjena."
|
||||
#, php-format
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
|
||||
msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena."
|
||||
msgstr "phpMyAdmin ni uspel prekiniti niti %s. Verjetno je že prekinjena."
|
||||
|
||||
#: server_status.php:581
|
||||
msgid "Handler"
|
||||
@ -9622,9 +9621,8 @@ msgid ""
|
||||
"calculations and by rule of thumb which may not necessarily apply to your "
|
||||
"system."
|
||||
msgstr ""
|
||||
"Kakor koli, pomnite, da ta sistem nudi priporočila, ki temeljijo na "
|
||||
"preprostih računih in splošnih smernicah, katere morda ne ustrezajo vašemu "
|
||||
"sistemu."
|
||||
"Kakor koli, pomnite, da sistem nudi priporočila, ki temeljijo na preprostih "
|
||||
"računih in splošnih smernicah, ki morda ne ustrezajo vašemu sistemu."
|
||||
|
||||
#: server_status.php:905
|
||||
msgid ""
|
||||
@ -9651,7 +9649,7 @@ msgstr ""
|
||||
#: server_status.php:929
|
||||
#, php-format
|
||||
msgid "Questions since startup: %s"
|
||||
msgstr "Vprašanja od zagona: %s"
|
||||
msgstr "Vprašanj od zagona: %s"
|
||||
|
||||
#: server_status.php:965 tbl_printview.php:328 tbl_structure.php:833
|
||||
msgid "Statements"
|
||||
@ -9853,7 +9851,7 @@ msgid ""
|
||||
"The number of requests to read a row based on a key. If this is high, it is "
|
||||
"a good indication that your queries and tables are properly indexed."
|
||||
msgstr ""
|
||||
"Število zahtev za branje vrstice temelječih na ključu. Če je ta vrednost "
|
||||
"Število zahtev za branje vrstice, temelječih na ključu. Če je vrednost "
|
||||
"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno "
|
||||
"indeksirane."
|
||||
|
||||
@ -9872,7 +9870,7 @@ msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
msgstr ""
|
||||
"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek "
|
||||
"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek "
|
||||
"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC."
|
||||
|
||||
#: server_status.php:1313
|
||||
@ -9991,10 +9989,10 @@ msgid ""
|
||||
"properly, this value should be small."
|
||||
msgstr ""
|
||||
"Po navadi pisanje v zalogo medpomnilnika InnoDB poteka v ozadju. Če pa je "
|
||||
"potrebno brati ali ustvariti stran in na voljo ni nobene čiste strani, je "
|
||||
"potrebno počakati, da se strani najprej izplaknejo. Ta števec šteje primere "
|
||||
"teh čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, "
|
||||
"bi morala biti ta vrednost majhna."
|
||||
"potrebno brati ali ustvariti stran in ni na voljo nobene čiste strani, je "
|
||||
"potrebno počakati, da se strani najprej izplaknejo. Števec šteje primere teh "
|
||||
"čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi "
|
||||
"morala biti vrednost majhna."
|
||||
|
||||
#: server_status.php:1330
|
||||
msgid "The number writes done to the InnoDB buffer pool."
|
||||
@ -10268,7 +10266,7 @@ msgid ""
|
||||
"decide which queries to remove from the cache."
|
||||
msgstr ""
|
||||
"Število poizvedb, ki so bile izbrisane iz predpomnilnika, da se sprosti "
|
||||
"spomin za predpomnenje novih poizvedb. Ta informacija lahko pomaga pri "
|
||||
"spomin za predpomnenje novih poizvedb. Informacija lahko pomaga pri "
|
||||
"uravnavanju velikosti predpomnilnika poizvedb. Predpomnilnik poizvedb "
|
||||
"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere "
|
||||
"poizvedbe naj odstrani iz predpomnilnika."
|
||||
@ -10298,7 +10296,7 @@ msgid ""
|
||||
"The number of joins that do not use indexes. If this value is not 0, you "
|
||||
"should carefully check the indexes of your tables."
|
||||
msgstr ""
|
||||
"Število stikov, ki ne uporabljajo indeksov. Če ta vrednost ni 0, skrbno "
|
||||
"Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno "
|
||||
"preverite indekse vaših tabel."
|
||||
|
||||
#: server_status.php:1388
|
||||
@ -10362,7 +10360,7 @@ msgid ""
|
||||
"system variable."
|
||||
msgstr ""
|
||||
"Število prehodov spajanja, ki jih je moral opraviti algoritem razvrščanja. "
|
||||
"Če je ta vrednost velika, razmislite o povečanju sistemske spremenljivke "
|
||||
"Če je vrednost velika, razmislite o povečanju sistemske spremenljivke "
|
||||
"sort_buffer_size."
|
||||
|
||||
#: server_status.php:1398
|
||||
@ -10400,8 +10398,8 @@ msgid ""
|
||||
"raise your thread_cache_size."
|
||||
msgstr ""
|
||||
"Število niti v predpomnilniku niti. Delež zadetkov predpomnilnika se lahko "
|
||||
"izračuna kot Threads_created/Connections. Če je ta vrednost rdeča, povečajte "
|
||||
"vaš thread_cache_size."
|
||||
"izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, "
|
||||
"povečajte svoj thread_cache_size."
|
||||
|
||||
#: server_status.php:1404
|
||||
msgid "The number of currently open connections."
|
||||
@ -10646,7 +10644,7 @@ msgstr "Ne morem se povezati s ciljem"
|
||||
#: tbl_get_field.php:19
|
||||
#, php-format
|
||||
msgid "'%s' database does not exist."
|
||||
msgstr "Podatkovna zbirka '%s' ne obstaja."
|
||||
msgstr "Zbirka podatkov '%s' ne obstaja."
|
||||
|
||||
#: server_synchronize.php:294
|
||||
msgid "Structure Synchronization"
|
||||
@ -10743,8 +10741,8 @@ msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
msgstr ""
|
||||
"Ciljna podatkovna zbirka bo popolnoma sinhronizirana z izvorno podatkovno "
|
||||
"zbirko. Izvorna podatkovna zbirka bo ostala nespremenjena."
|
||||
"Ciljna zbirka podatkov bo popolnoma sinhronizirana z izvorno zbirko "
|
||||
"podatkov. Izvorna zbirka podatkov bo ostala nespremenjena."
|
||||
|
||||
#: server_variables.php:73
|
||||
msgid "Setting variable failed"
|
||||
@ -10948,8 +10946,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Ta %smožnost%s naj bo onemogočena, saj omogoča napadalcem, da se z načinom "
|
||||
"bruteforce prijavijo v kateri koli strežnik MySQL. Če menite, da je to "
|
||||
"potrebno, uporabite %sseznam zaupanih proxyjev%s. Kakor koli, zaščita "
|
||||
"temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, na katerega je "
|
||||
"potrebno, uporabite %sseznam zaupanih proxyjev%s. Kakor koli, zaščita, "
|
||||
"temelječa na IP, ni zanesljiva, če vaš IP pripada ISP-ju, na katerega je "
|
||||
"povezanih tisoče uporabnikov, vključno z vami."
|
||||
|
||||
#: setup/lib/index.lib.php:273
|
||||
@ -10976,9 +10974,8 @@ msgid ""
|
||||
"This value should be double checked to ensure that this directory is neither "
|
||||
"world accessible nor readable or writable by other users on your server."
|
||||
msgstr ""
|
||||
"Ta vrednost naj bo ponovno preverjena, za zagotovitev, da ta mapa ni "
|
||||
"dostopna ne svetu ne na voljo za branje ali pisanje drugim uporabnikom na "
|
||||
"vašem strežniku."
|
||||
"Vrednost ponovno preverite, da se prepričate, da mapa ni dostopna ne svetu "
|
||||
"in ne na voljo za branje ali pisanje drugim uporabnikom na vašem strežniku."
|
||||
|
||||
#: setup/lib/index.lib.php:277
|
||||
#, php-format
|
||||
@ -11160,7 +11157,7 @@ msgstr "in potem"
|
||||
|
||||
#: tbl_change.php:1088
|
||||
msgid "Go back to previous page"
|
||||
msgstr "Nazaj na prejšnjo stran"
|
||||
msgstr "Pojdi nazaj na prejšnjo stran"
|
||||
|
||||
#: tbl_change.php:1089
|
||||
msgid "Insert another new row"
|
||||
@ -12217,7 +12214,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Predpomnilnik je trenutno %s-%% razdrobljen, pri čemer 100-%% razdrobljenost "
|
||||
"pomeni, da je predpomnilnik poizvedb izmeničen vzorec prostih in "
|
||||
"uporabljenih blokov. Ta vrednost bi morala biti pod 20 %%."
|
||||
"uporabljenih blokov. Vrednost bi morala biti pod 20 %%."
|
||||
|
||||
#: libraries/advisory_rules.txt:165
|
||||
msgid "Query cache low memory prunes"
|
||||
@ -12333,8 +12330,8 @@ msgid ""
|
||||
"%s%% of all sorts cause temporary tables, this value should be lower than "
|
||||
"10%%."
|
||||
msgstr ""
|
||||
"%s %% vseh razvrščanj povzroča začasne tabele; ta vrednost bi morala biti "
|
||||
"nižja od 10 %%."
|
||||
"%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja "
|
||||
"od 10 %%."
|
||||
|
||||
#: libraries/advisory_rules.txt:195
|
||||
msgid "Rate of sorts that cause temporary tables"
|
||||
@ -12345,7 +12342,7 @@ msgstr "Delež razvrščanj, ki povzroča začasne tabele"
|
||||
msgid ""
|
||||
"Temporary tables average: %s, this value should be less than 1 per hour."
|
||||
msgstr ""
|
||||
"Povprečje začasnih tabel: %s; ta vrednost bi morala biti manj kot 1 na uro."
|
||||
"Povprečje začasnih tabel: %s; vrednost bi morala biti manj kot 1 na uro."
|
||||
|
||||
#: libraries/advisory_rules.txt:202
|
||||
msgid "Sort rows"
|
||||
@ -12391,8 +12388,7 @@ msgstr ""
|
||||
#: libraries/advisory_rules.txt:215
|
||||
#, php-format
|
||||
msgid "Table joins average: %s, this value should be less than 1 per hour"
|
||||
msgstr ""
|
||||
"Povprečje stikov tabel: %s; ta vrednost bi morala biti manj kot 1 na uro"
|
||||
msgstr "Povprečje stikov tabel: %s; vrednost bi morala biti manj kot 1 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:217
|
||||
msgid "Rate of reading first index entry"
|
||||
@ -12422,8 +12418,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid "Index scans average: %s, this value should be less than 1 per hour"
|
||||
msgstr ""
|
||||
"Povprečje pregledovanja indeksov: %s; ta vrednost bi morala biti manj kot 1 "
|
||||
"na uro"
|
||||
"Povprečje pregledovanja indeksov: %s; vrednost bi morala biti manj kot 1 na "
|
||||
"uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:224
|
||||
msgid "Rate of reading fixed position"
|
||||
@ -12449,8 +12445,8 @@ msgid ""
|
||||
"Rate of reading fixed position average: %s, this value should be less than 1 "
|
||||
"per hour"
|
||||
msgstr ""
|
||||
"Delež povprečja branja stalnega položaja: %s; ta vrednost bi morala biti "
|
||||
"manj kot 1 na uro"
|
||||
"Delež povprečja branja stalnega položaja: %s; vrednost bi morala biti manj "
|
||||
"kot 1 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:231
|
||||
msgid "Rate of reading next table row"
|
||||
@ -12473,7 +12469,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"Rate of reading next table row: %s, this value should be less than 1 per hour"
|
||||
msgstr ""
|
||||
"Delež branja naslednje vrstice v tabeli: %s; ta vrednost bi morala biti manj "
|
||||
"Delež branja naslednje vrstice v tabeli: %s; vrednost bi morala biti manj "
|
||||
"kot 1 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:239
|
||||
@ -12536,8 +12532,8 @@ msgid ""
|
||||
"%s%% of all temporary tables are being written to disk, this value should be "
|
||||
"below 25%%"
|
||||
msgstr ""
|
||||
"%s %% vseh začasnih tabel je zapisanih na disk; ta vrednost bi morala biti "
|
||||
"pod 25 %%"
|
||||
"%s %% vseh začasnih tabel je zapisanih na disk; vrednost bi morala biti pod "
|
||||
"25 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:253
|
||||
msgid "Temp disk rate"
|
||||
@ -12567,8 +12563,8 @@ msgid ""
|
||||
"Rate of temporary tables being written to disk: %s, this value should be "
|
||||
"less than 1 per hour"
|
||||
msgstr ""
|
||||
"Delež začasnih tabel, pisanih na disk: %s; ta vrednost bi morala biti manj "
|
||||
"kot 1 na uro"
|
||||
"Delež začasnih tabel, pisanih na disk: %s; vrednost bi morala biti manj kot "
|
||||
"1 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:273
|
||||
msgid "MyISAM key buffer size"
|
||||
@ -12618,7 +12614,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%"
|
||||
msgstr ""
|
||||
"največji %% kadar koli uporabljenega medpomnilnika ključev MyISAM: %s %%; ta "
|
||||
"največji %% kadar koli uporabljenega medpomnilnika ključev MyISAM: %s %%; "
|
||||
"vrednost bi morala biti nad 95 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:288
|
||||
@ -12629,7 +12625,7 @@ msgstr "Odstotek uporabljenega medpomnilnika ključev MyISAM"
|
||||
#, php-format
|
||||
msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%"
|
||||
msgstr ""
|
||||
"%% uporabljenega medpomnilnika ključev MyISAM: %s %%; ta vrednost bi morala "
|
||||
"%% uporabljenega medpomnilnika ključev MyISAM: %s %%; vrednost bi morala "
|
||||
"biti nad 95 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:295
|
||||
@ -12643,13 +12639,12 @@ msgstr "%% indeksov, ki uporabljajo medpomnilnik ključev MyISAM, je nizek."
|
||||
|
||||
#: libraries/advisory_rules.txt:299
|
||||
msgid "You may need to increase {key_buffer_size}."
|
||||
msgstr "Mord boste morali povečati {key_buffer_size}."
|
||||
msgstr "Morda boste morali povečati {key_buffer_size}."
|
||||
|
||||
#: libraries/advisory_rules.txt:300
|
||||
#, php-format
|
||||
msgid "Index reads from memory: %s%%, this value should be above 95%%"
|
||||
msgstr ""
|
||||
"Branj indeksov iz pomnilnika: %s %%; ta vrednost bi morala biti nad 95 %%"
|
||||
msgstr "Branj indeksov iz pomnilnika: %s %%; vrednost bi morala biti nad 95 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:304
|
||||
msgid "Rate of table open"
|
||||
@ -12670,7 +12665,7 @@ msgstr ""
|
||||
#: libraries/advisory_rules.txt:309
|
||||
#, php-format
|
||||
msgid "Opened table rate: %s, this value should be less than 10 per hour"
|
||||
msgstr "Delež odprtih tabel: %s; ta vrednost bi morala biti manj kot 10 na uro"
|
||||
msgstr "Delež odprtih tabel: %s; vrednost bi morala biti manj kot 10 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:311
|
||||
msgid "Percentage of used open files limit"
|
||||
@ -12709,7 +12704,7 @@ msgstr "Delež odprtih datotek je visok."
|
||||
#: libraries/advisory_rules.txt:323
|
||||
#, php-format
|
||||
msgid "Opened files rate: %s, this value should be less than 5 per hour"
|
||||
msgstr "Delež odprtih datotek: %s; ta vrednost bi morala biti pod 5 na uro"
|
||||
msgstr "Delež odprtih datotek: %s; vrednost bi morala biti pod 5 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:325
|
||||
#, php-format
|
||||
@ -12729,7 +12724,7 @@ msgstr ""
|
||||
#: libraries/advisory_rules.txt:330
|
||||
#, php-format
|
||||
msgid "Immediate table locks: %s%%, this value should be above 95%%"
|
||||
msgstr "Takojšnji zaklepi tabel: %s %%; ta vrednost bi morala biti nad 95 %%"
|
||||
msgstr "Takojšnji zaklepi tabel: %s %%; vrednost bi morala biti nad 95 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:332
|
||||
msgid "Table lock wait rate"
|
||||
@ -12739,8 +12734,7 @@ msgstr "Delež čakanja na zaklep tabel"
|
||||
#, php-format
|
||||
msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
|
||||
msgstr ""
|
||||
"Delež čakanja na zaklep tabel: %s; ta vrednost bi morala biti manj kot 1 na "
|
||||
"uro"
|
||||
"Delež čakanja na zaklep tabel: %s; vrednost bi morala biti manj kot 1 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:339
|
||||
msgid "Thread cache"
|
||||
@ -12781,8 +12775,7 @@ msgstr "Povečajte {thread_cache_size}."
|
||||
#, php-format
|
||||
msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
|
||||
msgstr ""
|
||||
"Delež zadetkov predpomnilnika niti: %s %%; ta vrednost bi morala biti nad 80 "
|
||||
"%%"
|
||||
"Delež zadetkov predpomnilnika niti: %s %%; vrednost bi morala biti nad 80 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:353
|
||||
msgid "Threads that are slow to launch"
|
||||
@ -12878,7 +12871,7 @@ msgstr ""
|
||||
#: libraries/advisory_rules.txt:381
|
||||
#, php-format
|
||||
msgid "%s%% of all connections are aborted. This value should be below 1%%"
|
||||
msgstr "%s %% vseh povezav je prekinjenih. Ta vrednost bi morala biti pod 1 %%"
|
||||
msgstr "%s %% vseh povezav je prekinjenih. Vrednost bi morala biti pod 1 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:383
|
||||
msgid "Rate of aborted connections"
|
||||
@ -12889,7 +12882,7 @@ msgstr "Delež prekinjenih povezav"
|
||||
msgid ""
|
||||
"Aborted connections rate is at %s, this value should be less than 1 per hour"
|
||||
msgstr ""
|
||||
"Delež prekinjenih povezav je %s; ta vrednost bi morala biti manj kot 1 na uro"
|
||||
"Delež prekinjenih povezav je %s; vrednost bi morala biti manj kot 1 na uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:390
|
||||
msgid "Percentage of aborted clients"
|
||||
@ -12912,8 +12905,7 @@ msgstr ""
|
||||
#: libraries/advisory_rules.txt:395
|
||||
#, php-format
|
||||
msgid "%s%% of all clients are aborted. This value should be below 2%%"
|
||||
msgstr ""
|
||||
"%s %% vseh odjemalcev je prekinjenih. Ta vrednost bi morala biti pod 2 %%"
|
||||
msgstr "%s %% vseh odjemalcev je prekinjenih. Vrednost bi morala biti pod 2 %%"
|
||||
|
||||
#: libraries/advisory_rules.txt:397
|
||||
msgid "Rate of aborted clients"
|
||||
@ -12923,8 +12915,8 @@ msgstr "Delež prekinjenih objemalcev"
|
||||
#, php-format
|
||||
msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
|
||||
msgstr ""
|
||||
"Delež prekinjenih objemalcev je %s; ta vrednost bit morala biti manj kot 1 "
|
||||
"na uro"
|
||||
"Delež prekinjenih objemalcev je %s; vrednost bi morala biti manj kot 1 na "
|
||||
"uro"
|
||||
|
||||
#: libraries/advisory_rules.txt:406
|
||||
msgid "Is InnoDB disabled?"
|
||||
@ -12969,14 +12961,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Še posebej na sistemu z veliko pisanji v tabele InnoDB bi morali nastaviti "
|
||||
"innodb_log_file_size na 25 %% {innodb_buffer_pool_size}. Kakor koli, večja "
|
||||
"je ta vrednost, daljši bo čas obnovitve po zrušitvi zbirke podatkov, zato te "
|
||||
"je vrednost, daljši bo čas obnovitve po zrušitvi zbirke podatkov, zato "
|
||||
"vrednosti ne nastavite na več kot 256 MiB. Kljub temu pomnite, da vrednosti "
|
||||
"te spremenljivke ne morete preprosto spremeniti. Zaustaviti morate strežnik, "
|
||||
"odstraniti dnevniške datoteke InnoDB, nastaviti novo vrednost v my.cnf, "
|
||||
"zagnati strežnik in nato preveriti dnevnike napak, če je vse potekalo v "
|
||||
"redu. Oglejte si tudi <a href=\"http://mysqldatabaseadministration.blogspot."
|
||||
"com/2007/01/increase-innodblogfilesize-proper-way.html\">to objavo na blogu</"
|
||||
"a>"
|
||||
"redu. Oglejte si tudi <a "
|
||||
"href=\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-"
|
||||
"innodblogfilesize-proper-way.html\">to objavo na blogu</a>"
|
||||
|
||||
#: libraries/advisory_rules.txt:418
|
||||
#, php-format
|
||||
@ -13051,11 +13043,11 @@ msgstr ""
|
||||
"zbirk podatkov, ki kot skladiščni pogon uporabljajo samo InnoDB in ne "
|
||||
"poganjajo drugih storitev (npr. spletnega strežnika), lahko nastavite to na "
|
||||
"do 80 %% vašega pomnilnika, ki je na voljo. Če ni težava v tem, boste morali "
|
||||
"pazljivo določiti porabo pomnilnika drugim storitvam in ne-InnoDB-tabelam "
|
||||
"pazljivo določiti porabo pomnilnika drugim storitvam in tabelam ne-InnoDB "
|
||||
"ter ustrezno nastaviti to spremenljivko. Če je nastavljena previsoko, bo vaš "
|
||||
"sistem začel izmenjevati, kar bo občutno zmanjšalo učinkovitost. Oglejte si "
|
||||
"tudi <a href=\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-"
|
||||
"innodb_buffer_pool_size/\">ta članek</a>"
|
||||
"sistem začel z izmenjevanjem, kar bo občutno zmanjšalo učinkovitost. "
|
||||
"Oglejte si tudi <a href=\"http://www.mysqlperformanceblog.com/2007/11/03"
|
||||
"/choosing-innodb_buffer_pool_size/\">ta članek</a>"
|
||||
|
||||
#: libraries/advisory_rules.txt:432
|
||||
#, php-format
|
||||
|
||||
@ -186,8 +186,8 @@ if (isset($_REQUEST['do_save_data'])) {
|
||||
. ' (' . $sql_query . ')';
|
||||
|
||||
// Adds table type, character set, comments and partition definition
|
||||
if (!empty($_REQUEST['tbl_type']) && ($_REQUEST['tbl_type'] != 'Default')) {
|
||||
$sql_query .= ' ENGINE = ' . $_REQUEST['tbl_type'];
|
||||
if (!empty($_REQUEST['tbl_storage_engine']) && ($_REQUEST['tbl_storage_engine'] != 'Default')) {
|
||||
$sql_query .= ' ENGINE = ' . $_REQUEST['tbl_storage_engine'];
|
||||
}
|
||||
if (!empty($_REQUEST['tbl_collation'])) {
|
||||
$sql_query .= PMA_generateCharsetQueryPart($_REQUEST['tbl_collation']);
|
||||
|
||||
@ -52,7 +52,7 @@ require 'libraries/tbl_info.inc.php';
|
||||
// define some globals here, for improved syntax in the conditionals
|
||||
$is_myisam_or_aria = $is_isam = $is_innodb = $is_berkeleydb = $is_aria = $is_pbxt = false;
|
||||
// set initial value of these globals, based on the current table engine
|
||||
PMA_set_global_variables_for_engine($tbl_type);
|
||||
PMA_set_global_variables_for_engine($tbl_storage_engine);
|
||||
|
||||
if ($is_aria) {
|
||||
// the value for transactional can be implicit
|
||||
@ -104,12 +104,12 @@ if (isset($_REQUEST['submitoptions'])) {
|
||||
&& urldecode($_REQUEST['prev_comment']) !== $_REQUEST['comment']) {
|
||||
$table_alters[] = 'COMMENT = \'' . PMA_sqlAddSlashes($_REQUEST['comment']) . '\'';
|
||||
}
|
||||
if (! empty($_REQUEST['new_tbl_type'])
|
||||
&& strtolower($_REQUEST['new_tbl_type']) !== strtolower($tbl_type)) {
|
||||
$table_alters[] = 'ENGINE = ' . $_REQUEST['new_tbl_type'];
|
||||
$tbl_type = $_REQUEST['new_tbl_type'];
|
||||
if (! empty($_REQUEST['new_tbl_storage_engine'])
|
||||
&& strtolower($_REQUEST['new_tbl_storage_engine']) !== strtolower($tbl_storage_engine)) {
|
||||
$table_alters[] = 'ENGINE = ' . $_REQUEST['new_tbl_storage_engine'];
|
||||
$tbl_storage_engine = $_REQUEST['new_tbl_storage_engine'];
|
||||
// reset the globals for the new engine
|
||||
PMA_set_global_variables_for_engine($tbl_type);
|
||||
PMA_set_global_variables_for_engine($tbl_storage_engine);
|
||||
if ($is_aria) {
|
||||
$transactional = (isset($transactional) && $transactional == '0') ? '0' : '1';
|
||||
$page_checksum = (isset($page_checksum)) ? $page_checksum : '';
|
||||
@ -178,7 +178,7 @@ if (isset($_REQUEST['submitoptions'])) {
|
||||
// should not be reported with a Level of Error, so here
|
||||
// I just ignore it. But there are other 1478 messages
|
||||
// that it's better to show.
|
||||
if (! ($_REQUEST['new_tbl_type'] == 'MyISAM' && $warning['Code'] == '1478' && $warning['Level'] == 'Error')) {
|
||||
if (! ($_REQUEST['new_tbl_storage_engine'] == 'MyISAM' && $warning['Code'] == '1478' && $warning['Level'] == 'Error')) {
|
||||
$warning_messages[] = $warning['Level'] . ': #' . $warning['Code']
|
||||
. ' ' . $warning['Message'];
|
||||
}
|
||||
@ -374,7 +374,7 @@ if (strstr($show_comment, '; InnoDB free') === false) {
|
||||
<tr><td><?php echo __('Storage Engine'); ?>
|
||||
<?php echo PMA_showMySQLDocu('Storage_engines', 'Storage_engines'); ?>
|
||||
</td>
|
||||
<td><?php echo PMA_StorageEngine::getHtmlSelect('new_tbl_type', null, $tbl_type); ?>
|
||||
<td><?php echo PMA_StorageEngine::getHtmlSelect('new_tbl_storage_engine', null, $tbl_storage_engine); ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -509,11 +509,11 @@ unset($innodb_engine_plugin, $innodb_plugin_version, $innodb_file_format);
|
||||
// does not return a warning
|
||||
// (if the table was compressed, it can be seen on the Structure page)
|
||||
|
||||
if (isset($possible_row_formats[$tbl_type])) {
|
||||
if (isset($possible_row_formats[$tbl_storage_engine])) {
|
||||
$current_row_format = strtoupper($showtable['Row_format']);
|
||||
echo '<tr><td><label for="new_row_format">ROW_FORMAT</label></td>';
|
||||
echo '<td>';
|
||||
echo PMA_generate_html_dropdown('new_row_format', $possible_row_formats[$tbl_type], $current_row_format, 'new_row_format');
|
||||
echo PMA_generate_html_dropdown('new_row_format', $possible_row_formats[$tbl_storage_engine], $current_row_format, 'new_row_format');
|
||||
unset($possible_row_formats, $current_row_format);
|
||||
echo '</td>';
|
||||
echo '</tr>';
|
||||
@ -859,21 +859,21 @@ if ($cfgRelation['relwork'] && ! $is_innodb) {
|
||||
require 'libraries/footer.inc.php';
|
||||
|
||||
|
||||
function PMA_set_global_variables_for_engine($tbl_type)
|
||||
function PMA_set_global_variables_for_engine($tbl_storage_engine)
|
||||
{
|
||||
global $is_myisam_or_aria, $is_innodb, $is_isam, $is_berkeleydb, $is_aria, $is_pbxt;
|
||||
|
||||
$is_myisam_or_aria = $is_isam = $is_innodb = $is_berkeleydb = $is_aria = $is_pbxt = false;
|
||||
$upper_tbl_type = strtoupper($tbl_type);
|
||||
$upper_tbl_storage_engine = strtoupper($tbl_storage_engine);
|
||||
|
||||
//Options that apply to MYISAM usually apply to ARIA
|
||||
$is_myisam_or_aria = ($upper_tbl_type == 'MYISAM' || $upper_tbl_type == 'ARIA' || $upper_tbl_type == 'MARIA');
|
||||
$is_aria = ($upper_tbl_type == 'ARIA');
|
||||
$is_myisam_or_aria = ($upper_tbl_storage_engine == 'MYISAM' || $upper_tbl_storage_engine == 'ARIA' || $upper_tbl_storage_engine == 'MARIA');
|
||||
$is_aria = ($upper_tbl_storage_engine == 'ARIA');
|
||||
|
||||
$is_isam = ($upper_tbl_type == 'ISAM');
|
||||
$is_innodb = ($upper_tbl_type == 'INNODB');
|
||||
$is_berkeleydb = ($upper_tbl_type == 'BERKELEYDB');
|
||||
$is_pbxt = ($upper_tbl_type == 'PBXT');
|
||||
$is_isam = ($upper_tbl_storage_engine == 'ISAM');
|
||||
$is_innodb = ($upper_tbl_storage_engine == 'INNODB');
|
||||
$is_berkeleydb = ($upper_tbl_storage_engine == 'BERKELEYDB');
|
||||
$is_pbxt = ($upper_tbl_storage_engine == 'PBXT');
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
@ -132,7 +132,7 @@ $cfgRelation = PMA_getRelationsParam();
|
||||
if ($cfgRelation['relwork']) {
|
||||
$existrel = PMA_getForeigners($db, $table, '', 'internal');
|
||||
}
|
||||
if (PMA_foreignkey_supported($tbl_type)) {
|
||||
if (PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
$existrel_foreign = PMA_getForeigners($db, $table, '', 'foreign');
|
||||
}
|
||||
if ($cfgRelation['displaywork']) {
|
||||
@ -336,7 +336,7 @@ if ($cfgRelation['displaywork'] && isset($display_field)) {
|
||||
if (isset($destination) && $cfgRelation['relwork']) {
|
||||
$existrel = PMA_getForeigners($db, $table, '', 'internal');
|
||||
}
|
||||
if (isset($destination_foreign) && PMA_foreignkey_supported($tbl_type)) {
|
||||
if (isset($destination_foreign) && PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
$existrel_foreign = PMA_getForeigners($db, $table, '', 'foreign');
|
||||
}
|
||||
|
||||
@ -356,13 +356,13 @@ echo PMA_generate_common_hidden_inputs($db, $table);
|
||||
|
||||
// relations
|
||||
|
||||
if ($cfgRelation['relwork'] || PMA_foreignkey_supported($tbl_type)) {
|
||||
if ($cfgRelation['relwork'] || PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
// To choose relations we first need all tables names in current db
|
||||
// and if the main table supports foreign keys
|
||||
// we use SHOW TABLE STATUS because we need to find other tables of the
|
||||
// same engine.
|
||||
|
||||
if (PMA_foreignkey_supported($tbl_type)) {
|
||||
if (PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
$tab_query = 'SHOW TABLE STATUS FROM ' . PMA_backquote($db);
|
||||
// [0] of the row is the name
|
||||
// [1] is the type
|
||||
@ -383,9 +383,9 @@ if ($cfgRelation['relwork'] || PMA_foreignkey_supported($tbl_type)) {
|
||||
|
||||
// if foreign keys are supported, collect all keys from other
|
||||
// tables of the same engine
|
||||
if (PMA_foreignkey_supported($tbl_type)
|
||||
if (PMA_foreignkey_supported($tbl_storage_engine)
|
||||
&& isset($curr_table[1])
|
||||
&& strtoupper($curr_table[1]) == $tbl_type
|
||||
&& strtoupper($curr_table[1]) == $tbl_storage_engine
|
||||
) {
|
||||
// explicitely ask for non-quoted list of indexed columns
|
||||
// need to obtain backquoted values to support dots inside values
|
||||
@ -412,14 +412,14 @@ if (count($columns) > 0) {
|
||||
<?php
|
||||
if ($cfgRelation['relwork']) {
|
||||
echo '<th>' . __('Internal relation');
|
||||
if (PMA_foreignkey_supported($tbl_type)) {
|
||||
if (PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
echo PMA_showHint(__('An internal relation is not necessary when a corresponding FOREIGN KEY relation exists.'));
|
||||
}
|
||||
echo '</th>';
|
||||
}
|
||||
if (PMA_foreignkey_supported($tbl_type)) {
|
||||
if (PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
// this does not have to be translated, it's part of the MySQL syntax
|
||||
echo '<th colspan="2">' . __('Foreign key constraint') . ' (' . $tbl_type . ')';
|
||||
echo '<th colspan="2">' . __('Foreign key constraint') . ' (' . $tbl_storage_engine . ')';
|
||||
echo '</th>';
|
||||
}
|
||||
?>
|
||||
@ -476,7 +476,7 @@ if (count($columns) > 0) {
|
||||
<?php
|
||||
} // end if (internal relations)
|
||||
|
||||
if (PMA_foreignkey_supported($tbl_type)) {
|
||||
if (PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
echo '<td>';
|
||||
if (!empty($save_row[$i]['Key'])) {
|
||||
?>
|
||||
|
||||
@ -374,7 +374,7 @@ foreach ($fields as $row) {
|
||||
</td>
|
||||
<td class="replaced_by_more center">
|
||||
<?php
|
||||
if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_type || ($primary && $primary->hasColumn($field_name))) {
|
||||
if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_storage_engine || ($primary && $primary->hasColumn($field_name))) {
|
||||
echo $titles['NoPrimary'] . "\n";
|
||||
$primary_enabled = false;
|
||||
} else {
|
||||
@ -389,7 +389,7 @@ foreach ($fields as $row) {
|
||||
</td>
|
||||
<td class="replaced_by_more center">
|
||||
<?php
|
||||
if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_type || isset($columns_with_unique_index[$field_name])) {
|
||||
if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_storage_engine || isset($columns_with_unique_index[$field_name])) {
|
||||
echo $titles['NoUnique'] . "\n";
|
||||
$unique_enabled = false;
|
||||
} else {
|
||||
@ -404,7 +404,7 @@ foreach ($fields as $row) {
|
||||
</td>
|
||||
<td class="replaced_by_more center">
|
||||
<?php
|
||||
if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_type) {
|
||||
if ($type == 'text' || $type == 'blob' || 'ARCHIVE' == $tbl_storage_engine) {
|
||||
echo $titles['NoIndex'] . "\n";
|
||||
$index_enabled = false;
|
||||
} else {
|
||||
@ -424,7 +424,7 @@ foreach ($fields as $row) {
|
||||
'geometry', 'point', 'linestring', 'polygon', 'multipoint',
|
||||
'multilinestring', 'multipolygon', 'geomtrycollection'
|
||||
);
|
||||
if (! in_array($type, $spatial_types) || 'MYISAM' != $tbl_type) {
|
||||
if (! in_array($type, $spatial_types) || 'MYISAM' != $tbl_storage_engine) {
|
||||
echo $titles['NoSpatial'] . "\n";
|
||||
$spatial_enabled = false;
|
||||
} else {
|
||||
@ -439,7 +439,7 @@ foreach ($fields as $row) {
|
||||
?>
|
||||
</td>
|
||||
<?php
|
||||
if (! empty($tbl_type) && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA' || ($tbl_type == 'INNODB' && PMA_MYSQL_INT_VERSION >= 50604))
|
||||
if (! empty($tbl_storage_engine) && ($tbl_storage_engine == 'MYISAM' || $tbl_storage_engine == 'ARIA' || $tbl_storage_engine == 'MARIA' || ($tbl_storage_engine == 'INNODB' && PMA_MYSQL_INT_VERSION >= 50604))
|
||||
// FULLTEXT is possible on TEXT, CHAR and VARCHAR
|
||||
&& (strpos(' ' . $type, 'text') || strpos(' ' . $type, 'char'))) {
|
||||
echo "\n";
|
||||
@ -571,16 +571,16 @@ PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_browse', __('Browse
|
||||
if (! $tbl_is_view && ! $db_is_information_schema) {
|
||||
PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_change', __('Change'), 'b_edit.png', 'change');
|
||||
PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_drop', __('Drop'), 'b_drop.png', 'drop');
|
||||
if ('ARCHIVE' != $tbl_type) {
|
||||
if ('ARCHIVE' != $tbl_storage_engine) {
|
||||
PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_primary', __('Primary'), 'b_primary.png', 'primary');
|
||||
PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_unique', __('Unique'), 'b_unique.png', 'unique');
|
||||
PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_index', __('Index'), 'b_index.png', 'index');
|
||||
}
|
||||
|
||||
if (! empty($tbl_type) && $tbl_type == 'MYISAM') {
|
||||
if (! empty($tbl_storage_engine) && $tbl_storage_engine == 'MYISAM') {
|
||||
PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_spatial', __('Spatial'), 'b_spatial.png', 'spatial');
|
||||
}
|
||||
if (! empty($tbl_type) && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA')) {
|
||||
if (! empty($tbl_storage_engine) && ($tbl_storage_engine == 'MYISAM' || $tbl_storage_engine == 'ARIA' || $tbl_storage_engine == 'MARIA')) {
|
||||
PMA_buttonOrImage('submit_mult', 'mult_submit', 'submit_mult_fulltext', __('Fulltext'), 'b_ftext.png', 'ftext');
|
||||
}
|
||||
}
|
||||
@ -617,8 +617,8 @@ echo PMA_getIcon('b_print.png', __('Print view'), true);
|
||||
if (! $tbl_is_view && ! $db_is_information_schema) {
|
||||
|
||||
// if internal relations are available, or foreign keys are supported
|
||||
// ($tbl_type comes from libraries/tbl_info.inc.php)
|
||||
if ($cfgRelation['relwork'] || PMA_foreignkey_supported($tbl_type)) {
|
||||
// ($tbl_storage_engine comes from libraries/tbl_info.inc.php)
|
||||
if ($cfgRelation['relwork'] || PMA_foreignkey_supported($tbl_storage_engine)) {
|
||||
?>
|
||||
<a href="tbl_relation.php?<?php echo $url_query; ?>"><?php
|
||||
echo PMA_getIcon('b_relations.png', __('Relation view'), true);
|
||||
@ -689,7 +689,7 @@ if (count($fields) > 20) {
|
||||
* Displays indexes
|
||||
*/
|
||||
|
||||
if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_type) {
|
||||
if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_storage_engine) {
|
||||
PMA_generate_slider_effect('indexes', __('Indexes'));
|
||||
/**
|
||||
* Display indexes
|
||||
@ -808,7 +808,7 @@ if ($cfg['ShowStats']) {
|
||||
<?php
|
||||
}
|
||||
// Optimize link if overhead
|
||||
if (isset($free_size) && !PMA_DRIZZLE && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA' || $tbl_type == 'BDB')) {
|
||||
if (isset($free_size) && !PMA_DRIZZLE && ($tbl_storage_engine == 'MYISAM' || $tbl_storage_engine == 'ARIA' || $tbl_storage_engine == 'MARIA' || $tbl_storage_engine == 'BDB')) {
|
||||
?>
|
||||
<tr class="tblFooters">
|
||||
<td colspan="3" class="center">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user