diff --git a/ChangeLog b/ChangeLog index 09c3bad541..e467b3ed4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -46,6 +46,8 @@ phpMyAdmin - ChangeLog - bug #4009 Statistic Monitor shows only last 3 digits in graph - bug #3998 Non-permanent SQL history not working - bug #3578 Transformations for text/plain on a BLOB column +- [security] Improved protection against cross framing, see PMASA-2013-10 ++ Reinstated configuration directive: AllowThirdPartyFraming 4.0.4.2 (2013-07-28) - [security] Fix stored XSS in Server status monitor, see PMASA-2013-9 diff --git a/db_import.php b/db_import.php index f8ea8097ac..436136a1f2 100644 --- a/db_import.php +++ b/db_import.php @@ -22,7 +22,7 @@ require 'libraries/db_common.inc.php'; require 'libraries/db_info.inc.php'; $import_type = 'database'; -require 'libraries/display_import.lib.php'; +require 'libraries/display_import.inc.php'; ?> diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index 9630e427e9..f7730601c8 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -4,7 +4,7 @@ /** * functions for displaying server, database and table export * - * @usedby server_export.php and display_export.inc.php + * @usedby display_export.inc.php * * @package PhpMyAdmin */ diff --git a/libraries/display_import.inc.php b/libraries/display_import.inc.php new file mode 100644 index 0000000000..248149e644 --- /dev/null +++ b/libraries/display_import.inc.php @@ -0,0 +1,54 @@ +display(); + exit; +} + +$timeout_passed_str = isset($timeout_passed)? $timeout_passed : null; +$offset_str = isset($offset)? $offset : null; +$html = PMA_getHtmlForImport( + $upload_id, + $import_type, + $db, + $table, + $max_upload_size, + $import_list, + $timeout_passed_str, + $offset_str +); + +$response = PMA_Response::getInstance(); +$response->addHTML($html); + +?> diff --git a/libraries/display_import.lib.php b/libraries/display_import.lib.php index 252d2f6637..77814b80b2 100644 --- a/libraries/display_import.lib.php +++ b/libraries/display_import.lib.php @@ -1,338 +1,583 @@ display(); - exit; -} -?> - - - -
- ajax clock - -
> - - - '."\n"; - ?> - - - -
-

- '; - printf(__('File may be compressed (%s) or uncompressed.'), implode(", ", $compressions)); - echo '
'; - echo __('A compressed file\'s name must end in .[format].[compression]. Example: .sql.zip'); - echo '
'; -}?> - -
- -
    -
  • - - -
  • -
  • - - -
  • -
- display(); -} elseif (!empty($cfg['UploadDir'])) { - echo PMA_Util::getSelectUploadFileBlock($import_list, $cfg['UploadDir']); -} // end if (web-server upload directory) -?> -
- -
- ' . __('Character set of the file:') . ''; - reset($cfg['AvailableCharsets']); - echo '
'; -} else { - echo '' . "\n"; - echo PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_CHARSET, 'charset_of_file', 'charset_of_file', 'utf8', false); -} // end if (recoding) - ?> -
-
-
-

+ $html .= ' '."\n"; - ' . "\n"; - echo ''; - echo sprintf(__('Previous import timed out, after resubmitting will continue from position %d.'), $offset) . ''; - echo '
' . "\n"; + return $html; } - ?> -
- /> -
-
- -
- - -
- - - '; + $html .= ' // ' + . PMA_jsFormat( + __( + 'Please be patient, the file is being uploaded. ' + . 'Details about the upload are not available.' + ), + false + ) . PMA_Util::showDocu('faq', 'faq2-9'); + $html .= " $('#upload_form_status_info').html('" . $image_tag . "');"; + $html .= ' $("#upload_form_status").css("display", "none");'; + } // else + + // onclick + $html .= ' });'; + // domready + $html .= ' });'; + $html .= ' //]]>'; + //with "\n", so that the following lines won't be commented out by //]]> + $html .= "\n"; + $html .= ''; + + return $html; } - ?> - -
-

- -
-
+/** + * Prints Html For Display Export options + * + * @param String $import_type Import type: server, database, table + * @param String $db Selected DB + * @param String $table Selected Table + * + * @return string + */ +function PMA_getHtmlForExportOptions($import_type, $db, $table) +{ + $html = ' '; + + return $html; } -echo "\n"; - ?> -
- -
- - + +/** + * Prints Html For Display Import options : Compressions + * + * @return string + */ +function PMA_getHtmlForImportCompressions() +{ + global $cfg; + $html = ''; + // zip, gzip and bzip2 encode features + $compressions = array(); + + if ($cfg['GZipDump'] && @function_exists('gzopen')) { + $compressions[] = 'gzip'; + } + if ($cfg['BZipDump'] && @function_exists('bzopen')) { + $compressions[] = 'bzip2'; + } + if ($cfg['ZipDump'] && @function_exists('zip_open')) { + $compressions[] = 'zip'; + } + // We don't have show anything about compression, when no supported + if ($compressions != array()) { + $html .= '
'; + $compress_str = sprintf( + __('File may be compressed (%s) or uncompressed.'), + implode(", ", $compressions) + ); + $html .= $compress_str; + $html .= '
'; + $html .= __( + 'A compressed file\'s name must end in .[format].[compression]. ' + . 'Example: .sql.zip' + ); + $html .= '
'; + } + + return $html; +} + +/** + * Prints Html For Display Import charset + * + * @return string + */ +function PMA_getHtmlForImportCharset() +{ + global $cfg; + $html = '
'; + // charset of file + if ($GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE) { + $html .= ''; + reset($cfg['AvailableCharsets']); + $html .= '
'; + } else { + $html .= '' . "\n"; + $html .= PMA_generateCharsetDropdownBox( + PMA_CSDROPDOWN_CHARSET, + 'charset_of_file', + 'charset_of_file', + 'utf8', + false + ); + } // end if (recoding) + + $html .= '
'; + + return $html; +} + +/** + * Prints Html For Display Import options : file property + * + * @param int $max_upload_size Max upload size + * @param Array $import_list import list + * + * @return string + */ +function PMA_getHtmlForImportOptionsFile($max_upload_size, $import_list) +{ + global $cfg; + $html = '
'; + $html .= '

' . __('File to Import:') . '

'; + $html .= PMA_getHtmlForImportCompressions(); + $html .= '
'; + + if ($GLOBALS['is_upload'] && !empty($cfg['UploadDir'])) { + $html .= ' '; + + } elseif ($GLOBALS['is_upload']) { + $uid = uniqid(''); + $html .= PMA_Util::getBrowseUploadFileBlock($max_upload_size); + } elseif (!$GLOBALS['is_upload']) { + $html .= PMA_Message::notice( + __('File uploads are not allowed on this server.') + )->getDisplay(); + } elseif (!empty($cfg['UploadDir'])) { + $html .= PMA_Util::getSelectUploadFileBlock($import_list, $cfg['UploadDir']); + } // end if (web-server upload directory) + + $html .= '
'; + $html .= PMA_getHtmlForImportCharset(); + $html .= '
'; + + return $html; +} + +/** + * Prints Html For Display Import options : Partial Import + * + * @param String $timeout_passed timeout passed + * @param String $offset timeout offset + * + * @return string + */ +function PMA_getHtmlForImportOptionsPartialImport($timeout_passed, $offset) +{ + $html = '
'; + $html .= '

' . __('Partial Import:') . '

'; + + if (isset($timeout_passed) && $timeout_passed) { + $html .= '
' . "\n"; + $html .= ''; + $html .= sprintf( + __( + 'Previous import timed out, after resubmitting ' + . 'will continue from position %d.' + ), + $offset + ); + $html .= '
' . "\n"; + } + + $html .= '
'; + $html .= ' '; + $html .= '
'; + $html .= '
'; + + if (! (isset($timeout_passed) && $timeout_passed)) { + $html .= '
'; + $html .= ' '; + $html .= ' '; + $html .= '
'; + + } else { + // If timeout has passed, + // do not show the Skip dialog to avoid the risk of someone + // entering a value here that would interfere with "skip" + $html .= ' '; + } + + $html .= '
'; + + return $html; +} + +/** + * Prints Html For Display Import options : Format + * + * @param Array $import_list import list + * + * @return string + */ +function PMA_getHtmlForImportOptionsFormat($import_list) +{ + $html = '
'; + $html .= '

' . __('Format:') . '

'; + $html .= PMA_pluginGetChoice('Import', 'format', $import_list); + $html .= '
'; + $html .= '
'; + + $html .= '
'; + $html .= '

' . __('Format-Specific Options:') . '

'; + $html .= '

' + . 'Scroll down to fill in the options for the selected format ' + . 'and ignore the options for other formats.

'; + $html .= PMA_pluginGetOptions('Import', $import_list); + $html .= '
'; + $html .= '
'; + + // Encoding setting form appended by Y.Kawada + if (function_exists('PMA_Kanji_encodingForm')) { + $html .= '
'; + $html .= '

' . __('Encoding Conversion:') . '

'; + $html .= PMA_Kanji_encodingForm(); + $html .= '
'; + + } + $html .= "\n"; + + return $html; +} + +/** + * Prints Html For Display Import options : submit + * + * @return string + */ +function PMA_getHtmlForImportOptionsSubmit() +{ + $html = '
'; + $html .= ' '; + $html .= '
'; + + return $html; +} + +/** + * Prints Html For Display Import + * + * @param int $upload_id The selected upload id + * @param String $import_type Import type: server, database, table + * @param String $db Selected DB + * @param String $table Selected Table + * @param int $max_upload_size Max upload size + * @param Array $import_list Import list + * @param String $timeout_passed Timeout passed + * @param String $offset Timeout offset + * + * @return string + */ +function PMA_getHtmlForImport( + $upload_id, $import_type, $db, $table, + $max_upload_size, $import_list, $timeout_passed, $offset +) { + global $SESSION_KEY; + $html = ''; + $html .= ''; + $html .= ''; + $html .= '
'; + $html .= ' ajax clock'; + + $html .= PMA_getHtmlForImportJS($upload_id); + + $html .= '
'; + + $html .= PMA_getHtmlForHiddenInputs($import_type, $db, $table); + + $html .= PMA_getHtmlForExportOptions($import_type, $db, $table); + + $html .= PMA_getHtmlForImportOptionsFile($max_upload_size, $import_list); + + $html .= PMA_getHtmlForImportOptionsPartialImport($timeout_passed, $offset); + + $html .= PMA_getHtmlForImportOptionsFormat($import_list); + + $html .= PMA_getHtmlForImportOptionsSubmit(); + + $html .= '
'; + $html .= '
'; + + return $html; +} + +/** + * Prints javascript for upload with plugin, upload process bar + * + * @param int $upload_id The selected upload id + * + * @return string + */ +function PMA_getHtmlForImportWithPlugin($upload_id) +{ + //some variable for javasript + $ajax_url = "import_status.php?id=" . $upload_id . "&" + . PMA_generate_common_url(array('import_status'=>1), '&'); + $promot_str = PMA_jsFormat( + __( + 'The file being uploaded is probably larger than ' + . 'the maximum allowed size or this is a known bug in webkit ' + . 'based (Safari, Google Chrome, Arora etc.) browsers.' + ), + false + ); + $statustext_str = PMA_escapeJsString(__('%s of %s')); + $upload_str = PMA_jsFormat(__('Uploading your import file...'), false); + $second_str = PMA_jsFormat(__('%s/sec.'), false); + $remaining_min = PMA_jsFormat(__('About %MIN min. %SEC sec. remaining.'), false); + $remaining_second = PMA_jsFormat(__('About %SEC sec. remaining.'), false); + $processed_str = PMA_jsFormat( + __('The file is being processed, please be patient.'), + false + ); + $import_url = PMA_generate_common_url(array('import_status'=>1), '&'); + + //start output + $html = 'var finished = false; '; + $html .= 'var percent = 0.0; '; + $html .= 'var total = 0; '; + $html .= 'var complete = 0; '; + $html .= 'var original_title = ' + . 'parent && parent.document ? parent.document.title : false; '; + $html .= 'var import_start; '; + + $html .= 'var perform_upload = function () { '; + $html .= 'new $.getJSON( '; + $html .= ' "' . $ajax_url . '", '; + $html .= ' {}, '; + $html .= ' function(response) { '; + $html .= ' finished = response.finished; '; + $html .= ' percent = response.percent; '; + $html .= ' total = response.total; '; + $html .= ' complete = response.complete; '; + + $html .= ' if (total==0 && complete==0 && percent==0) { '; + $img_tag = 'ajax clock ' + . $promot_str . '\'); '; + $html .= ' $("#upload_form_status").css("display", "none"); '; + $html .= ' } else { '; + $html .= ' var now = new Date(); '; + $html .= ' now = Date.UTC( '; + $html .= ' now.getFullYear(), now.getMonth(), now.getDate(), '; + $html .= ' now.getHours(), now.getMinutes(), now.getSeconds()) '; + $html .= ' + now.getMilliseconds() - 1000; '; + $html .= ' var statustext = $.sprintf("' . $statustext_str . '", '; + $html .= ' formatBytes(complete, 1, PMA_messages.strDecimalSeparator), '; + $html .= ' formatBytes(total, 1, PMA_messages.strDecimalSeparator) '; + $html .= ' ); '; + + $html .= ' if ($("#importmain").is(":visible")) { '; + // show progress UI + $html .= ' $("#importmain").hide(); '; + $html .= ' $("#import_form_status") '; + $html .= ' .html(\'
' + . '
' + . '
' + . '
' + . 'ajax clock ' + . $upload_str . '
\') '; + $html .= ' .show(); '; + $html .= ' import_start = now; '; + $html .= ' } '; + $html .= ' else if (percent > 9 || complete > 2000000) { '; + // calculate estimated time + $html .= ' var used_time = now - import_start; '; + $html .= ' var seconds = ' + . 'parseInt(((total - complete) / complete) * used_time / 1000); '; + $html .= ' var speed = $.sprintf("' . $second_str . '"'; + $html .= ' , formatBytes(complete / used_time * 1000, 1,' + . ' PMA_messages.strDecimalSeparator)); '; + + $html .= ' var minutes = parseInt(seconds / 60); '; + $html .= ' seconds %= 60; '; + $html .= ' var estimated_time; '; + $html .= ' if (minutes > 0) { '; + $html .= ' estimated_time = "' . $remaining_min . '"'; + $html .= ' .replace("%MIN", minutes).replace("%SEC", seconds); '; + $html .= ' } '; + $html .= ' else { '; + $html .= ' estimated_time = "' . $remaining_second . '"'; + $html .= ' .replace("%SEC", seconds); '; + $html .= ' } '; + + $html .= ' statustext += "
" + speed + "

" ' + . '+ estimated_time; '; + $html .= ' } '; + + $html .= ' var percent_str = Math.round(percent) + "%"; '; + $html .= ' $("#status").animate({width: percent_str}, 150); '; + $html .= ' $(".percentage").text(percent_str); '; + + // show percent in window title + $html .= ' if (original_title !== false) { '; + $html .= ' parent.document.title = percent_str + " - " + original_title; '; + $html .= ' } '; + $html .= ' else { '; + $html .= ' document.title = percent_str + " - " + original_title; '; + $html .= ' } '; + $html .= ' $("#statustext").html(statustext); '; + $html .= ' } '; + + $html .= ' if (finished == true) { '; + $html .= ' if (original_title !== false) { '; + $html .= ' parent.document.title = original_title; '; + $html .= ' } '; + $html .= ' else { '; + $html .= ' document.title = original_title; '; + $html .= ' } '; + $html .= ' $("#importmain").hide(); '; + // loads the message, either success or mysql error + $html .= ' $("#import_form_status") '; + $html .= ' .html(\'ajax clock ' + . $processed_str . '\')'; + $html .= ' .show(); '; + $html .= ' $("#import_form_status").load("import_status.php?' + . 'message=true&' . $import_url . '"); '; + $html .= ' PMA_reloadNavigation(); '; + + // if finished + $html .= ' } '; + $html .= ' else { '; + $html .= ' setTimeout(perform_upload, 1000); '; + $html .= ' } '; + $html .= '}); '; + $html .= '}; '; + $html .= 'setTimeout(perform_upload, 1000); '; + + return $html; +} + +?> diff --git a/libraries/import.lib.php b/libraries/import.lib.php index fa80b5bdd1..72657b17db 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -139,6 +139,9 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false, } $sql_query = $import_run_buffer['sql']; $sql_data['valid_sql'][] = $import_run_buffer['sql']; + if(! isset($sql_data['valid_queries'])) { + $sql_data['valid_queries'] = 0; + } $sql_data['valid_queries']++; // If a 'USE ' SQL-clause was found, @@ -189,6 +192,9 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false, if (($a_num_rows > 0) || $is_use_query) { $sql_data['valid_sql'][] = $import_run_buffer['sql']; + if(! isset($sql_data['valid_queries'])) { + $sql_data['valid_queries'] = 0; + } $sql_data['valid_queries']++; } diff --git a/po/af.po b/po/af.po index 76333c1819..587fee0412 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-02-13 18:58+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Afrikaans \n" "Language-Team: Arabic \n" "Language-Team: Azerbaijani \n" "Language-Team: Belarusian \n" "Language-Team: Belarusian (latin) \n" "Language-Team: Bulgarian " msgstr "" "Съхраняване на полета от вида TIMESTAMP в UTC формат(позволява полетата " -"TIMESTAMP да бъдат експортирани и четени от сървъри в различни часови " -"пояси)" +"TIMESTAMP да бъдат експортирани и четени от сървъри в различни часови пояси)" +"" #: libraries/plugins/export/ExportSql.class.php:1210 msgid "Constraints for dumped tables" @@ -8564,10 +8562,10 @@ msgstr "" "Text_Plain_External.class.php и да изредите програмите, на които позволявате " "да бъдат стартирани. Първата опция тогава е номера на програмата, която " "бихте искали да използвате, а втората са параметрите ѝ. Ако третият " -"параметър е установен на 1, ще конвертира изхода използвайки " -"htmlspecialchars() (По подразбиране е 1). Ако четвъртият параметър е " -"установен на 1 това ще предотврати спренос на нов ред и целият изход ще бъде " -"показан на един ред (По подразбиране е 1)." +"параметър е установен на 1, ще конвертира изхода използвайки htmlspecialchars" +"() (По подразбиране е 1). Ако четвъртият параметър е установен на 1 това ще " +"предотврати спренос на нов ред и целият изход ще бъде показан на един ред " +"(По подразбиране е 1)." #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -10188,21 +10186,21 @@ msgstr "Потребители" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Версия на сървъра" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "БД сървър" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Коментари към таблицата" #: libraries/server_privileges.lib.php:3260 @@ -12337,8 +12335,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/bn.po b/po/bn.po index 2cf9c069ee..eff058686c 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-10 16:11+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali (This might be a good way to import large " "files, however it can break transactions.)" msgstr "" -"পিএইছপি নির্ধারিত শেষ হওয়ার সময়ের কাছাকাছি এলে আমদানি বন্ধ করার অনুমোদন। " -"(এটা অনেক বড় ফাইল আমদানীর একটি ভাল উপায়, যদিও এটা কাজ বন্ধ করে দিতে " -"পারে।) " +"পিএইছপি নির্ধারিত শেষ হওয়ার সময়ের কাছাকাছি এলে আমদানি বন্ধ করার অনুমোদন। " +"(এটা অনেক বড় ফাইল আমদানীর একটি ভাল উপায়, যদিও এটা কাজ বন্ধ করে দিতে পারে।) " #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -8329,8 +8328,8 @@ msgid "" "(1,2,3)" msgstr "" "প্রতিটি INSERT এর সাথে স্তম্ভের নাম সংযুক্ত কর
   " -"  উদাহরণ: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " -"(1,2,3) " +"  উদাহরণ: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" +" " #: libraries/plugins/export/ExportSql.class.php:370 msgid "" @@ -10209,21 +10208,21 @@ msgstr "ব্যবহারকারী" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Server version" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "ডাটাবেইজ সার্ভার" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "টেবলের মন্তব্য" #: libraries/server_privileges.lib.php:3260 @@ -12215,8 +12214,8 @@ msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" -"আপনি নিরাপদ সংযোগ ব্যবহার করছেন না; সমস্ত তথ্য (গুরুত্বপূর্ণ তথ্য, যেমন " -"পাসওয়ার্ড)আনএনক্রিপটেড স্থানান্তর করা হবে। " +"আপনি নিরাপদ সংযোগ ব্যবহার করছেন না; সমস্ত তথ্য (গুরুত্বপূর্ণ তথ্য, যেমন পাসওয়ার্ড)" +"আনএনক্রিপটেড স্থানান্তর করা হবে। " #: setup/frames/index.inc.php:64 #, php-format @@ -12224,8 +12223,8 @@ msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." msgstr "" -"আপনার সার্ভার যদি HTTPS সংযোগের জন্য কনফিগারড হয় তবে নিরাপদ সংযোগের জন্য [a@" -"%s]this link[/a] ব্যবহার করেন।" +"আপনার সার্ভার যদি HTTPS সংযোগের জন্য কনফিগারড হয় তবে নিরাপদ সংযোগের জন্য [a@%s]" +"this link[/a] ব্যবহার করেন।" #: setup/frames/index.inc.php:68 msgid "Insecure connection" @@ -12453,8 +12452,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "আপনি প্রমাণী করনের ধরন [kbd]config[/kbd] নির্ধারণ করেছেন এবং ব্যহবারকারীর নাম ও " "পাসওর্য়াড দিয়েছেন স্বয়ংক্রীয় লগইনের জন্য, যা একটি কার্যকর হোস্টের জন্য গ্রহনযোগ্য নয়। " diff --git a/po/br.po b/po/br.po index eb08222246..a708472cb4 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 11:11+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton \n" "Language-Team: Bosnian \n" "Language-Team: Catalan (if this is " "unchecked, the first line will become part of the data)
" msgstr "" -"La primera línia de l'arxiu conté els noms de les columnes de la taula " -"(si no es marca això, la primera línia formarà part de les dades)" +"La primera línia de l'arxiu conté els noms de les columnes de la taula " +"(si no es marca això, la primera línia formarà part de les dades)" #: libraries/plugins/import/ImportCsv.class.php:72 msgid "" @@ -10489,21 +10488,21 @@ msgstr "Usuaris" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Versió del servidor" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Servidor de base de dades" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Comentaris de la taula" #: libraries/server_privileges.lib.php:3260 @@ -12585,9 +12584,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Si us plau, crea una carpeta modificable pel servidor web [em]config[/em] al " -"directori principal de phpMyAdmin tal com s'explica a la " -"[doc@setup_script]documentació[/doc]. En cas contrari només podràs " -"descarregar o mostrar." +"directori principal de phpMyAdmin tal com s'explica a la [doc@setup_script]" +"documentació[/doc]. En cas contrari només podràs descarregar o mostrar." #: setup/frames/index.inc.php:60 msgid "" @@ -12844,8 +12842,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " @@ -14883,9 +14881,9 @@ msgstr "{concurrent_insert} està establert a 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Quan s'estableix aixó a [kbd]anidat[/kbd], el àlies del nom de la taula " #~ "només es fa servir per a separar/anidar les taules segons la directiva " diff --git a/po/ckb.po b/po/ckb.po index e6ba1da13a..f3315e6541 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-18 14:40+0200\n" "Last-Translator: Ballen Abdulkarim \n" "Language-Team: Kurdish Sorani \n" "Language-Team: Czech \n" @@ -3913,8 +3913,8 @@ msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -"V konfiguračním souboru musí být nastaven parametr " -"[code]$cfg['PmaAbsoluteUri'][/code]!" +"V konfiguračním souboru musí být nastaven parametr [code]$cfg" +"['PmaAbsoluteUri'][/code]!" #: libraries/common.inc.php:630 #, php-format @@ -4235,8 +4235,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Tajné heslo používané pro šifrování cookies při přihlašování pomocí " -"[kbd]cookie[/kbd]" +"Tajné heslo používané pro šifrování cookies při přihlašování pomocí [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:23 msgid "Blowfish secret" @@ -4277,8 +4277,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Definuje, který typ ovládacích prvků má být použit při úpravách polí typu " -"CHAR a VARCHAR; [kbd]input[/kbd] - umožňuje omezit délku vstupu, " -"[kbd]textarea[/kbd] - umožní použít odřádkování" +"CHAR a VARCHAR; [kbd]input[/kbd] - umožňuje omezit délku vstupu, [kbd]" +"textarea[/kbd] - umožní použít odřádkování" #: libraries/config/messages.inc.php:31 msgid "CHAR columns editing" @@ -4286,8 +4286,8 @@ msgstr "Úprava polí typu CHAR" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Použít uživatelsky přívětivý editor pro úpravu SQL dotazů ([a@http://" "codemirror.net/]CodeMirror[/a]) se zvýrazněním syntaxe a čísly řádek" @@ -4821,9 +4821,8 @@ msgstr "Jména stránek" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Zadejte titulek který zobrazí prohlížeč. V [doc@cfg_TitleTable]dokumentaci[/" "doc] naleznete jaké proměnné můžete použít." @@ -5625,8 +5624,8 @@ msgstr "Tabulka záložek" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Nechte prázdné pro žádné komentáře či mime typy polí, výchozí nastavení: " "[kbd]pma__column_info[/kbd]" @@ -5697,8 +5696,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Nechte prázdné pro vypnutí návrháře, výchozí nastavení: " -"[kbd]pma__designer_coords[/kbd]" +"Nechte prázdné pro vypnutí návrháře, výchozí nastavení: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:396 msgid "Designer table" @@ -5801,8 +5800,8 @@ msgstr "Heslo pro přihlašování config" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: " -"[kbd]pma__table_pages[/kbd]" +"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" +"pma__table_pages[/kbd]" #: libraries/config/messages.inc.php:417 msgid "PDF schema: pages table" @@ -5816,8 +5815,8 @@ msgid "" msgstr "" "Databáze používaná pro relace, záložky a PDF stránky. Více informací " "naleznete na [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Pokud " -"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: " -"[kbd]phpmyadmin[/kbd]" +"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Database name" @@ -5846,8 +5845,8 @@ msgstr "Naposledy použité tabulky" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/" "relation]relace[/a], výchozí nastavení: [kbd]pma__relation[/kbd]" @@ -5866,11 +5865,11 @@ msgstr "Příkaz SHOW DATABASES" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/" -"auth_types#signon]authentication types[/a]" +"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"authentication types[/a]" #: libraries/config/messages.inc.php:429 msgid "Signon session name" @@ -5902,8 +5901,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: " -"[kbd]pma__table_coords[/kbd]" +"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:436 msgid "PDF schema: table coordinates" @@ -5979,8 +5978,8 @@ msgstr "Sledované příkazy" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, výchozí " "nastavení: [kbd]pma__tracking[/kbd]" @@ -6002,8 +6001,8 @@ msgstr "Automaticky vytvářet verze" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, " "výchozí nastavení: [kbd]pma__userconfig[/kbd]" @@ -6014,8 +6013,8 @@ msgstr "Tabulka pro uživatelská nastavení" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro nastavitelné menu, výchozí nastavení: " "[kbd]pma__users[/kbd]" @@ -6026,8 +6025,8 @@ msgstr "Tabulka uživatelů" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro nastavitelné menu, výchozí nastavení: " "[kbd]pma__usergroups[/kbd]" @@ -6164,8 +6163,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:485 msgid "Show phpinfo() link" @@ -6244,8 +6243,8 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije " -"[kbd]anonymous[/kbd])" +"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]" +"anonymous[/kbd])" #: libraries/config/messages.inc.php:506 tbl_tracking.php:559 #: tbl_tracking.php:621 @@ -10170,17 +10169,23 @@ msgstr "Skupiny" #: libraries/server_privileges.lib.php:3236 #: libraries/server_privileges.lib.php:3402 -msgid "Server level tabs" +#, fuzzy +#| msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Záložky pro práci se serverem" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 -msgid "Database level tabs" +#, fuzzy +#| msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Záložky pro práci s databází" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 -msgid "Table level tabs" +#, fuzzy +#| msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Záložky pro práci s tabulkou" #: libraries/server_privileges.lib.php:3260 @@ -12165,9 +12170,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Prosím, vytvořte adresář [em]config[/em] zapisovatelný pro web server v " -"kořenovém adresáři phpMyAdmina, jak je popsáno v " -"[doc@setup_script]dokumentaci[/doc]. Jinak budete moci nastavení pouze " -"stáhnout nebo zobrazit." +"kořenovém adresáři phpMyAdmina, jak je popsáno v [doc@setup_script]" +"dokumentaci[/doc]. Jinak budete moci nastavení pouze stáhnout nebo zobrazit." #: setup/frames/index.inc.php:60 msgid "" @@ -12309,8 +12313,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)" -"[br]Poslední stabilní verze je %s a byla vydána %s." +"Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)[br]" +"Poslední stabilní verze je %s a byla vydána %s." #: setup/lib/index.lib.php:170 msgid "No newer stable version is available" @@ -12423,8 +12427,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Nastavil jste typ přihlašování [kbd]config[/kbd] a zadal jste uživatelské " "jméno a heslo pro automatické přihlášení, což není doporučená volba pro " @@ -14381,9 +14385,9 @@ msgstr "concurrent_insert je nastaveno na 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Při nastavení na [kbd]nested[/kbd], bude komentář použit pro zanoření a " #~ "rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář " diff --git a/po/cy.po b/po/cy.po index e1f40be392..9a0ee22ec2 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-05-07 17:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" @@ -4516,8 +4516,8 @@ msgstr "" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -5087,9 +5087,8 @@ msgstr "Enw'r dudalen" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5861,8 +5860,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -6070,8 +6069,8 @@ msgstr "Dadansoddi tabl" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6088,8 +6087,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -6186,8 +6185,8 @@ msgstr "Datganiadau i'w tracio" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6206,8 +6205,8 @@ msgstr "" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -6216,8 +6215,8 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:456 @@ -6228,8 +6227,8 @@ msgstr "Defnyddiwch Dablau" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" #: libraries/config/messages.inc.php:458 @@ -6360,8 +6359,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:485 msgid "Show phpinfo() link" @@ -10453,21 +10452,21 @@ msgstr "Defnyddiwr" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Fersiwn y gweinydd" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Databases" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Cronfeydd Data" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Sylwadau tabl" #: libraries/server_privileges.lib.php:3260 @@ -12630,8 +12629,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/da.po b/po/da.po index 813e411253..67dbd88666 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-06-29 18:06+0200\n" "Last-Translator: Aputsiaq Niels Janussen \n" "Language-Team: Danish \n" "Language-Team: German .[format].[compression]. " "Example: .sql.zip" msgstr "" -"Der Dateiname einer komprimierten Datei muss mit .[Format]." -"[Komprimierung] enden. Beispiel: .sql.zip" +"Der Dateiname einer komprimierten Datei muss mit .[Format].[Komprimierung]" +" enden. Beispiel: .sql.zip" #: libraries/display_import.lib.php:245 msgid "File uploads are not allowed on this server." @@ -7088,8 +7086,8 @@ msgid "" "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" msgstr "" -"Import abbrechen, wenn die maximale PHP-Scriptlaufzeit erreicht wird. " -"(Damit ist es möglich, große Dateien zu importieren, allerdings kann es " +"Import abbrechen, wenn die maximale PHP-Scriptlaufzeit erreicht wird. " +"(Damit ist es möglich, große Dateien zu importieren, allerdings kann es " "Transaktionen zerstören.)" #: libraries/display_import.lib.php:296 @@ -8654,8 +8652,8 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" "TIMESTAMP-Spalten als UTC exportieren (damit können TIMESTAMP-Spalten ex- " -"und importiert werden, auch wenn die Server in verschiedenen Zeitzonen " -"sind)" +"und importiert werden, auch wenn die Server in verschiedenen Zeitzonen sind)" +"" #: libraries/plugins/export/ExportSql.class.php:1210 msgid "Constraints for dumped tables" @@ -10565,21 +10563,21 @@ msgstr "Benutzer" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Server Version" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Datenbank-Server" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Tabellen-Kommentar" #: libraries/server_privileges.lib.php:3260 @@ -11656,8 +11654,8 @@ msgid "" msgstr "" "Wie oft eine Tabellensperre nicht sofort erlangt werden konnte und gewartet " "werden musste. Wenn dieser Wert hoch ist und Sie Performance-Probleme haben, " -"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre " -"Tabelle(n) zerteilen oder Replikation benutzen." +"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" +"(n) zerteilen oder Replikation benutzen." #: libraries/server_status_variables.lib.php:733 msgid "" @@ -12691,9 +12689,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Bitte erstellen Sie einen vom Webserver beschreibbaren Ordner [em]config[/" -"em] im phpMyAdmin-Hauptverzeichnis wie in der " -"[doc@setup_script]Dokumentation[/doc] beschrieben. Ansonsten können Sie die " -"Konfiguration nur herunterladen bzw. anzeigen." +"em] im phpMyAdmin-Hauptverzeichnis wie in der [doc@setup_script]Dokumentation" +"[/doc] beschrieben. Ansonsten können Sie die Konfiguration nur herunterladen " +"bzw. anzeigen." #: setup/frames/index.inc.php:60 msgid "" @@ -12954,8 +12952,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " @@ -14996,15 +14994,14 @@ msgstr "concurrent_insert ist auf 0 gesetzt" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Wird dies auf [kbd]nested[/kbd] gesetzt, so wird der Alias des " -#~ "Tabellennamens nur benutzt, um die Tabellen gemäß der " -#~ "$cfg['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu " -#~ "verschachteln. Nur der Ordner erhält den Alias, der Tabellename bleibt " -#~ "unverändert" +#~ "Tabellennamens nur benutzt, um die Tabellen gemäß der $cfg" +#~ "['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. " +#~ "Nur der Ordner erhält den Alias, der Tabellename bleibt unverändert" #~ msgid "Display table comment instead of its name" #~ msgstr "Zeige Tabellen-Kommentar anstelle des Namens" diff --git a/po/el.po b/po/el.po index b6c0b66e05..80976ef950 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 07:46+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: Greek \n" @@ -4348,8 +4348,8 @@ msgstr "Επεξεργασία στηλών CHAR" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Χρησιμοποιήστε το φιλικό προς το χρήστη πρόγραμμα επεξεργασίας για την " "επεξεργασία ερωτημάτων SQL ([a@http://codemirror.net/]CodeMirror[/a]) με " @@ -4886,9 +4886,8 @@ msgstr "Τίτλοι σελίδας" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Ορίστε το κείμενο του τίτλου στο φυλλομετρητή σας. Δείτε την " "[doc@cfg_TitleTable]τεκμηρίωση[/doc] για μαγικά κείμενα που μπορούν να " @@ -5015,9 +5014,9 @@ msgid "" msgstr "" "Αν θέλετε να χρησιμοποιήσετε την υπηρεσία Εγκυροποίησης SQL, πρέπει να " "γνωρίζετε ότι [strong]όλες οι δηλώσεις SQL αποθηκεύονται ανώνυμα για " -"στατιστικούς λόγους[/strong].[br][em][a@http://sqlvalidator.mimer." -"com/]Εγκυροποιητής SQL Mimer[/a], Πνευματικά Δικαιώματα 2002 Upright " -"Database Technology. Με επιφύλαξη παντός δικαιώματος.[/em]" +"στατιστικούς λόγους[/strong].[br][em][a@http://sqlvalidator.mimer.com/]" +"Εγκυροποιητής SQL Mimer[/a], Πνευματικά Δικαιώματα 2002 Upright Database " +"Technology. Με επιφύλαξη παντός δικαιώματος.[/em]" #: libraries/config/messages.inc.php:222 msgid "Startup" @@ -5330,8 +5329,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. " -"[kbd]32M[/kbd] ([kbd]0[/kbd] για απεριόριστη)" +"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. [kbd]32M" +"[/kbd] ([kbd]0[/kbd] για απεριόριστη)" #: libraries/config/messages.inc.php:298 msgid "Memory limit" @@ -5714,8 +5713,8 @@ msgstr "Πίνακας σελιδοδεικτών" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, προτείνεται: " "[kbd]pma_column_info[/kbd]" @@ -5790,8 +5789,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή, προτείνεται: " -"[kbd]pma_designer_coords[/kbd]" +"Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή, προτείνεται: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:396 msgid "Designer table" @@ -5832,8 +5831,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: " -"[kbd]pma_history[/kbd]" +"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:404 msgid "SQL query history table" @@ -5897,8 +5896,8 @@ msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: " -"[kbd]pma__pdf_pages[/kbd]" +"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:417 msgid "PDF schema: pages table" @@ -5942,8 +5941,8 @@ msgstr "Πρόσφατα χρησιμοποιημένος πίνακας" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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]" @@ -5962,8 +5961,8 @@ msgstr "Εντολή SHOW DATABASES" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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] για ένα παράδειγμα" @@ -5999,8 +5998,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: " -"[kbd]pma__table_coords[/kbd]" +"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:436 msgid "PDF schema: table coordinates" @@ -6078,8 +6077,8 @@ msgstr "Δηλώσεις προς παρακολούθηση" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma__tracking[/kbd]" @@ -6102,11 +6101,11 @@ msgstr "Αυτόματη δημιουργία εκδόσεων" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: " -"[kbd]pma__userconfig[/kbd]" +"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:454 msgid "User preferences storage table" @@ -6115,14 +6114,14 @@ msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστ #: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" -"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: " -"[kbd]pma__userconfig[/kbd]" +"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:456 #, fuzzy @@ -6133,14 +6132,14 @@ msgstr "Χρήση Πινάκων" #: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" -"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: " -"[kbd]pma__userconfig[/kbd]" +"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:458 #, fuzzy @@ -6151,14 +6150,14 @@ msgstr "Χρήση Οικείου Πίνακα" #: libraries/config/messages.inc.php:459 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]" msgstr "" -"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: " -"[kbd]pma__userconfig[/kbd]" +"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:460 msgid "Hidden navigation items table" @@ -6369,8 +6368,8 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:" -"[kbd]anonymous[/kbd])" +"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]" +"anonymous[/kbd])" #: libraries/config/messages.inc.php:506 tbl_tracking.php:559 #: tbl_tracking.php:621 @@ -6538,8 +6537,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής" +"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]" +"ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής" #: libraries/config/messages.inc.php:540 msgid "ZIP" @@ -10381,21 +10380,21 @@ msgstr "Χρήστες" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Έκδοση διακομιστή" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Διακομιστής βάσης δεδομένων" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Σχόλια πίνακα" #: libraries/server_privileges.lib.php:3260 @@ -12457,9 +12456,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Δημιουργήστε εγγράψιμο φάκελο διακομιστή ιστού [em]config[/em] στο φάκελο " -"μέγιστου επιπέδου phpMyAdmin όπως περιγράφετε στην " -"[doc@setup_script]τεκμηρίωση[/doc]. Διαφορετικά, θα μπορείτε μόνο να τον " -"λάβετε ή να τον προβάλετε." +"μέγιστου επιπέδου phpMyAdmin όπως περιγράφετε στην [doc@setup_script]" +"τεκμηρίωση[/doc]. Διαφορετικά, θα μπορείτε μόνο να τον λάβετε ή να τον " +"προβάλετε." #: setup/frames/index.inc.php:60 msgid "" @@ -12476,8 +12475,8 @@ msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." msgstr "" -"Αν ο διακομιστής σας έχει ρυθμιστεί να δέχεται αιτήσεις HTTPS πατήστε [a@" -"%s]αυτόν τον σύνδεσμο[/a] για χρήση ασφαλούς σύνδεσης." +"Αν ο διακομιστής σας έχει ρυθμιστεί να δέχεται αιτήσεις HTTPS πατήστε [a@%s]" +"αυτόν τον σύνδεσμο[/a] για χρήση ασφαλούς σύνδεσης." #: setup/frames/index.inc.php:68 msgid "Insecure connection" @@ -12717,14 +12716,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Ορίζετε τον τύπο πιστοποίησης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα " "χρήστη και κωδικό πρόσβασης για αυτόματη σύνδεση, αν και δεν προτείνεται. " "Όποιος γνωρίζει ή υποθέτει τη διεύθυνση URL του phpMyAdmin μπορεί να έχει " -"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή " -"[kbd]http[/kbd]." +"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή [kbd]" +"http[/kbd]." #: setup/lib/index.lib.php:236 #, php-format @@ -14771,9 +14770,9 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Όταν οριστεί αυτό σε [kbd]nested[/kbd], η ετικέτα του ονόματος του πίνακα " #~ "χρησιμοποιείτε μόνο για το χώρισμα/μάζεμα των πινάκων σύμφωνα με την " diff --git a/po/en_GB.po b/po/en_GB.po index ff42a83231..6c663507f2 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-05-31 14:26+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: English (United Kingdom) (if this is " "unchecked, the first line will become part of the data)" msgstr "" -"La primer línea del archivo contiene los nombres de columna de la tabla " -"(si no está activado la primera línea será parte de los datos)" +"La primer línea del archivo contiene los nombres de columna de la tabla " +"(si no está activado la primera línea será parte de los datos)" #: libraries/plugins/import/ImportCsv.class.php:72 msgid "" @@ -8641,8 +8640,8 @@ msgstr "El formato de los datos mediawiki no es válido en la línea:
%s." #: libraries/plugins/import/ImportOds.class.php:88 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -"Importar porcentakes como decimales propios (por ejemplo: 12.00% " -"como .12)" +"Importar porcentakes como decimales propios (por ejemplo: 12.00% como .12)" +"" #: libraries/plugins/import/ImportOds.class.php:94 msgid "Import currencies (ex. $5.00 to 5.00)" @@ -8732,8 +8731,8 @@ msgstr "" "opción es para especificar un formato de fecha/hora diferente. La tercera " "opción determina si usted quiere ver la fecha local o la UTC (use las " "cadenas \"local\" o \"utc\"). Según eso, el formato de la fecha tendrá un " -"valor diferente - para \"local\" mire la documentación de la función " -"strftime() de PHP y para \"utc\" se hace usando la función gmdate()." +"valor diferente - para \"local\" mire la documentación de la función strftime" +"() de PHP y para \"utc\" se hace usando la función gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -8777,9 +8776,8 @@ msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." msgstr "" -"Miestra el contenido de la columna como es, sin pasarlo por " -"htmlspecialchars(). Esto quiere decir que se asume que la columna contiene " -"HTML válido." +"Miestra el contenido de la columna como es, sin pasarlo por htmlspecialchars" +"(). Esto quiere decir que se asume que la columna contiene HTML válido." #: libraries/plugins/transformations/abstract/HexTransformationsPlugin.class.php:31 msgid "" @@ -10412,19 +10410,19 @@ msgstr "Groupos de usuario" #: libraries/server_privileges.lib.php:3236 #: libraries/server_privileges.lib.php:3402 #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Pestañas a nivel servidor" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Pestañas a nivel base de datos" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Pestañas a nivel tabla" #: libraries/server_privileges.lib.php:3260 @@ -12741,15 +12739,15 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Usted definió el tipo de autenticación [kbd]config[/kbd] e incluyó nombre de " "usuario y contraseña para iniciar sesión en forma automática, lo que no es " "una opción deseable para servidores públicos. Cualquiera que conozca o " "adivine su URL de phpMyAdmin puede acceder directamente a su consola de " -"phpMyAdmin. Cambie al %stipo de autenticación%s a [kbd]cookie[/kbd] o " -"[kbd]http[/kbd]." +"phpMyAdmin. Cambie al %stipo de autenticación%s a [kbd]cookie[/kbd] o [kbd]" +"http[/kbd]." #: setup/lib/index.lib.php:236 #, php-format diff --git a/po/et.po b/po/et.po index de681cedd5..9cf491f6aa 100644 --- a/po/et.po +++ b/po/et.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-29 16:09+0200\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian " -"\n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1927,7 +1927,6 @@ msgid "Hide Panel" msgstr "Peida paneel" #: js/messages.php:369 -#| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items" msgstr "Kuva peidetud navigeerimispaneeli elemendid" @@ -2645,13 +2644,11 @@ msgstr "" #: libraries/DisplayResults.class.php:4921 #, php-format -#| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Kuvatakse read %1s - %2s" #: libraries/DisplayResults.class.php:4933 #, php-format -#| msgid "total" msgid "%d total" msgstr "kokku: %d" @@ -4287,8 +4284,8 @@ msgstr "CHAR veergude muutmine" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Kasuta SQL päringute ([a@http://codemirror.net/]CodeMirror[/a]) muutmiseks " "kasutajasõbralikku redigeerijat, millel on süntaksi esiletõstmise ja ridade " @@ -4683,8 +4680,8 @@ msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -"Vali sorteerimise järjekord võõrvõtme rippmenüü kasti üksustele. " -"[kbd]content[/kbd] on viidatud andmed, [kbd]id[/kbd] on võtme väärtus" +"Vali sorteerimise järjekord võõrvõtme rippmenüü kasti üksustele. [kbd]content" +"[/kbd] on viidatud andmed, [kbd]id[/kbd] on võtme väärtus" #: libraries/config/messages.inc.php:151 msgid "Foreign key dropdown order" @@ -4824,13 +4821,12 @@ msgstr "Lehe pealkirjad" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Täpsusta veebilehitseja pealkirja. Vaata " -"[doc@cfg_TitleTable]dokumentatsioonist[/doc], kuidas kasutada maagilisi " -"sõne, mida saab kasutada eriliste väärtuste saamiseks." +"Täpsusta veebilehitseja pealkirja. Vaata [doc@cfg_TitleTable]" +"dokumentatsioonist[/doc], kuidas kasutada maagilisi sõne, mida saab kasutada " +"eriliste väärtuste saamiseks." #: libraries/config/messages.inc.php:194 #: libraries/navigation/NavigationHeader.class.php:209 @@ -4951,9 +4947,9 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Kui soovid kasutada SQL valideerija teenust, siis peaksid teadma, et " -"[strong]kõiki SQL käskusid salvestatakse anonüümselt statistika eesmärgil[/" -"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " +"Kui soovid kasutada SQL valideerija teenust, siis peaksid teadma, et [strong]" +"kõiki SQL käskusid salvestatakse anonüümselt statistika eesmärgil[/strong]." +"[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Autoriõigus 2002 Upright Database Technology. Kõik õigused on kaitstud.[/em]" #: libraries/config/messages.inc.php:222 @@ -5622,8 +5618,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]järjehoidja[/a] tugi, soovitatav: [kbd]pma__bookmark[/kbd]" +"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"järjehoidja[/a] tugi, soovitatav: [kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:381 msgid "Bookmark table" @@ -5631,11 +5627,11 @@ msgstr "Järjehoidja tabel" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: " -"[kbd]pma__column_info[/kbd]" +"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:383 msgid "Column information table" @@ -5704,8 +5700,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Jäta tühjaks, kui puudub kujundaja tugi, soovitatav: " -"[kbd]pma__designer_coords[/kbd]" +"Jäta tühjaks, kui puudub kujundaja tugi, soovitatav: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:396 msgid "Designer table" @@ -5716,9 +5712,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/" -"a]" +"Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:398 msgid "Disable use of INFORMATION_SCHEMA" @@ -5746,8 +5741,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: " -"[kbd]pma__history[/kbd]" +"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:404 msgid "SQL query history table" @@ -5826,8 +5821,8 @@ msgid "" msgstr "" "Andmebaas, mida kasutada seoste, järjehoidjate ja PDF võimaluste " "säilitamiseks. Lisateavet leiad aadressilt [a@http://wiki.phpmyadmin.net/pma/" -"pmadb]pmadb[/a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: " -"[kbd]phpmyadmin[/kbd]" +"pmadb]pmadb[/a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Database name" @@ -5857,8 +5852,8 @@ msgstr "Hiljuti kasutatud tabel" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/relation]seoste " "linkide[/a] tugi, soovitatav: [kbd]pma__relation[/kbd]" @@ -5877,11 +5872,11 @@ msgstr "SHOW DATABASES käsk" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/" -"auth_types#signon]autentimise tüüpe[/a]" +"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"autentimise tüüpe[/a]" #: libraries/config/messages.inc.php:429 msgid "Signon session name" @@ -5914,8 +5909,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: " -"[kbd]pma__table_coords[/kbd]" +"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: [kbd]pma__table_coords" +"[/kbd]" #: libraries/config/messages.inc.php:436 msgid "PDF schema: table coordinates" @@ -5991,11 +5986,11 @@ msgstr "Käsud, mida jälgida" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: " -"[kbd]pma__tracking[/kbd]" +"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:450 msgid "SQL query tracking table" @@ -6015,52 +6010,41 @@ msgstr "Loo versioonid automaatselt" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: " -"[kbd]pma__userconfig[/kbd]" +"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:454 msgid "User preferences storage table" msgstr "Kasutaja eelistusi säilitav tabel" #: libraries/config/messages.inc.php:455 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" -"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: " -"[kbd]pma__users[/kbd]" +"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: [kbd]" +"pma__users[/kbd]" #: libraries/config/messages.inc.php:456 -#| msgid "Use Tables" msgid "Users table" msgstr "Kasutajate tabel" #: libraries/config/messages.inc.php:457 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" -"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: " -"[kbd]pma__usergroups[/kbd]" +"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: [kbd]" +"pma__usergroups[/kbd]" #: libraries/config/messages.inc.php:458 -#| msgid "Use Host Table" msgid "User groups table" msgstr "Kasutajagruppide tabel" #: libraries/config/messages.inc.php:459 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]" @@ -6262,8 +6246,8 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on " -"[kbd]anonymous[/kbd])" +"Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on [kbd]" +"anonymous[/kbd])" #: libraries/config/messages.inc.php:506 tbl_tracking.php:559 #: tbl_tracking.php:621 @@ -7606,27 +7590,22 @@ msgid "An error has occured while loading the navigation tree" msgstr "Navigeerimispuu laadimisel juhtus viga" #: libraries/navigation/Navigation.class.php:172 -#| msgid "Events" msgid "Events:" msgstr "Sündmused:" #: libraries/navigation/Navigation.class.php:173 -#| msgid "Functions" msgid "Functions:" msgstr "Funktsioonid:" #: libraries/navigation/Navigation.class.php:174 -#| msgid "Procedures" msgid "Procedures:" msgstr "Toimingud:" #: libraries/navigation/Navigation.class.php:175 -#| msgid "Tables" msgid "Tables:" msgstr "Tabelid:" #: libraries/navigation/Navigation.class.php:176 -#| msgid "Views" msgid "Views:" msgstr "Vaated:" @@ -8715,12 +8694,10 @@ msgid "User preferences" msgstr "Kasutaja eelistused" #: libraries/relation.lib.php:264 -#| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Seadistatavad menüüd" #: libraries/relation.lib.php:275 -#| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Peida/kuva navigeerimiselemendid" @@ -10103,7 +10080,6 @@ msgid "Add privileges on the following table:" msgstr "Lisa õigusi järgnevas tabelis:" #: libraries/server_privileges.lib.php:2599 -#| msgid "Edit server" msgid "Edit user group" msgstr "Muuda kasutaja grupp" @@ -10177,36 +10153,36 @@ msgstr "Valitud gruppi ei kuulu mitte ühtegi kasutajat." #: libraries/server_privileges.lib.php:3229 #: libraries/server_privileges.lib.php:3878 -#| msgid "Users" msgid "User groups" msgstr "Kasutajate grupid" #: libraries/server_privileges.lib.php:3236 #: libraries/server_privileges.lib.php:3402 -#| msgid "Server version" -msgid "Server level tabs" +#, fuzzy +#| msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Serveri tasemete sakid" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 -#| msgid "Database server" -msgid "Database level tabs" +#, fuzzy +#| msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Andmebaasi tasemete sakid" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 -#| msgid "Table comments" -msgid "Table level tabs" +#, fuzzy +#| msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Tabeli tasemete sakid" #: libraries/server_privileges.lib.php:3260 -#| msgid "Views" msgid "View users" msgstr "Kuva kasutajad" #: libraries/server_privileges.lib.php:3288 #: libraries/server_privileges.lib.php:3344 -#| msgid "Add user" msgid "Add user group" msgstr "Lisa kasutajate grupp" @@ -10216,12 +10192,10 @@ msgid "Edit user group: '%s'" msgstr "Muuda kasutajate gruppi: '%s'" #: libraries/server_privileges.lib.php:3363 -#| msgid "No privileges." msgid "User group privileges" msgstr "Kasutajate grupi õigused" #: libraries/server_privileges.lib.php:3370 -#| msgid "Column names: " msgid "Group name:" msgstr "Grupi nimi:" @@ -12188,10 +12162,9 @@ msgid "" "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -"Palun loo phpMyAdmini juurkataloogi veebiserveri jaoks kirjutatav " -"[em]config[/em] kaust, nagu on kirjeldatud " -"[doc@setup_script]dokumentatsioonis[/doc]. Muul juhul saad seda ainult alla " -"laadida või vaadata." +"Palun loo phpMyAdmini juurkataloogi veebiserveri jaoks kirjutatav [em]config" +"[/em] kaust, nagu on kirjeldatud [doc@setup_script]dokumentatsioonis[/doc]. " +"Muul juhul saad seda ainult alla laadida või vaadata." #: setup/frames/index.inc.php:60 msgid "" @@ -12207,8 +12180,8 @@ msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." msgstr "" -"Kui sinu server on seadistatud nõustuma ka HTTPS taotlustega, siis ava [a@" -"%s]see link[/a], et teada saada, kuidas kasutada turvalist ühendust." +"Kui sinu server on seadistatud nõustuma ka HTTPS taotlustega, siis ava [a@%s]" +"see link[/a], et teada saada, kuidas kasutada turvalist ühendust." #: setup/frames/index.inc.php:68 msgid "Insecure connection" @@ -12446,8 +12419,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Sa valisid [kbd]config[/kbd] autentimise tüübi ja kaasasid automaatsele " "sisselogimisele kasutajanime ja parooli, mis ei ole soovitatav valik " @@ -14420,9 +14393,9 @@ msgstr "concurrent_insert väärtuseks on määratud 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Kui valida selleks [kbd]nested[/kbd], siis tabeli nime aliast kasutatakse " #~ "sõltuvalt $cfg['LeftFrameTableSeparator'] direktiivist ainult tabelite " @@ -15114,9 +15087,9 @@ msgstr "concurrent_insert väärtuseks on määratud 0" #~ "Enclose table and field names with backquotes (Protects field and " #~ "table names formed with special characters or keywords)" #~ msgstr "" -#~ "Aseta tabeli ja väljade nimed alumise ja ülemise jutumärgi vahele " -#~ "(Kaitseb välja ja tabeli nimesid eriliste sümbolitega või " -#~ "võtmesõnadega vormimise eest)" +#~ "Aseta tabeli ja väljade nimed alumise ja ülemise jutumärgi vahele " +#~ "(Kaitseb välja ja tabeli nimesid eriliste sümbolitega või võtmesõnadega " +#~ "vormimise eest)" #~ msgid "Create a new index" #~ msgstr "Loo uus indeks" diff --git a/po/eu.po b/po/eu.po index 4eb0591b70..7ae77f225c 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-12 15:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque \n" "Language-Team: Persian اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"استفاده نماييد : 'a','b','c'…
اگر احتياج داشتيد كه از علامت مميز برعكس" +"(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد ، " +"قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a\\'b')" #: libraries/tbl_columns_definition_form.inc.php:110 msgid "" @@ -11558,10 +11556,9 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " -"استفاده نماييد : 'a','b','c'…
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"استفاده نماييد : 'a','b','c'…
اگر احتياج داشتيد كه از علامت مميز برعكس" +"(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد ، " +"قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a\\'b')" #: libraries/tbl_columns_definition_form.inc.php:412 msgid "ENUM or SET data too long?" @@ -12296,8 +12293,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/fi.po b/po/fi.po index 8a29caf172..62ea19c523 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 11:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Finnish (Ceci pourrait aider à " -"importer des fichiers volumineux, au détriment du respect des " -"transactions.)" +"importer des fichiers volumineux, au détriment du respect des transactions.)" +"" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -8388,8 +8387,8 @@ msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -"Entourer les noms des tables et des colonnes par des guillemets obliques " -"(Protège les noms de tables et de colonnes comportant des caractères " +"Entourer les noms des tables et des colonnes par des guillemets obliques " +"(Protège les noms de tables et de colonnes comportant des caractères " "spéciaux ou des mots réservés)" #: libraries/plugins/export/ExportSql.class.php:304 @@ -10345,19 +10344,19 @@ msgstr "Groupes d'utilisateurs" #: libraries/server_privileges.lib.php:3236 #: libraries/server_privileges.lib.php:3402 #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Onglets de niveau serveur" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Onglets de niveau base de données" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Onglets de niveau table" #: libraries/server_privileges.lib.php:3260 @@ -12640,8 +12639,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "La méthode d'authentification [kbd]config[/kbd] permet une connexion " "automatique, ce qui n'est pas souhaitable dans un environnement réel. Toute " @@ -14655,9 +14654,9 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Si défini à [kbd]nested[/kbd], l'alias du nom de table ne sert qu'à " #~ "subdiviser les tables selon $cfg['LeftFrameTableSeparator']" diff --git a/po/gl.po b/po/gl.po index 08437c4e5b..1304adc6d5 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-25 23:17+0200\n" "Last-Translator: Xosé Calvo \n" "Language-Team: Galician (Protects column and table " "names formed with special characters or keywords)" msgstr "" -"Encerrar os nomes das táboas e das columnas entre aspas invertidas " -"(Protexe os nomes das columnas e as táboas formadas con caracteres " -"especiais ou palabras chave)" +"Encerrar os nomes das táboas e das columnas entre aspas invertidas " +"(Protexe os nomes das columnas e as táboas formadas con caracteres especiais " +"ou palabras chave)" #: libraries/plugins/export/ExportSql.class.php:304 msgid "Data creation options" @@ -10360,21 +10358,21 @@ msgstr "Usuarios" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Versión do servidor" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Servidor de base de datos" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table removal" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Nome da táboa" #: libraries/server_privileges.lib.php:3260 @@ -12667,8 +12665,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Configurou o tipo de configuración [kbd]config[/kbd] e incluíu o nome de " "usuario e o contrasinal para o rexistro automático, o que non é unha opción " @@ -14680,9 +14678,9 @@ msgstr "concurrent_insert está definido como 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da " #~ "táboa só se emprega para partir/aniñar as táboas de acordo coa directiva " diff --git a/po/he.po b/po/he.po index 22bd80205e..6667b8c71b 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 21:08+0200\n" "Last-Translator: Bug Me Not \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" @@ -2840,8 +2840,8 @@ msgstr "फ़ाइल अपलोड करने में अज्ञा #: libraries/File.class.php:476 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल " -"1,11[/doc] देखें" +"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल 1,11" +"[/doc] देखें" #: libraries/File.class.php:494 msgid "Error while moving uploaded file." @@ -4369,8 +4369,8 @@ msgstr "CHAR कॉलम संपादन" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -4917,9 +4917,8 @@ msgstr "पृष्ठ शीर्षक" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "निर्दिष्ट ब्राउज़र की शीर्षक पट्टी पाठ. [doc@cfg_TitleTable]documentation[/doc] " "जादू स्ट्रिंग को विशेष मान पाने के लिए इस्तेमाल किया जा सकता है." @@ -5107,8 +5106,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/" -"Gzip]gzip[/a]" +"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/Gzip]" +"gzip[/a]" #: libraries/config/messages.inc.php:237 msgid "GZip" @@ -5744,8 +5743,8 @@ msgstr "बुकमार्क टेबल" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" #| "kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" @@ -5854,8 +5853,8 @@ msgstr "डेटाबेस छिपाना" #: libraries/config/messages.inc.php:403 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5971,8 +5970,8 @@ msgstr "याद यूसर नाम" #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" @@ -5990,8 +5989,8 @@ msgstr "SHOW DATABASES आदेश" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -6104,11 +6103,11 @@ msgstr "बयान ट्रैक करने के लिए" #: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/" "kbd]" @@ -6132,8 +6131,8 @@ msgstr "स्वतः संस्करण बनाना" #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" @@ -6146,8 +6145,8 @@ msgstr "यूसर वरीयताओं की भंडारण टे #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" @@ -6162,8 +6161,8 @@ msgstr "टेबल का उपयोग करो" #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" @@ -10369,21 +10368,21 @@ msgstr "यूसर" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Show versions" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "संस्करण दिखाएँ" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "डेटाबेस सर्वर" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "टेबल टिप्पणी:" #: libraries/server_privileges.lib.php:3260 @@ -12567,8 +12566,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/hr.po b/po/hr.po index 81563020d9..366435a7a5 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-26 11:41+0200\n" "Last-Translator: Tomislav Novak \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" -"Language-Team: Interlingua " -"\n" +"Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2295,7 +2295,8 @@ msgstr "Character inexpectate al linea %s." #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"Character inexpectate al linea %1$s. Il expectava tab, ma on trovava \"%2$s\"." +"Character inexpectate al linea %1$s. Il expectava tab, ma on trovava \"%2$s" +"\"." #: libraries/Advisor.class.php:470 msgid "per second" @@ -2688,7 +2689,6 @@ msgstr "" #: libraries/DisplayResults.class.php:4933 #, php-format -#| msgid "%d table(s)" msgid "%d total" msgstr "%d total" @@ -4242,8 +4242,8 @@ msgstr "" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -4764,9 +4764,8 @@ msgstr "" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5504,8 +5503,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -5698,8 +5697,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5716,8 +5715,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -5816,8 +5815,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5836,8 +5835,8 @@ msgstr "" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -5845,29 +5844,21 @@ msgid "User preferences storage table" msgstr "" #: libraries/config/messages.inc.php:455 -#| msgid "" -#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, " -#| "suggested: [kbd]pma__table_uiprefs[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" "Lassa vacue pro dishabilitar characteristica de menus configurabile, " "proponite: [kbd]pma__users[/kbd]" #: libraries/config/messages.inc.php:456 -#| msgid "%s table" -#| msgid_plural "%s tables" msgid "Users table" msgstr "Tabula de usatores" #: libraries/config/messages.inc.php:457 -#| msgid "" -#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, " -#| "suggested: [kbd]pma__table_uiprefs[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" "Lassa vacue pro dishabilitar characteristica de menus configurabile, " "proponite: [kbd]pma__usergroups[/kbd]" @@ -7338,12 +7329,10 @@ msgid "Functions:" msgstr "Connexiones" #: libraries/navigation/Navigation.class.php:174 -#| msgid "Processes" msgid "Procedures:" msgstr "Procedimentos:" #: libraries/navigation/Navigation.class.php:175 -#| msgid "Table:" msgid "Tables:" msgstr "Tabulas:" @@ -9773,30 +9762,29 @@ msgstr "" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version:" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Version de servitor:" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Servitor de base de datos" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 -#| msgid "Table comments" -msgid "Table level tabs" +#, fuzzy +#| msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Tabulationes de nivello de tabula" #: libraries/server_privileges.lib.php:3260 -#| msgid "in use" msgid "View users" msgstr "Vide usatores" #: libraries/server_privileges.lib.php:3288 #: libraries/server_privileges.lib.php:3344 -#| msgid "Add user" msgid "Add user group" msgstr "Adde gruppo de usator" @@ -11807,8 +11795,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/id.po b/po/id.po index 30d2b93eb9..9bc30d4c54 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-06-20 14:00+0200\n" "Last-Translator: Dadan Setia \n" "Language-Team: Indonesian \n" "Language-Team: Italian " msgstr "" "Racchiudi i nomi dei campi e delle tabelle in virgolette ` (Protegge i " -"nomi dei campi e tabelle che contengono caratteri speciali or parole " -"chiave)" +"nomi dei campi e tabelle che contengono caratteri speciali or parole chiave)" +"" #: libraries/plugins/export/ExportSql.class.php:304 #, fuzzy @@ -10602,21 +10600,21 @@ msgstr "Utenti" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Versione del server" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Server del Database" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Commenti alla tabella" #: libraries/server_privileges.lib.php:3260 @@ -12721,9 +12719,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Prego, crea una cartella scrivibile dal web server [em]config[/em] nella " -"cartella principale di phpMyAdmin come descritto nella " -"[doc@setup_script]documentazione[/doc]. Altrimenti potrai solo scaricarlo o " -"visualizzarlo." +"cartella principale di phpMyAdmin come descritto nella [doc@setup_script]" +"documentazione[/doc]. Altrimenti potrai solo scaricarlo o visualizzarlo." #: setup/frames/index.inc.php:60 msgid "" @@ -12982,8 +12979,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " @@ -15072,9 +15069,9 @@ msgstr "concurrent_insert è impostato a 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Quando questo é impostato a [kbd]nested[/kbd], l'alias del nome della " #~ "tabella è utilizzato solo per dividere/nidificare le tabelle in accordo " diff --git a/po/ja.po b/po/ja.po index 48e194dd21..fe3e16ad1e 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-08 21:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Japanese \n" "Language-Team: Georgian \n" "Language-Team: Kazakh \n" "Language-Team: Kannada \n" "Language-Team: Korean \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Macedonian \n" "Language-Team: Malayalam \n" @@ -4157,8 +4157,8 @@ msgstr "" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -4681,9 +4681,8 @@ msgstr "" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5427,8 +5426,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -5621,8 +5620,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5639,8 +5638,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -5737,8 +5736,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5757,8 +5756,8 @@ msgstr "" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -5767,8 +5766,8 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:456 @@ -5779,8 +5778,8 @@ msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" #: libraries/config/messages.inc.php:458 @@ -9699,21 +9698,23 @@ msgstr "" #: libraries/server_privileges.lib.php:3236 #: libraries/server_privileges.lib.php:3402 -msgid "Server level tabs" -msgstr "" +#, fuzzy +#| msgid "Table comments" +msgid "Server-level tabs" +msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database comment: " -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "വിവരശേഖര അഭിപ്രായം: " #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/server_privileges.lib.php:3260 @@ -11743,8 +11744,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/mn.po b/po/mn.po index 05c849da90..ec944ea1a4 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-04-25 15:34+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian \n" "Language-Team: Malay \n" @@ -4469,8 +4469,8 @@ msgstr "" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -5028,9 +5028,8 @@ msgstr "Muka Surat:" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5793,8 +5792,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -5999,8 +5998,8 @@ msgstr "Analyze table" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6018,8 +6017,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -6121,8 +6120,8 @@ msgstr "Penyataan" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6142,8 +6141,8 @@ msgstr "Versi Pelayan" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -6152,8 +6151,8 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:456 @@ -6164,8 +6163,8 @@ msgstr "Guna Jadual" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" #: libraries/config/messages.inc.php:458 @@ -10328,21 +10327,21 @@ msgstr "Pengguna" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Versi Pelayan" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Databases" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "pangkalan data" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Komen jadual" #: libraries/server_privileges.lib.php:3260 @@ -12520,8 +12519,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/nb.po b/po/nb.po index ae5cd523b8..920510637e 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 11:14+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Dutch \n" @@ -1951,7 +1951,6 @@ msgid "Hide Panel" msgstr "Paneel verbergen" #: js/messages.php:369 -#| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items" msgstr "Verborgen navigatieboom items weergeven" @@ -2673,13 +2672,11 @@ msgstr "" #: libraries/DisplayResults.class.php:4921 #, php-format -#| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Weergave van records %1s - %2s" #: libraries/DisplayResults.class.php:4933 #, php-format -#| msgid "total" msgid "%d total" msgstr "%d totaal" @@ -2798,8 +2795,8 @@ msgstr "Onbekende fout bij het uploaden." #: libraries/File.class.php:476 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ " -"1.11[/doc]" +"Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ 1.11" +"[/doc]" #: libraries/File.class.php:494 msgid "Error while moving uploaded file." @@ -3861,7 +3858,8 @@ msgstr "Selecteer uit de web-server upload directory %s:" #: libraries/Util.class.php:3406 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:483 msgid "The directory you set for upload work cannot be reached." -msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt." +msgstr "" +"De folder die u heeft ingesteld om te uploaden kan niet worden bereikt." #: libraries/Util.class.php:3417 msgid "There are no files to upload" @@ -4279,9 +4277,9 @@ msgid "" "cross-frame scripting attacks" msgstr "" "Door deze optie in te schakelen is het toegestaan om phpMyAdmin vanuit een " -"pagina op een ander domein in een frame te openen. Een potentieel " -"[strong]beveiligingslek[/strong] wat cross-frame scripting aanvallen " -"mogelijk kan maken" +"pagina op een ander domein in een frame te openen. Een potentieel [strong]" +"beveiligingslek[/strong] wat cross-frame scripting aanvallen mogelijk kan " +"maken" #: libraries/config/messages.inc.php:20 msgid "Allow third party framing" @@ -4296,8 +4294,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Geheime sleutelzin gebruikt voor de versleuteling van cookies in " -"[kbd]cookie[/kbd]-authenticatie" +"Geheime sleutelzin gebruikt voor de versleuteling van cookies in [kbd]cookie" +"[/kbd]-authenticatie" #: libraries/config/messages.inc.php:23 msgid "Blowfish secret" @@ -4348,8 +4346,8 @@ msgstr "CHAR-kolommen bewerken" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Gebruik de gebruiksvriendelijk editor voor SQL queries ([a@http://codemirror." "net/]CodeMirror[/a]) met syntaxmarkering en lijnnummers" @@ -4747,8 +4745,8 @@ msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -"Sorteer volgorde van elementen in een vreemdesleutel-afrolmenu; " -"[kbd]content[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde" +"Sorteer volgorde van elementen in een vreemdesleutel-afrolmenu; [kbd]content" +"[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde" #: libraries/config/messages.inc.php:151 msgid "Foreign key dropdown order" @@ -4888,9 +4886,8 @@ msgstr "Paginatitels" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Browser titel balk tekst. Zie [doc@cfg_TitleTable]documentatie[/doc] voor " "bruikbare codes." @@ -4955,8 +4952,8 @@ msgid "" "documentation" msgstr "" "Configureer de phpMyAdmin-configuratie-opslag om toegang te krijgen tot " -"extra functionaliteit, zie [doc@linked-tables]phpMyAdmin-configuratie-" -"opslag[/doc] in de documentatie" +"extra functionaliteit, zie [doc@linked-tables]phpMyAdmin-configuratie-opslag" +"[/doc] in de documentatie" #: libraries/config/messages.inc.php:206 msgid "Changes tracking" @@ -5354,8 +5351,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -"Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe " -"([kbd]new[/kbd])" +"Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe ([kbd]" +"new[/kbd])" #: libraries/config/messages.inc.php:304 msgid "Logo link target" @@ -5696,8 +5693,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]bladwijzers[/a] te gebruiken, suggestie: [kbd]pma__bookmark[/kbd]" +"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"bladwijzers[/a] te gebruiken, suggestie: [kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:381 msgid "Bookmark table" @@ -5705,8 +5702,8 @@ msgstr "Bladwijzertabel" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Laat dit veld leeg om geen kolomopmerkingen en mimetypes te ondersteunen, " "suggestie: [kbd]pma__column_info[/kbd]" @@ -5778,8 +5775,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Laat dit veld leeg om de Designer niet te gebruiken, suggestie: " -"[kbd]pma__designer_coords[/kbd]" +"Laat dit veld leeg om de Designer niet te gebruiken, suggestie: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:396 msgid "Designer table" @@ -5790,9 +5787,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Zie voor meer informatie: [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/" -"a]" +"Zie voor meer informatie: [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:398 msgid "Disable use of INFORMATION_SCHEMA" @@ -5822,8 +5818,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, suggestie: " -"[kbd]pma__history[/kbd]" +"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, suggestie: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:404 msgid "SQL query history table" @@ -5903,8 +5899,8 @@ msgid "" msgstr "" "Databank die wordt gebruikt om relaties, bladwijzers en PDF-eigenschappen op " "te slaan. Zie [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] voor meer " -"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: " -"[kbd]phpmyadmin[/kbd]" +"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Database name" @@ -5934,12 +5930,11 @@ msgstr "Recent gebruikte tabel" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/" -"relation]relation-links[/a] te ondersteunen, suggestie: [kbd]pma__relation[/" -"kbd]" +"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/relation]" +"relation-links[/a] te ondersteunen, suggestie: [kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:425 msgid "Relation table" @@ -5955,8 +5950,8 @@ msgstr "Opdracht SHOW DATABASES" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatietypes[/" "a] voor een voorbeeld" @@ -5992,8 +5987,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: " -"[kbd]pma__table_coords[/kbd]" +"Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:436 msgid "PDF schema: table coordinates" @@ -6072,8 +6067,8 @@ msgstr "Bij te houden opdrachten" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Laat dit veld leeg om het opvolgen van SQL queries niet te ondersteunen, " "suggestie: [kbd]pma__tracking[/kbd]" @@ -6096,8 +6091,8 @@ msgstr "Automatisch versies aanmaken" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, " "suggestie: [kbd]pma__userconfig[/kbd]" @@ -6109,42 +6104,40 @@ msgstr "Opslagtabel voor gebruikersvoorkeuren" #: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" "Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, " "suggestie: [kbd]pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:456 -#| msgid "Use Tables" msgid "Users table" msgstr "Gebruikerstabel" #: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" "Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, " "suggestie: [kbd]pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:458 -#| msgid "Use Host Table" msgid "User groups table" msgstr "Gebruikersgroepentabel" #: libraries/config/messages.inc.php:459 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]" @@ -6275,8 +6268,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:485 msgid "Show phpinfo() link" @@ -7733,27 +7726,22 @@ msgid "An error has occured while loading the navigation tree" msgstr "Er is een fout opgetreden bij het laden van de navigatieboom" #: libraries/navigation/Navigation.class.php:172 -#| msgid "Events" msgid "Events:" msgstr "Gebeurtenissen:" #: libraries/navigation/Navigation.class.php:173 -#| msgid "Functions" msgid "Functions:" msgstr "Functies:" #: libraries/navigation/Navigation.class.php:174 -#| msgid "Procedures" msgid "Procedures:" msgstr "Procedures:" #: libraries/navigation/Navigation.class.php:175 -#| msgid "Tables" msgid "Tables:" msgstr "Tabellen:" #: libraries/navigation/Navigation.class.php:176 -#| msgid "Views" msgid "Views:" msgstr "Views:" @@ -8858,7 +8846,6 @@ msgid "User preferences" msgstr "Gebruikersvoorkeuren" #: libraries/relation.lib.php:264 -#| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Configureerbare menu's" @@ -10278,7 +10265,6 @@ msgid "Add privileges on the following table:" msgstr "Rechten toevoegen op de volgende tabel:" #: libraries/server_privileges.lib.php:2599 -#| msgid "Edit server" msgid "Edit user group" msgstr "Gebruikersgroep bewerken" @@ -10353,7 +10339,6 @@ msgstr "" #: libraries/server_privileges.lib.php:3229 #: libraries/server_privileges.lib.php:3878 -#| msgid "Users" msgid "User groups" msgstr "Gebruikersgroepen" @@ -10361,21 +10346,21 @@ msgstr "Gebruikersgroepen" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Serverversie" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Databankserver" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Tabelopmerkingen" #: libraries/server_privileges.lib.php:3260 @@ -12681,8 +12666,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken " "gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. " @@ -14701,9 +14686,9 @@ msgstr "concurrent_insert is ingesteld op 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Indien ingesteld op [kbd]nested[/kbd] wordt de opmerking enkel op basis " #~ "van $cfg['LeftFrameTableSeparator'] gesplitst. Hierdoor krijgt enkel de " diff --git a/po/pa.po b/po/pa.po index 8087c332e2..9222f38973 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2012-09-01 12:11+0200\n" "Last-Translator: gurjit dhillon \n" "Language-Team: Punjabi \n" "Language-Team: LANGUAGE \n" @@ -4116,8 +4116,8 @@ msgstr "" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -4638,9 +4638,8 @@ msgstr "" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5378,8 +5377,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -5572,8 +5571,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5590,8 +5589,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -5688,8 +5687,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5708,8 +5707,8 @@ msgstr "" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -5718,8 +5717,8 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:456 @@ -5728,8 +5727,8 @@ msgstr "" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" #: libraries/config/messages.inc.php:458 @@ -9627,17 +9626,17 @@ msgstr "" #: libraries/server_privileges.lib.php:3236 #: libraries/server_privileges.lib.php:3402 -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "" #: libraries/server_privileges.lib.php:3260 @@ -11656,8 +11655,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/pl.po b/po/pl.po index ec37174201..be9695bcda 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 11:28+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Polish \n" "Language-Team: Portuguese .[format].[compression]. " "Example: .sql.zip" msgstr "" -"O nome de um arquivo compactado deve terminar em .[formato]." -"[compactação]. Exemplo: .sql.zip" +"O nome de um arquivo compactado deve terminar em .[formato].[compactação]" +". Exemplo: .sql.zip" #: libraries/display_import.lib.php:245 msgid "File uploads are not allowed on this server." @@ -10333,21 +10332,21 @@ msgstr "Usuários" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Versão do servidor" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Servidor de banco de dados" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Comentários da tabela" #: libraries/server_privileges.lib.php:3260 @@ -12378,9 +12377,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Por favor, crie a pasta [em]config[/em] com permissão de escrita no servidor " -"web, no diretório raiz do phpMyAdmin conforme descrito na " -"[doc@setup_script]documentação[/doc]. Caso contrário, você somente poderá " -"baixá-la ou exibi-la." +"web, no diretório raiz do phpMyAdmin conforme descrito na [doc@setup_script]" +"documentação[/doc]. Caso contrário, você somente poderá baixá-la ou exibi-la." #: setup/frames/index.inc.php:60 msgid "" @@ -12639,14 +12637,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Você [kbd]configurou[/kbd] o tipo de autenticação e incluiu o usuário e " "senha para auto-login, o que não é uma opção desejável para live hosts. " "Qualquer um que souber ou descobrir sua URL do phpMyAdmin pode ter acesso " -"direto ao painel de controle. Configure o %stipo de autenticação%s para " -"[kbd]cookie[/kbd] ou [kbd]http[/kbd]." +"direto ao painel de controle. Configure o %stipo de autenticação%s para [kbd]" +"cookie[/kbd] ou [kbd]http[/kbd]." #: setup/lib/index.lib.php:236 #, php-format @@ -14643,13 +14641,13 @@ msgstr "concurrent_insert está com valor 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Ao definir este [kbd]aninhamento[/kbd], o alias da tabela é apenas usado " -#~ "para dividir/aninhar as tabelas de acordo com a " -#~ "$cfg['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo " +#~ "para dividir/aninhar as tabelas de acordo com a $cfg" +#~ "['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo " #~ "alias, o nome da tabela continua inalterado" #~ msgid "Display table comment instead of its name" diff --git a/po/ro.po b/po/ro.po index 0508d4bc16..d2ddb984b7 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 11:14+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Romanian \n" "Language-Team: Russian \n" "Language-Team: Sinhala " msgstr "" "සියලුම INSERT ප්‍රකාශ වල තීර නම් ඇතුලත් කරන්න
    " -"  උදාහරණ: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " -"(1,2,3)" +"  උදාහරණ: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" +"" #: libraries/plugins/export/ExportSql.class.php:370 msgid "" @@ -8276,8 +8275,8 @@ msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" -"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ " -"ගැනේ)" +"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ ගැනේ)" +"" #: libraries/plugins/import/ImportCsv.class.php:72 msgid "" @@ -10032,21 +10031,21 @@ msgstr "භාවිතා කරන්නන්" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "සේවාදායකයේ අනුවාදය" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "දත්තගබඩා සේවාදායකය" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "වගු විස්තර" #: libraries/server_privileges.lib.php:3260 @@ -12157,8 +12156,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "ඔබ [kbd]config[/kbd] සත්‍යාපනය තෝරා ස්වයංක්‍රීය ඇතුල්වීම සඳහා භාවිත නාමය සහ මුරපදය සඳහන් " "කර ඇත. සජීවී සත්කාරකයන් සඳහා මෙය නුසුදුසුය. ඔබගේ phpMyAdmin URLය දන්නා ඕනෑම අයෙකුට " @@ -14013,13 +14012,13 @@ msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" -#~ "මෙය [kbd]nested[/kbd] වෙත සිටවූ විට, වගුවේ අන්වර්ථ නාමය යොදා ගැනෙනුයේ " -#~ "$cfg['LeftFrameTableSeparator'] අගය අනුව වගු වෙන්කිරීමට/කාණ්ඩගත කිරීමට පමණි. එම " -#~ "නිසා කාණ්ඩය පමණක් අන්වර්ථ නාමයෙන් හැඳින්වෙන අතර, වගු නාමයන් නොවෙනස්ව පවතී" +#~ "මෙය [kbd]nested[/kbd] වෙත සිටවූ විට, වගුවේ අන්වර්ථ නාමය යොදා ගැනෙනුයේ $cfg" +#~ "['LeftFrameTableSeparator'] අගය අනුව වගු වෙන්කිරීමට/කාණ්ඩගත කිරීමට පමණි. එම නිසා " +#~ "කාණ්ඩය පමණක් අන්වර්ථ නාමයෙන් හැඳින්වෙන අතර, වගු නාමයන් නොවෙනස්ව පවතී" #~ msgid "Display table comment instead of its name" #~ msgstr "වගුවේ නම වෙනුවට විස්තරය පෙන්වන්න" diff --git a/po/sk.po b/po/sk.po index 57e7f5f018..18a0ee8270 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Slovak \n" -"Language-Team: Slovenian " -"\n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2664,13 +2664,11 @@ msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: libraries/DisplayResults.class.php:4921 #, php-format -#| msgid "Showing rows" msgid "Showing rows %1s - %2s" msgstr "Prikazujem vrstice %1s–%2s" #: libraries/DisplayResults.class.php:4933 #, php-format -#| msgid "total" msgid "%d total" msgstr "skupaj %d" @@ -3234,8 +3232,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1620 #, php-format @@ -4256,9 +4254,8 @@ msgid "" "cross-frame scripting attacks" msgstr "" "Omogočitev tega dovoljuje strani, ki se nahaja na drugačni domeni, " -"vključitev phpMyAdmina v okvirju, kar predstavlja morebitno " -"[strong]varnostno luknjo[/strong], saj dovoljuje skriptne napade preko " -"okvirjev" +"vključitev phpMyAdmina v okvirju, kar predstavlja morebitno [strong]" +"varnostno luknjo[/strong], saj dovoljuje skriptne napade preko okvirjev" #: libraries/config/messages.inc.php:20 msgid "Allow third party framing" @@ -4274,8 +4271,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Skrivno geslo, ki se uporabi pri šifriranju piškotkov v overovitvi " -"[kbd]cookie[/kbd]" +"Skrivno geslo, ki se uporabi pri šifriranju piškotkov v overovitvi [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:23 msgid "Blowfish secret" @@ -4316,8 +4313,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Določa, katera vrsta urejevalnih kontrolnikov naj se uporablja za stolpce " -"CHAR in VARCHAR; [kbd]input[/kbd] – omogoča omejevanje dolžine vnosa, " -"[kbd]textarea[/kbd] – omogoča nove vrstice v stolpcu" +"CHAR in VARCHAR; [kbd]input[/kbd] – omogoča omejevanje dolžine vnosa, [kbd]" +"textarea[/kbd] – omogoča nove vrstice v stolpcu" #: libraries/config/messages.inc.php:31 msgid "CHAR columns editing" @@ -4325,8 +4322,8 @@ msgstr "Urejanje stolpcev CHAR" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Uporabi uporabniku prijazen urejevalnik za urejanje poizvedb SQL ([a@http://" "codemirror.net/]CodeMirror[/a]) z obarvanjem skladnje in številkami vrstic" @@ -4862,9 +4859,8 @@ msgstr "Naslovi strani" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Določite besedilo naslovne vrstice brskalnika. Oglejte si " "[doc@cfg_TitleTable]dokumentacijo[/doc] za čarobne nize, ki jih lahko " @@ -4989,10 +4985,10 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Če želite uporabljati storitev Preverjalnika SQL, se zavedajte, da " -"[strong]so vse izjave SQL brezimno shranjene v statistične namene[/strong]." -"[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright " -"2002 Upright Database Technology. Vse pravice pridržane.[/em]" +"Če želite uporabljati storitev Preverjalnika SQL, se zavedajte, da [strong]" +"so vse izjave SQL brezimno shranjene v statistične namene[/strong].[br][em]" +"[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 " +"Upright Database Technology. Vse pravice pridržane.[/em]" #: libraries/config/messages.inc.php:222 msgid "Startup" @@ -5676,11 +5672,11 @@ msgstr "Tabela zaznamkov" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: " -"[kbd]pma__column_info[/kbd]" +"Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:383 msgid "Column information table" @@ -5750,8 +5746,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: " -"[kbd]pma__designer_coords[/kbd]" +"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:396 msgid "Designer table" @@ -5762,9 +5758,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Več informacij na [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]sledilniku hroščev PMA[/a] in[a@http://bugs.mysql." -"com/19588]hroščih MySQL[/a]" +"Več informacij na [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]" #: libraries/config/messages.inc.php:398 msgid "Disable use of INFORMATION_SCHEMA" @@ -5856,8 +5851,8 @@ msgstr "Geslo za overovitev config" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Pustite prazno, če ne želite podpore sheme PDF; predlagano: " -"[kbd]pma__pdf_pages[/kbd]" +"Pustite prazno, če ne želite podpore sheme PDF; predlagano: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:417 msgid "PDF schema: pages table" @@ -5900,8 +5895,8 @@ msgstr "Nedavno uporabljena tabela" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/" "relation]relacijskih povezav[/a]; priporočeno: [kbd]pma__relation[/kbd]" @@ -5920,8 +5915,8 @@ msgstr "Ukaz SHOW DATABASES" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste " "overovitev[/a] za primer" @@ -5956,8 +5951,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Pustite prazno, če ne želite podpore sheme PDF; predlagano: " -"[kbd]pma__table_coords[/kbd]" +"Pustite prazno, če ne želite podpore sheme PDF; predlagano: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:436 msgid "PDF schema: table coordinates" @@ -6035,11 +6030,11 @@ msgstr "Izjave za sledenje" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: " -"[kbd]pma__tracking[/kbd]" +"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:450 msgid "SQL query tracking table" @@ -6058,8 +6053,8 @@ msgstr "Samodejno ustvari različice" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma__userconfig[/kbd]" @@ -6071,11 +6066,11 @@ msgstr "Tabela za hranjenje uporabnikovih nastavitev" #: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma__userconfig[/kbd]" @@ -6089,11 +6084,11 @@ msgstr "Uporabi tabele" #: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma__userconfig[/kbd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma__userconfig[/kbd]" @@ -6105,9 +6100,6 @@ msgid "User groups table" msgstr "Uporabi tabelo gostiteljev" #: libraries/config/messages.inc.php:459 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma__userconfig[/kbd]" msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]" @@ -6235,8 +6227,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:485 msgid "Show phpinfo() link" @@ -6316,8 +6308,8 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Če imate uporabniško ime po meri, ga določite tukaj (privzeto " -"[kbd]anonymous[/kbd])" +"Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous" +"[/kbd])" #: libraries/config/messages.inc.php:506 tbl_tracking.php:559 #: tbl_tracking.php:621 @@ -7679,7 +7671,6 @@ msgid "Events:" msgstr "Dogodki" #: libraries/navigation/Navigation.class.php:173 -#| msgid "Functions" msgid "Functions:" msgstr "Funkcije:" @@ -7690,7 +7681,6 @@ msgid "Procedures:" msgstr "Procedure" #: libraries/navigation/Navigation.class.php:175 -#| msgid "Tables" msgid "Tables:" msgstr "Tabele:" @@ -8395,8 +8385,8 @@ msgid "" "(7,8,9)" msgstr "" "vključi več vrstic v vsaki izjavi INSERT
    " -"  Primer: INSERT INTO ime_tabele VALUES (1,2,3), (4,5,6), " -"(7,8,9)" +"  Primer: INSERT INTO ime_tabele VALUES (1,2,3), (4,5,6), (7,8,9)" +"" #: libraries/plugins/export/ExportSql.class.php:375 msgid "" @@ -8789,12 +8779,10 @@ msgid "User preferences" msgstr "Uporabniške nastavitve" #: libraries/relation.lib.php:264 -#| msgid "Configuration: %s" msgid "Configurable menus" msgstr "Nastavljivi meniji" #: libraries/relation.lib.php:275 -#| msgid "Reload navigation frame" msgid "Hide/show navigation items" msgstr "Skrij/prikaži navigacijske predmete" @@ -10268,7 +10256,6 @@ msgstr "Našel nisem nobenega uporabnika, ki pripada tej uporabniški skupini." #: libraries/server_privileges.lib.php:3229 #: libraries/server_privileges.lib.php:3878 -#| msgid "Users" msgid "User groups" msgstr "Uporabniške skupine" @@ -10276,20 +10263,21 @@ msgstr "Uporabniške skupine" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Različica strežnika" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Strežnik zbirke podatkov" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 -#| msgid "Table comments" -msgid "Table level tabs" +#, fuzzy +#| msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Zavihki stopenj tabele" #: libraries/server_privileges.lib.php:3260 @@ -10311,12 +10299,10 @@ msgid "Edit user group: '%s'" msgstr "Uredi uporabniško skupino: '%s'" #: libraries/server_privileges.lib.php:3363 -#| msgid "No privileges." msgid "User group privileges" msgstr "Privilegiji uporabniške skupine" #: libraries/server_privileges.lib.php:3370 -#| msgid "Column names: " msgid "Group name:" msgstr "Ime skupine:" @@ -12302,9 +12288,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Prosimo, na spletnem strežniku ustvarite zapisljivo mapo [em]config[/em] v " -"najvišjem nivoju mape phpMyAdmina, kot opisuje " -"[doc@setup_script]dokumentacija[/doc]. V naprotnem primeru jo boste lahko " -"samo prenesli ali jo prikazali." +"najvišjem nivoju mape phpMyAdmina, kot opisuje [doc@setup_script]" +"dokumentacija[/doc]. V naprotnem primeru jo boste lahko samo prenesli ali jo " +"prikazali." #: setup/frames/index.inc.php:60 msgid "" @@ -12446,8 +12432,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)" -"[br]Najnovejša stabilna različica je %s, izdana %s." +"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)[br]" +"Najnovejša stabilna različica je %s, izdana %s." #: setup/lib/index.lib.php:170 msgid "No newer stable version is available" @@ -12558,8 +12544,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Nastavili ste vrsto overovitve [kbd]config[/kbd] in vključili uporabniško " "ime in geslo za samodejno prijavo, kar ni zaželena možnost za gostitelje " @@ -14540,14 +14526,14 @@ msgstr "concurrent_insert je nastavljeno na 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Ko je nastavljeno na [kbd]nested[/kbd], je pridevek imena tabele " -#~ "uporabljen samo za razdružitev/združitev tabel v skladu z določilom " -#~ "$cfg['LeftFrameTableSeparator'], zato je samo mapa imenovana kot " -#~ "pridevek, sama imena tabel pa ostanejo nespremenjena" +#~ "uporabljen samo za razdružitev/združitev tabel v skladu z določilom $cfg" +#~ "['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, " +#~ "sama imena tabel pa ostanejo nespremenjena" #~ msgid "Display table comment instead of its name" #~ msgstr "Prikaži pripombo tabele namesto njenega imena" diff --git a/po/sq.po b/po/sq.po index 56915ef90a..c00e400d51 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-06-06 16:49+0200\n" "Last-Translator: Spartak Ferrollari \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Serbian (latin) \n" "Language-Team: Swedish (for example, \"abc\" becomes " "0x616263)" msgstr "" -"Dumpa binära kolumner i hexadecimal notation (t.ex. \"abc\" blir " -"0x616263)" +"Dumpa binära kolumner i hexadecimal notation (t.ex. \"abc\" blir 0x616263)" +"" #: libraries/plugins/export/ExportSql.class.php:412 msgid "" @@ -10241,21 +10240,21 @@ msgstr "Användare" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Serverversion" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Databas-server" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Tabellkommentarer" #: libraries/server_privileges.lib.php:3260 @@ -12516,8 +12515,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Du valde [kbd]config[/kbd]-autentisering och inkluderade användarnamn och " "lösenord för autoinloggning, vilket inte är en önskvärd inställning för " @@ -14473,14 +14472,14 @@ msgstr "concurrent_insert är satt till 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "När detta är satt till [kbd]nested[/kbd], används tabellens alias endast " -#~ "för att dela/stapla tabellerna enligt direktivet " -#~ "$cfg['LeftFrameTableSeparator'] , så endast mappen kallas för detta " -#~ "alias, tabellnamnet självt förblir oförändrat" +#~ "för att dela/stapla tabellerna enligt direktivet $cfg" +#~ "['LeftFrameTableSeparator'] , så endast mappen kallas för detta alias, " +#~ "tabellnamnet självt förblir oförändrat" #~ msgid "Display table comment instead of its name" #~ msgstr "Visa tabellkommentar istället för dess namn" @@ -14983,10 +14982,9 @@ msgstr "concurrent_insert är satt till 0" #~ msgstr "" #~ "phpMyAdmin kunde inte läsa din konfigurationsfil!
Detta kan inträffa " #~ "om PHP hittar ett fel i den eller om PHP inte hittar filen.
Anropa " -#~ "konfigurationsfilen direkt mha länken nedan och läs PHP:s " -#~ "felmeddelande(n) som du erhåller. I de flesta fall saknas ett " -#~ "citationstecken eller ett semikolon någonstans.
Om du får en tom " -#~ "sida är allt OK." +#~ "konfigurationsfilen direkt mha länken nedan och läs PHP:s felmeddelande" +#~ "(n) som du erhåller. I de flesta fall saknas ett citationstecken eller " +#~ "ett semikolon någonstans.
Om du får en tom sida är allt OK." #~ msgid "Dropping Event" #~ msgstr "Tar bort Händelse" diff --git a/po/ta.po b/po/ta.po index 507d775ff3..3fb29d4033 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-05-07 09:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil \n" @@ -4296,8 +4296,8 @@ msgstr "" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -4824,9 +4824,8 @@ msgstr "" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5578,8 +5577,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -5772,8 +5771,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5790,8 +5789,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -5888,8 +5887,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5908,8 +5907,8 @@ msgstr "" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -5918,8 +5917,8 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:456 @@ -5930,8 +5929,8 @@ msgstr "அட்டவணைகளை பயன்படுத்துக" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" #: libraries/config/messages.inc.php:458 @@ -9956,21 +9955,21 @@ msgstr "பாவனையளவு" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Show versions" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "பதிப்புகளை காட்டு" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Databases" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "தரவுத்தளங்கள்" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "அட்டவணைக் கருத்துரைகள்" #: libraries/server_privileges.lib.php:3260 @@ -12045,8 +12044,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/te.po b/po/te.po index 5bf701cfa6..59936323f3 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2012-11-06 12:16+0200\n" "Last-Translator: వీవెన్ \n" "Language-Team: Telugu \n" "Language-Team: Thai \n" @@ -4312,8 +4312,8 @@ msgstr "แก้ไขคอลัมน์ CHAR" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -4876,9 +4876,8 @@ msgstr "หมายเลขหน้า:" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5631,8 +5630,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -5834,8 +5833,8 @@ msgstr "วิเคราะห์ตาราง" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5853,11 +5852,11 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]" +"ดูตัวอย่าง [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"ประเภทของการรับรองความถูกต้อง[/a]" #: libraries/config/messages.inc.php:429 msgid "Signon session name" @@ -5959,8 +5958,8 @@ msgstr "คำสั่ง" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5979,8 +5978,8 @@ msgstr "สร้างเวอร์ชั่นโดยอัตโนมั #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -5989,8 +5988,8 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:456 @@ -6001,8 +6000,8 @@ msgstr "ใช้ตาราง" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" #: libraries/config/messages.inc.php:458 @@ -10193,21 +10192,21 @@ msgstr "ผู้ใช้" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "รุ่นของเซิร์ฟเวอร์" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "เซิร์ฟเวอร์ฐานข้อมูล" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "หมายเหตุของตาราง" #: libraries/server_privileges.lib.php:3260 @@ -12398,8 +12397,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/tk.po b/po/tk.po index 80eb12c803..0b2f0fc3a0 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" "Language-Team: Tatar \n" @@ -4553,8 +4553,8 @@ msgstr "" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -5130,9 +5130,8 @@ msgstr "Bitneñ sanı:" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5926,8 +5925,8 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:383 @@ -6134,8 +6133,8 @@ msgstr "Tüşämä centekläw" #: libraries/config/messages.inc.php:424 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6153,8 +6152,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -6258,8 +6257,8 @@ msgstr "Cömlä" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6280,8 +6279,8 @@ msgstr "Üzennän tözälü ısulı" #: libraries/config/messages.inc.php:453 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:454 @@ -6290,8 +6289,8 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:456 @@ -6302,8 +6301,8 @@ msgstr "Tüşämä qullanıp" #: libraries/config/messages.inc.php:457 msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" #: libraries/config/messages.inc.php:458 @@ -10625,21 +10624,21 @@ msgstr "Qullanuçı" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Server söreme" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database for user" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Qullanuçı biremlege" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table removal" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "tüşämä adı" #: libraries/server_privileges.lib.php:3260 @@ -12853,8 +12852,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/ug.po b/po/ug.po index be84a55183..284891c5e5 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-06-20 20:19+0200\n" "Last-Translator: gheni \n" "Language-Team: Uighur \n" "Language-Team: Ukrainian " msgstr "" "Зберігати поля з типом TIMESTAMP в UTC (дозволяє зберегти і перенести " -"поля з типом TIMESTAMP між серверами, що знаходяться в різних часових " -"зонах)" +"поля з типом TIMESTAMP між серверами, що знаходяться в різних часових зонах)" +"" #: libraries/plugins/export/ExportSql.class.php:1210 msgid "Constraints for dumped tables" @@ -10494,21 +10492,21 @@ msgstr "Користувачі" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Версія сервера" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Сервер бази даних" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Коментарі таблиці" #: libraries/server_privileges.lib.php:3260 @@ -12731,8 +12729,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Якщо використовується Git версія, запустіть [kbd]git pull[/kbd] :-)" -"[br]Остання стабільна версія %s, випущена %s." +"Якщо використовується Git версія, запустіть [kbd]git pull[/kbd] :-)[br]" +"Остання стабільна версія %s, випущена %s." #: setup/lib/index.lib.php:170 msgid "No newer stable version is available" @@ -12846,8 +12844,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Ви встановили [kbd]конфігураційний[/kbd] тип аутентифікації і ввели ім'я " "користувача і пароль для автоматичного входу в систему, що не є бажаним " diff --git a/po/ur.po b/po/ur.po index 5b11e671cf..df103f16bb 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-02 10:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu \n" @@ -671,8 +671,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "درآمد کے لیے کوئی کوائف نہیں ملا۔ ممکن ہے کہ مسل نام بھیجا نہ گیا ہو یا مسل " -"سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ " -"دیکھیں[doc@faq1-16]عمومی سوالات 1.16[/doc]." +"سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ دیکھیں" +"[doc@faq1-16]عمومی سوالات 1.16[/doc]." #: import.php:467 msgid "" @@ -4452,8 +4452,8 @@ msgstr "CHAR کالم تدوین" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -5003,9 +5003,8 @@ msgstr "صفحہ عنوانات" #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "براؤزر عنوان بار متن لکھیں۔ حوالہ کے لیے[doc@cfg_TitleTable]documentation[/" "doc] خاص قدریں حاصل کرنے کے لیے میجک سٹرنگ۔" @@ -5069,8 +5068,8 @@ msgid "" "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation" msgstr "" -"اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، " -"دیکھیں[doc@linked-tables]phpMyAdmin تشکیل ذخیرہ[/doc] دستاویزات میں" +"اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، دیکھیں" +"[doc@linked-tables]phpMyAdmin تشکیل ذخیرہ[/doc] دستاویزات میں" #: libraries/config/messages.inc.php:206 msgid "Changes tracking" @@ -5850,11 +5849,11 @@ msgstr "جدول نشان کریں" #: libraries/config/messages.inc.php:382 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" @@ -5928,8 +5927,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:396 msgid "Designer table" @@ -5941,8 +5940,8 @@ msgid "" "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" "مزید معلومات یہاں موجود ہے [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL " -"نقائص[/a]" +"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص" +"[/a]" #: libraries/config/messages.inc.php:398 msgid "Disable use of INFORMATION_SCHEMA" @@ -5968,8 +5967,8 @@ msgstr "کوائفیے چھپائیں" #: libraries/config/messages.inc.php:403 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -6039,8 +6038,8 @@ msgstr "" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:417 msgid "PDF schema: pages table" @@ -6090,8 +6089,8 @@ msgstr "صارف نام یاد کریں" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" #| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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/bookmark]bookmark[/" "a] معاونت، مجوزہ[kbd]pma_bookmark[/kbd]" @@ -6110,8 +6109,8 @@ msgstr "" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:429 @@ -6147,8 +6146,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:436 msgid "PDF schema: table coordinates" @@ -6163,8 +6162,8 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:438 msgid "Display columns table" @@ -6178,8 +6177,8 @@ msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:440 msgid "UI preferences table" @@ -6226,11 +6225,11 @@ msgstr "" #: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]" @@ -6253,11 +6252,11 @@ msgstr "" #| msgid "" #| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:454 msgid "User preferences storage table" @@ -6268,11 +6267,11 @@ msgstr "" #| msgid "" #| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:456 #, fuzzy @@ -6285,11 +6284,11 @@ msgstr "جداول استعمال کریں" #| msgid "" #| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:458 msgid "User groups table" @@ -6303,8 +6302,8 @@ msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:460 msgid "Hidden navigation items table" @@ -10426,21 +10425,21 @@ msgstr "" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version:" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "سرور نسخہ:" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "کوائفیہ سرور" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "جدول تبصرے" #: libraries/server_privileges.lib.php:3260 @@ -12594,8 +12593,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:236 diff --git a/po/uz.po b/po/uz.po index 4af878845b..33d1713939 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-12 15:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \n" @@ -914,8 +914,8 @@ msgstr "" #: index.php:468 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -"cookie-аутентификация ишлатилганда, конфигурацион файлдаги " -"$cfg[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." +"cookie-аутентификация ишлатилганда, конфигурацион файлдаги $cfg" +"[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." #: index.php:479 #, fuzzy @@ -4671,8 +4671,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/" -"Bzip2]bzip2[/a] ёрдамида сиқишни ёқиш" +"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Bzip2]" +"bzip2[/a] ёрдамида сиқишни ёқиш" #: libraries/config/messages.inc.php:29 msgid "Bzip2" @@ -4702,8 +4702,8 @@ msgstr "CHAR майдонларини таҳрирлаш" #: libraries/config/messages.inc.php:32 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:33 @@ -5289,9 +5289,8 @@ msgstr "Саҳифа рақами: " #: libraries/config/messages.inc.php:193 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:194 @@ -5499,8 +5498,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/" -"Gzip]gzip[/a] ёрдамида сиқишни ёқиш" +"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Gzip]gzip" +"[/a] ёрдамида сиқишни ёқиш" #: libraries/config/messages.inc.php:237 msgid "GZip" @@ -6179,11 +6178,11 @@ msgstr "Хатчўплар жадвали" #: libraries/config/messages.inc.php:382 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_column_info[/kbd]" @@ -6218,8 +6217,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Чекланган ҳуқуқларга эга бўлган махсус \"MySQL\" фойдаланувчиси тузилган, " -"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/" -"a]да мавжуд" +"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" +"да мавжуд" #: libraries/config/messages.inc.php:390 msgid "Control user" @@ -6259,8 +6258,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: " -"[kbd]pma_designer_coords[/kbd]" +"Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:396 msgid "Designer table" @@ -6301,8 +6300,8 @@ msgstr "Базаларни яшириш" #: libraries/config/messages.inc.php:403 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -6436,8 +6435,8 @@ msgstr "Фойдаланувчи номини чақириб олиш" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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]" @@ -6456,11 +6455,11 @@ msgstr "SHOW DATABASES буйруғи" #: libraries/config/messages.inc.php:428 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]га қаранг" +"Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"аутентификация усуллари[/a]га қаранг" #: libraries/config/messages.inc.php:429 msgid "Signon session name" @@ -6584,8 +6583,8 @@ msgstr "Тавсиф" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" @@ -6613,8 +6612,8 @@ msgstr "Автоматик тиклаш режими" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" @@ -6628,8 +6627,8 @@ msgstr "" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__users[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users" +"[/kbd]" msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" @@ -6645,8 +6644,8 @@ msgstr "Жадвалларни ишлатиш" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank to disable configurable menus feature, suggested: " -"[kbd]pma__usergroups[/kbd]" +"Leave blank to disable configurable menus feature, suggested: [kbd]" +"pma__usergroups[/kbd]" msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" @@ -7034,8 +7033,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] қисишни ёқиш" +"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_" +"(file_format)]ZIP[/a] қисишни ёқиш" #: libraries/config/messages.inc.php:540 msgid "ZIP" @@ -11217,21 +11216,21 @@ msgstr "Фойдаланувчи" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "Сервер версияси" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database for user" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "Фойдаланувчи учун маълумотлар базаси" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table removal" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "Жадвал номи" #: libraries/server_privileges.lib.php:3260 @@ -12114,8 +12113,8 @@ msgstr "Очиқ файллар сони." #: libraries/server_status_variables.lib.php:632 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб " -"\"fopen()\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" +"()\" функцияси ёрдамида очилган файлга айтилади." #: libraries/server_status_variables.lib.php:635 msgid "The number of tables that are open." @@ -12280,8 +12279,8 @@ msgid "" msgstr "" "Маълум бир вақтдандан кейин қониқтирилган жадвални блокировка қилишга бўлган " "сўровлар сони. Агар қиймат жуда катта бўлса ва унумдорлик бўйича муаммолар " -"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса " -"жадвал(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." +"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" +"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." #: libraries/server_status_variables.lib.php:733 msgid "" @@ -13378,9 +13377,8 @@ msgstr "Конфигурацияни юклаб ёки сақлаб бўлмад #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " -#| "level directory as described in [a@../Documentation." -#| "html#setup_script]umentation[/a]. Otherwise you will be only able to " -#| "download or display " +#| "level directory as described in [a@../Documentation.html#setup_script]" +#| "umentation[/a]. Otherwise you will be only able to download or display " msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -13545,10 +13543,10 @@ msgstr "Янгироқ версия ҳали мавжуд эмас" #| msgid "" #| "s [a@?page=form&formset=features#tab_Security]option[/a] should be " #| "abled as it allows attackers to bruteforce login to any MySQL server. you " -#| "feel this is necessary, use [a@?page=form&" -#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "tection may not be reliable if your IP belongs to an ISP where usands of " -#| "users, including you, are connected to." +#| "feel this is necessary, use [a@?page=form&mset=features#tab_Security]" +#| "trusted proxies list[/a]. However, IP-based tection may not be reliable " +#| "if your IP belongs to an ISP where usands of users, including you, are " +#| "connected to." msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " @@ -13672,15 +13670,14 @@ msgstr "" #| " set the [kbd]config[/kbd] authentication type and included username " #| "password for auto-login, which is not a desirable option for live ts. " #| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your " -#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&" -#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or " -#| "[kbd]httpbd]." +#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=d#tab_Server]" +#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Сиз [kbd]config[/kbd] аутентификация усулини танлаб, ўз логинва паролингизни " "конфигурацион файлга ёзиб қўйдингиз ва у Сизга автоматик тарзда phpMyAdmin " @@ -15671,9 +15668,9 @@ msgstr "Максимал уланишлар сони " #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Агар ушбу танловни [kbd]\"nested\"[/kbd] деб белгиласангиз, фақат жадвал " #~ "номининг тахаллуси конфигурацион файлдаги $cfg[\"LeftFrameTableSeparator" diff --git a/po/uz@latin.po b/po/uz@latin.po index fbef35b2fd..3e44adc1ce 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-15 11:32+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) Oqim deb " -"\"fopen()\" funksiyasi yordamida ochilgan faylga aytiladi." +"Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" +"()\" funksiyasi yordamida ochilgan faylga aytiladi." #: libraries/server_status_variables.lib.php:635 msgid "The number of tables that are open." @@ -13469,18 +13467,17 @@ msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " -#| "level directory as described in [a@../Documentation." -#| "html#setup_script]umentation[/a]. Otherwise you will be only able to " -#| "download or display " +#| "level directory as described in [a@../Documentation.html#setup_script]" +#| "umentation[/a]. Otherwise you will be only able to download or display " msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" "[a@../Documentation.html#setup_script]Dokumentatsiya[/a]da ko‘rsatilganidek, " -"phpMyAdmin joylashgan katalogda ver-server yozishi mumkin bo‘lgan " -"[em]config[/em] nomli katalog oching. Aks holda, Siz uni faqat yuklab " -"olishingiz yoki ko‘rishingiz mumkin bo‘ladi." +"phpMyAdmin joylashgan katalogda ver-server yozishi mumkin bo‘lgan [em]config" +"[/em] nomli katalog oching. Aks holda, Siz uni faqat yuklab olishingiz yoki " +"ko‘rishingiz mumkin bo‘ladi." #: setup/frames/index.inc.php:60 msgid "" @@ -13636,10 +13633,10 @@ msgstr "Yangiroq versiya hali mavjud emas" #| msgid "" #| "s [a@?page=form&formset=features#tab_Security]option[/a] should be " #| "abled as it allows attackers to bruteforce login to any MySQL server. you " -#| "feel this is necessary, use [a@?page=form&" -#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "tection may not be reliable if your IP belongs to an ISP where usands of " -#| "users, including you, are connected to." +#| "feel this is necessary, use [a@?page=form&mset=features#tab_Security]" +#| "trusted proxies list[/a]. However, IP-based tection may not be reliable " +#| "if your IP belongs to an ISP where usands of users, including you, are " +#| "connected to." msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " @@ -13765,15 +13762,14 @@ msgstr "" #| " set the [kbd]config[/kbd] authentication type and included username " #| "password for auto-login, which is not a desirable option for live ts. " #| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your " -#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&" -#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or " -#| "[kbd]httpbd]." +#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=d#tab_Server]" +#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Siz [kbd]config[/kbd] autentifikatsiya usulini tanlab, o‘z loginva " "parolingizni konfiguratsion faylga yozib qo‘ydingiz va u Sizga avtomatik " @@ -13782,8 +13778,8 @@ msgstr "" "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " "oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki " -"[kbd]http[/kbd] deb belgilash tavsiya etiladi." +"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" +"[/kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:236 #, fuzzy, php-format @@ -15770,9 +15766,9 @@ msgstr "Maksimal ulanishlar soni " #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Agar ushbu tanlovni [kbd]\"nested\"[/kbd] deb belgilasangiz, faqat jadval " #~ "nomining taxallusi konfiguratsion fayldagi $cfg[\"LeftFrameTableSeparator" diff --git a/po/vls.po b/po/vls.po index b8f884dbb6..3963388f34 100644 --- a/po/vls.po +++ b/po/vls.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-25 14:40+0200\n" "Last-Translator: saurabh chikate \n" "Language-Team: West Flemish \n" "Language-Team: Simplified Chinese (This might be a good way to import large " "files, however it can break transactions.)" msgstr "" -"在导入时脚本若检测到可能需要花费很长时间(接近PHP超时的限定)则允许中断。" -"(尽管这会中断事务,但在导入大文件时是个很好的方法。)" +"在导入时脚本若检测到可能需要花费很长时间(接近PHP超时的限定)则允许中断。" +"(尽管这会中断事务,但在导入大文件时是个很好的方法。)" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -10015,21 +10014,21 @@ msgstr "用户" #: libraries/server_privileges.lib.php:3402 #, fuzzy #| msgid "Server version" -msgid "Server level tabs" +msgid "Server-level tabs" msgstr "服务器版本" #: libraries/server_privileges.lib.php:3237 #: libraries/server_privileges.lib.php:3405 #, fuzzy #| msgid "Database server" -msgid "Database level tabs" +msgid "Database-level tabs" msgstr "数据库服务器" #: libraries/server_privileges.lib.php:3238 #: libraries/server_privileges.lib.php:3408 #, fuzzy #| msgid "Table comments" -msgid "Table level tabs" +msgid "Table-level tabs" msgstr "表注释" #: libraries/server_privileges.lib.php:3260 @@ -12218,8 +12217,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码," "但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 " @@ -14047,13 +14046,13 @@ msgstr "concurrent_insert 被设为 0" #~ msgid "" #~ "When setting this to [kbd]nested[/kbd], the alias of the table name is " -#~ "only used to split/nest the tables according to the " -#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" -#~ "当设为 [kbd]nested[/kbd] 时,数据表的别名仅根据 " -#~ "$cfg['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名," -#~ "数据表自己的名字并不改变" +#~ "当设为 [kbd]nested[/kbd] 时,数据表的别名仅根据 $cfg" +#~ "['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,数据" +#~ "表自己的名字并不改变" #~ msgid "Display table comment instead of its name" #~ msgstr "显示表备注而不显示表名" diff --git a/po/zh_TW.po b/po/zh_TW.po index 03c6c378b0..76f32a673b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-07-29 15:39+0200\n" +"POT-Creation-Date: 2013-07-29 13:37-0400\n" "PO-Revision-Date: 2013-07-13 20:32+0200\n" "Last-Translator: Tony Chen \n" "Language-Team: Traditional Chinese addFile('import.js'); require 'libraries/server_common.inc.php'; $import_type = 'server'; -require 'libraries/display_import.lib.php'; +require 'libraries/display_import.inc.php'; ?> diff --git a/tbl_import.php b/tbl_import.php index 9c399e0bd6..b255ccd48d 100644 --- a/tbl_import.php +++ b/tbl_import.php @@ -24,7 +24,7 @@ $url_query .= '&goto=tbl_import.php&back=tbl_import.php'; require_once 'libraries/tbl_info.inc.php'; $import_type = 'table'; -require_once 'libraries/display_import.lib.php'; +require_once 'libraries/display_import.inc.php'; ?>