gettext conversion
This commit is contained in:
parent
df1ceb1310
commit
a3b034eacd
@ -7,23 +7,23 @@
|
||||
* @todo display executed query, optional?
|
||||
* @uses $cfg['UseDbSearch']
|
||||
* @uses $GLOBALS['db']
|
||||
* @uses $GLOBALS['strAccessDenied']
|
||||
* @uses $GLOBALS['strSearchOption1']
|
||||
* @uses $GLOBALS['strSearchOption2']
|
||||
* @uses $GLOBALS['strSearchOption3']
|
||||
* @uses $GLOBALS['strSearchOption4']
|
||||
* @uses $GLOBALS['strSearchResultsFor']
|
||||
* @uses $GLOBALS['strNumSearchResultsInTable']
|
||||
* @uses $GLOBALS['strBrowse']
|
||||
* @uses $GLOBALS['strDelete']
|
||||
* @uses $GLOBALS['strNumSearchResultsTotal']
|
||||
* @uses $GLOBALS['strSearchFormTitle']
|
||||
* @uses $GLOBALS['strSearchNeedle']
|
||||
* @uses $GLOBALS['strSearchType']
|
||||
* @uses $GLOBALS['strSplitWordsWithSpace']
|
||||
* @uses $GLOBALS['strSearchInTables']
|
||||
* @uses $GLOBALS['strUnselectAll']
|
||||
* @uses $GLOBALS['strSelectAll']
|
||||
* @uses __('Access denied')
|
||||
* @uses __('at least one of the words')
|
||||
* @uses __('all words')
|
||||
* @uses __('the exact phrase')
|
||||
* @uses __('as regular expression')
|
||||
* @uses __('Search results for "<i>%s</i>" %s:')
|
||||
* @uses __('%s match(es) inside table <i>%s</i>')
|
||||
* @uses __('Browse')
|
||||
* @uses __('Delete')
|
||||
* @uses __('<b>Total:</b> <i>%s</i> match(es)')
|
||||
* @uses __('Search in database')
|
||||
* @uses __('Word(s) or value(s) to search for (wildcard: "%"):')
|
||||
* @uses __('Find:')
|
||||
* @uses __('Words are separated by a space character (" ").')
|
||||
* @uses __('Inside table(s):')
|
||||
* @uses __('Unselect All')
|
||||
* @uses __('Select All')
|
||||
* @uses PMA_DBI_get_tables()
|
||||
* @uses PMA_sqlAddslashes()
|
||||
* @uses PMA_getSearchSqls()
|
||||
@ -65,7 +65,7 @@ require './libraries/db_common.inc.php';
|
||||
*/
|
||||
// If config variable $GLOBALS['cfg']['Usedbsearch'] is on false : exit.
|
||||
if (! $GLOBALS['cfg']['UseDbSearch']) {
|
||||
PMA_mysqlDie($GLOBALS['strAccessDenied'], '', false, $err_url);
|
||||
PMA_mysqlDie(__('Access denied'), '', false, $err_url);
|
||||
} // end if
|
||||
$url_query .= '&goto=db_search.php';
|
||||
$url_params['goto'] = 'db_search.php';
|
||||
@ -77,10 +77,10 @@ $url_params['goto'] = 'db_search.php';
|
||||
$tables_names_only = PMA_DBI_get_tables($GLOBALS['db']);
|
||||
|
||||
$search_options = array(
|
||||
'1' => $GLOBALS['strSearchOption1'],
|
||||
'2' => $GLOBALS['strSearchOption2'],
|
||||
'3' => $GLOBALS['strSearchOption3'],
|
||||
'4' => $GLOBALS['strSearchOption4'],
|
||||
'1' => __('at least one of the words'),
|
||||
'2' => __('all words'),
|
||||
'3' => __('the exact phrase'),
|
||||
'4' => __('as regular expression'),
|
||||
);
|
||||
|
||||
if (empty($_REQUEST['search_option']) || ! is_string($_REQUEST['search_option'])
|
||||
@ -239,7 +239,7 @@ if (isset($_REQUEST['submit_search'])) {
|
||||
echo '<br />' . "\n"
|
||||
.'<table class="data">' . "\n"
|
||||
.'<caption class="tblHeaders">' . "\n"
|
||||
.sprintf($GLOBALS['strSearchResultsFor'],
|
||||
.sprintf(__('Search results for "<i>%s</i>" %s:'),
|
||||
$searched, $option_str) . "\n"
|
||||
.'</caption>' . "\n";
|
||||
|
||||
@ -257,19 +257,19 @@ if (isset($_REQUEST['submit_search'])) {
|
||||
$sql_query .= $newsearchsqls['select_count'];
|
||||
|
||||
echo '<tr class="' . ($odd_row ? 'odd' : 'even') . '">'
|
||||
.'<td>' . sprintf($GLOBALS['strNumSearchResultsInTable'], $res_cnt,
|
||||
.'<td>' . sprintf(__('%s match(es) inside table <i>%s</i>'), $res_cnt,
|
||||
htmlspecialchars($each_table)) . "</td>\n";
|
||||
|
||||
if ($res_cnt > 0) {
|
||||
$this_url_params['sql_query'] = $newsearchsqls['select_fields'];
|
||||
echo '<td>' . PMA_linkOrButton(
|
||||
'sql.php' . PMA_generate_common_url($this_url_params),
|
||||
$GLOBALS['strBrowse'], '') . "</td>\n";
|
||||
__('Browse'), '') . "</td>\n";
|
||||
|
||||
$this_url_params['sql_query'] = $newsearchsqls['delete'];
|
||||
echo '<td>' . PMA_linkOrButton(
|
||||
'sql.php' . PMA_generate_common_url($this_url_params),
|
||||
$GLOBALS['strDelete'], $newsearchsqls['delete']) . "</td>\n";
|
||||
__('Delete'), $newsearchsqls['delete']) . "</td>\n";
|
||||
|
||||
} else {
|
||||
echo '<td> </td>' . "\n"
|
||||
@ -282,7 +282,7 @@ if (isset($_REQUEST['submit_search'])) {
|
||||
echo '</table>' . "\n";
|
||||
|
||||
if (count($tables_selected) > 1) {
|
||||
echo '<p>' . sprintf($GLOBALS['strNumSearchResultsTotal'],
|
||||
echo '<p>' . sprintf(__('<b>Total:</b> <i>%s</i> match(es)'),
|
||||
$num_search_result_total) . '</p>' . "\n";
|
||||
}
|
||||
} // end 1.
|
||||
@ -296,22 +296,22 @@ if (isset($_REQUEST['submit_search'])) {
|
||||
<form method="post" action="db_search.php" name="db_search">
|
||||
<?php echo PMA_generate_common_hidden_inputs($GLOBALS['db']); ?>
|
||||
<fieldset>
|
||||
<legend><?php echo $GLOBALS['strSearchFormTitle']; ?></legend>
|
||||
<legend><?php echo __('Search in database'); ?></legend>
|
||||
|
||||
<table class="formlayout">
|
||||
<tr><td><?php echo $GLOBALS['strSearchNeedle']; ?></td>
|
||||
<tr><td><?php echo __('Word(s) or value(s) to search for (wildcard: "%"):'); ?></td>
|
||||
<td><input type="text" name="search_str" size="60"
|
||||
value="<?php echo $searched; ?>" /></td>
|
||||
</tr>
|
||||
<tr><td align="right" valign="top">
|
||||
<?php echo $GLOBALS['strSearchType']; ?></td>
|
||||
<?php echo __('Find:'); ?></td>
|
||||
<td><?php
|
||||
|
||||
$choices = array(
|
||||
'1' => $GLOBALS['strSearchOption1'] . PMA_showHint($GLOBALS['strSplitWordsWithSpace']),
|
||||
'2' => $GLOBALS['strSearchOption2'] . PMA_showHint($GLOBALS['strSplitWordsWithSpace']),
|
||||
'3' => $GLOBALS['strSearchOption3'],
|
||||
'4' => $GLOBALS['strSearchOption4'] . ' ' . PMA_showMySQLDocu('Regexp', 'Regexp')
|
||||
'1' => __('at least one of the words') . PMA_showHint(__('Words are separated by a space character (" ").')),
|
||||
'2' => __('all words') . PMA_showHint(__('Words are separated by a space character (" ").')),
|
||||
'3' => __('the exact phrase'),
|
||||
'4' => __('as regular expression') . ' ' . PMA_showMySQLDocu('Regexp', 'Regexp')
|
||||
);
|
||||
// 4th parameter set to true to add line breaks
|
||||
// 5th parameter set to false to avoid htmlspecialchars() escaping in the label
|
||||
@ -322,7 +322,7 @@ unset($choices);
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td align="right" valign="top">
|
||||
<?php echo $GLOBALS['strSearchInTables']; ?></td>
|
||||
<?php echo __('Inside table(s):'); ?></td>
|
||||
<td rowspan="2">
|
||||
<?php
|
||||
echo ' <select name="table_select[]" size="6" multiple="multiple">' . "\n";
|
||||
@ -341,10 +341,10 @@ foreach ($tables_names_only as $each_table) {
|
||||
echo ' </select>' . "\n";
|
||||
$alter_select =
|
||||
'<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('selectall' => 1))) . '#db_search"'
|
||||
. ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . $GLOBALS['strSelectAll'] . '</a>'
|
||||
. ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . __('Select All') . '</a>'
|
||||
. ' / '
|
||||
. '<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('unselectall' => 1))) . '#db_search"'
|
||||
. ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', false); return false;">' . $GLOBALS['strUnselectAll'] . '</a>';
|
||||
. ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', false); return false;">' . __('Unselect All') . '</a>';
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
@ -352,14 +352,14 @@ $alter_select =
|
||||
<?php echo $alter_select; ?></td>
|
||||
</tr>
|
||||
<tr><td align="right">
|
||||
<?php echo $GLOBALS['strSearchInField']; ?></td>
|
||||
<?php echo __('Inside field:'); ?></td>
|
||||
<td><input type="text" name="field_str" size="60"
|
||||
value="<?php echo ! empty($field_str) ? $field_str : ''; ?>" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
<fieldset class="tblFooters">
|
||||
<input type="submit" name="submit_search" value="<?php echo $GLOBALS['strGo']; ?>"
|
||||
<input type="submit" name="submit_search" value="<?php echo __('Go'); ?>"
|
||||
id="buttonGo" />
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
@ -477,23 +477,23 @@ require_once './libraries/messages.inc.php';
|
||||
// now, that we have loaded the language strings we can send the errors
|
||||
if ($GLOBALS['lang_failed_cfg']) {
|
||||
trigger_error(
|
||||
sprintf($GLOBALS['strLanguageUnknown'],
|
||||
sprintf(__('Unknown language: %1$s.'),
|
||||
htmlspecialchars($GLOBALS['lang_failed_cfg'])),
|
||||
E_USER_ERROR);
|
||||
}
|
||||
if ($GLOBALS['lang_failed_cookie']) {
|
||||
trigger_error(
|
||||
sprintf($GLOBALS['strLanguageUnknown'],
|
||||
sprintf(__('Unknown language: %1$s.'),
|
||||
htmlspecialchars($GLOBALS['lang_failed_cookie'])),
|
||||
E_USER_ERROR);
|
||||
}
|
||||
if ($GLOBALS['lang_failed_request']) {
|
||||
trigger_error(
|
||||
sprintf($GLOBALS['strLanguageUnknown'],
|
||||
sprintf(__('Unknown language: %1$s.'),
|
||||
htmlspecialchars($GLOBALS['lang_failed_request'])),
|
||||
E_USER_ERROR);
|
||||
}
|
||||
|
||||
unset($line, $fall_back_lang,
|
||||
$GLOBALS['lang_failed_cfg'], $GLOBALS['lang_failed_cookie'], $GLOBALS['ang_failed_request'], $GLOBALS['strLanguageUnknown']);
|
||||
$GLOBALS['lang_failed_cfg'], $GLOBALS['lang_failed_cookie'], $GLOBALS['ang_failed_request']);
|
||||
?>
|
||||
|
||||
192
po/af.po
192
po/af.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: afrikaans <af@li.org>\n"
|
||||
@ -43,7 +43,7 @@ msgstr "Soek"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -61,7 +61,7 @@ msgstr "Soek"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -196,11 +196,13 @@ msgstr ""
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Sien die storting (skema) van die databasis"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Kies Alles"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Selekteer Niks"
|
||||
|
||||
@ -506,14 +508,85 @@ msgstr "SQL-navraag op databasis <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Doen Navraag"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Toegang Geweier"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "ten minste een van die woorde"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle woorde"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "die presiese frase"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as 'n regular expression"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Soek resultate vir \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultate binne tabel <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Beloer Data"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Verwyder"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totaal:</b> <i>%s</i> ooreenkomste"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Soek in databasis"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Vind:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Binne tabel(le):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -678,8 +751,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Databasis"
|
||||
|
||||
@ -1065,13 +1138,6 @@ msgstr "Rekords"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Toegang Geweier"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1510,7 +1576,7 @@ msgstr "Geen Wagwoord"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Wagwoord"
|
||||
|
||||
@ -1798,14 +1864,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Die ry is verwyder"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Verwyder"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2156,7 +2214,7 @@ msgstr "Tabel struktuur vir tabel"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Gasheer (host)"
|
||||
|
||||
@ -3014,6 +3072,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Soek in databasis"
|
||||
@ -3041,6 +3100,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Soek in databasis"
|
||||
@ -3744,7 +3804,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3959,7 +4020,7 @@ msgid "Show processes"
|
||||
msgstr "Wys prosesse"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Geen databasisse"
|
||||
|
||||
@ -4065,16 +4126,6 @@ msgstr "Geen gebruiker(s) gevind nie."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultate binne tabel <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totaal:</b> <i>%s</i> ooreenkomste"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
#, fuzzy
|
||||
@ -4227,7 +4278,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sorteer"
|
||||
@ -4871,47 +4922,6 @@ msgstr "Stoor"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Die skaal faktor is te klein om die skema op een bladsy te pas"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Soek in databasis"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Binne tabel(le):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "ten minste een van die woorde"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle woorde"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "die presiese frase"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as 'n regular expression"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Soek resultate vir \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Vind:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5632,7 +5642,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5648,10 +5658,6 @@ msgstr "Spasie verbruik"
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5781,7 +5787,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6321,7 +6327,7 @@ msgstr "Die gebruiker naam ontbreek!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Gebruiker naam"
|
||||
|
||||
@ -6548,15 +6554,15 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/ar.po
192
po/ar.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: arabic <ar@li.org>\n"
|
||||
@ -43,7 +43,7 @@ msgstr "ابحث"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -61,7 +61,7 @@ msgstr "ابحث"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -194,11 +194,13 @@ msgstr "اطبع"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "عرض بنية قاعدة البيانات"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "تحديد الكل"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "إلغاء تحديد الكل"
|
||||
|
||||
@ -499,14 +501,85 @@ msgstr "في قاعدة البيانات SQL-إستعلام <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "إرسال الاستعلام"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "غير مسموح"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "على الأقل أحد الكلمات"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "كل الكلمات"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "الجملة بالضبط"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "كصيغة مطابقة"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "ابحث في النتائج عن \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s مطابقة في الجدول <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "استعراض"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>المجموع:</b> <i>%s</i>مطابقة"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "ابحث في قاعدة البيانات"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "ابحث:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "الكلمات مفصولة بحرف مسافة (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "داخل الجدول)الجداول(:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -671,8 +744,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "قاعدة البيانات"
|
||||
|
||||
@ -1056,13 +1129,6 @@ msgstr "لكل ثانية"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "غير مسموح"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1504,7 +1570,7 @@ msgstr "لا كلمة سر"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "كلمة السر"
|
||||
|
||||
@ -1789,14 +1855,6 @@ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "لقد تم حذف الصف"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2143,7 +2201,7 @@ msgstr "بنية الجدول"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "المزود"
|
||||
|
||||
@ -2985,6 +3043,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "تم حذف قواعد البيانات %s بنجاح."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -3011,6 +3070,7 @@ msgstr ""
|
||||
"الويب وخادم MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3719,7 +3779,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "الكورية"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3931,7 +3992,7 @@ msgid "Show processes"
|
||||
msgstr "عرض العمليات"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "لايوجد قواعد بيانات"
|
||||
|
||||
@ -4036,16 +4097,6 @@ msgstr "المستخدم(ون) لم يتم إيجادهم."
|
||||
msgid "Number of tables"
|
||||
msgstr "عدد الجداول"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s مطابقة في الجدول <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>المجموع:</b> <i>%s</i>مطابقة"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4193,7 +4244,7 @@ msgid "Polish"
|
||||
msgstr "البولندية"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4828,47 +4879,6 @@ msgstr "حفظ"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "نسبة الحجم المحددة صغيرة جدا لملائمة المخطط في صفحة واحدة."
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "ابحث في قاعدة البيانات"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "داخل الجدول)الجداول(:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "على الأقل أحد الكلمات"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "كل الكلمات"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "الجملة بالضبط"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "كصيغة مطابقة"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "ابحث في النتائج عن \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "ابحث:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية."
|
||||
@ -5586,7 +5596,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5602,10 +5612,6 @@ msgstr "المساحة المستغلة"
|
||||
msgid "Spanish"
|
||||
msgstr "أسبانية"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "الكلمات مفصولة بحرف مسافة (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "نوع التصدير"
|
||||
@ -5728,7 +5734,7 @@ msgstr "السويدية"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "بدل إلى الجدول المنسوخ"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6281,7 +6287,7 @@ msgstr "اسم المستخدم فارغ!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "اسم المستخدم"
|
||||
|
||||
@ -6510,17 +6516,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "اتصالات"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/az.po
192
po/az.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: azerbaijani <az@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "Axtarış"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "Axtarış"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -192,11 +192,13 @@ msgstr "Çap et"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Me'lumat bazasının sxemini göster"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Hamısını Seç"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Heç birini seçme"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "SQL-query on database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Emri İcra Et"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Giriş Tesdiq Edilmedi"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "sözlerin en azından birini"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "bütün sözleri"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tamamile eyni sözü"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "requlyar ifade (regular expression) olaraq"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" üçün axtarış neticeleri %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s uyğunluq tapıldı (<i>%s</i> cedvelinde)"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "İçindekiler"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Cemi:</b> <i>%s</i> uyğunluq"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Search in database"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Tap:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Inside table(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Me'lumat Bazası"
|
||||
|
||||
@ -1065,13 +1138,6 @@ msgstr "saniyede"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Elaqe qura bilmirem: yalnış quruluş."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Giriş Tesdiq Edilmedi"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1517,7 +1583,7 @@ msgstr "Parol Yoxdur"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Parol"
|
||||
|
||||
@ -1805,14 +1871,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Setir silindi"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2163,7 +2221,7 @@ msgstr "Table structure for table"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3028,6 +3086,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s bazası müveffeqiyyetle leğv edildi."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Search in database"
|
||||
@ -3055,6 +3114,7 @@ msgstr ""
|
||||
"MySQL server arasında ağır neqliyyata sebeb ola bilersiniz."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Search in database"
|
||||
@ -3773,7 +3833,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3989,7 +4050,7 @@ msgid "Show processes"
|
||||
msgstr "Prosesleri göster"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
|
||||
|
||||
@ -4096,16 +4157,6 @@ msgstr "İstifadeçi(ler) tapılmadı."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s uyğunluq tapıldı (<i>%s</i> cedvelinde)"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Cemi:</b> <i>%s</i> uyğunluq"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4258,7 +4309,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sırala"
|
||||
@ -4909,47 +4960,6 @@ msgstr "Qeyd Et"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "The scale factor is too small to fit the schema on one page"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Search in database"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Inside table(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "sözlerin en azından birini"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "bütün sözleri"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tamamile eyni sözü"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "requlyar ifade (regular expression) olaraq"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" üçün axtarış neticeleri %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Tap:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5671,7 +5681,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5687,10 +5697,6 @@ msgstr "Yer istifadesi"
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Eksport şekli"
|
||||
@ -5817,7 +5823,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Kopyalanmış cedvele keç"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6380,7 +6386,7 @@ msgstr "İstifadeçi adı boş qaldı!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "İstifadeçi adı"
|
||||
|
||||
@ -6609,17 +6615,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Elaqeler"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/be.po
192
po/be.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: belarusian_cyrillic <be@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Пошук"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Пошук"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Друк"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Праглядзець дамп (схему) базы дадзеных"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Выбраць усё"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Зьняць усе адзнакі"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "SQL-запыт да БД <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Выканаць запыт"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "У доступе адмоўлена"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "прынамсі адно з словаў"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "усе словы"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "дакладную фразу"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "рэгулярны выраз"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Вынікі пошуку \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s супадзеньняў у табліцы <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Прагляд"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Выдаліць"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Агулам:</b> <i>%s</i> супадзеньняў"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Пошук у базе дадзеных"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Знайсьці:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Словы, падзеленыя прагалам (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "У табліцы(ах):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Унутры поля:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -679,8 +752,8 @@ msgstr "Праверыць табліцу"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "База дадзеных"
|
||||
|
||||
@ -1070,13 +1143,6 @@ msgstr "у сэкунду"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Немагчыма падлучыцца: няправільныя налады."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "У доступе адмоўлена"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1534,7 +1600,7 @@ msgstr "Без пароля"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
@ -1826,14 +1892,6 @@ msgstr "Выканаць запыт з закладак"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Радок быў выдалены"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Выдаліць"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2228,7 +2286,7 @@ msgstr "Структура табліцы"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
@ -3093,6 +3151,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s базаў дадзеных былі пасьпяхова выдаленыя."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Пошук у базе дадзеных"
|
||||
@ -3120,6 +3179,7 @@ msgstr ""
|
||||
"колькасьць трафіку паміж вэб-сэрвэрам і сэрвэрам MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Пошук у базе дадзеных"
|
||||
@ -3846,7 +3906,8 @@ msgstr "Кэш ключоў"
|
||||
msgid "Korean"
|
||||
msgstr "Карэйская"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Невядомая мова: %1$s."
|
||||
@ -4068,7 +4129,7 @@ msgid "Show processes"
|
||||
msgstr "Паказаць працэсы"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Базы дадзеных адсутнічаюць"
|
||||
|
||||
@ -4180,16 +4241,6 @@ msgstr "Не знойдзены карыстальнік."
|
||||
msgid "Number of tables"
|
||||
msgstr "Колькасьць табліц"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s супадзеньняў у табліцы <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Агулам:</b> <i>%s</i> супадзеньняў"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4338,7 +4389,7 @@ msgid "Polish"
|
||||
msgstr "Польская"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Парадак"
|
||||
@ -4993,47 +5044,6 @@ msgstr "Захаваць"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Маштаб замалы для таго, каб схема займала ўсю старонку"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Пошук у базе дадзеных"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Унутры поля:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "У табліцы(ах):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "прынамсі адно з словаў"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "усе словы"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "дакладную фразу"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "рэгулярны выраз"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Вынікі пошуку \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Знайсьці:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5886,7 +5896,7 @@ msgstr "Згарнуць/разгарнуць адлюстраваньне ўс
|
||||
msgid "Snap to grid"
|
||||
msgstr "Зьвяць зь сеткай"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5902,10 +5912,6 @@ msgstr "Выкарыстаньне прасторы"
|
||||
msgid "Spanish"
|
||||
msgstr "Гішпанская"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Словы, падзеленыя прагалам (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Тып экспарту"
|
||||
@ -6039,7 +6045,7 @@ msgstr "Швэдзкая"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Перайсьці да скапіяванай табліцы"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6628,7 +6634,7 @@ msgstr "Пустое імя карыстальніка!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Імя карыстальніка"
|
||||
|
||||
@ -6867,17 +6873,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "максымум адначасовых злучэньняў"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/be@latin.po
192
po/be@latin.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: belarusian_latin <be@latin@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Pošuk"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "Pošuk"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr "Druk"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Prahladzieć damp (schiemu) bazy dadzienych"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Vybrać usio"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Źniać usie adznaki"
|
||||
|
||||
@ -503,14 +505,85 @@ msgstr "SQL-zapyt da BD %s:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Vykanać zapyt"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "U dostupie admoŭlena"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "prynamsi adno z słovaŭ"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "usie słovy"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "dakładnuju frazu"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "rehularny vyraz"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Vyniki pošuku \"%s\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s supadzieńniaŭ u tablicy %s"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Prahlad"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Vydalić"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "Ahułam: %s supadzieńniaŭ"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pošuk u bazie dadzienych"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Znajści:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Słovy, padzielenyja prahałam (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "U tablicy(ach):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Unutry pola:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -679,8 +752,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Baza dadzienych"
|
||||
|
||||
@ -1064,13 +1137,6 @@ msgstr "u sekundu"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Niemahčyma padłučycca: niapravilnyja nałady."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "U dostupie admoŭlena"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1528,7 +1594,7 @@ msgstr "Biez parola"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Parol"
|
||||
|
||||
@ -1820,14 +1886,6 @@ msgstr "Vykanać zapyt z zakładak"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Radok byŭ vydaleny"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Vydalić"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2226,7 +2284,7 @@ msgstr "Struktura tablicy"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Chost"
|
||||
|
||||
@ -3086,6 +3144,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s bazaŭ dadzienych byli paśpiachova vydalenyja."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -3112,6 +3171,7 @@ msgstr ""
|
||||
"kolkaść trafiku pamiž web-serveram i serveram MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3833,7 +3893,8 @@ msgstr "Keš klučoŭ"
|
||||
msgid "Korean"
|
||||
msgstr "Karejskaja"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Nieviadomaja mova: %1$s."
|
||||
@ -4056,7 +4117,7 @@ msgid "Show processes"
|
||||
msgstr "Pakazać pracesy"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Bazy dadzienych adsutničajuć"
|
||||
|
||||
@ -4167,16 +4228,6 @@ msgstr "Nie znojdzieny karystalnik."
|
||||
msgid "Number of tables"
|
||||
msgstr "Kolkaść tablic"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s supadzieńniaŭ u tablicy %s"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "Ahułam: %s supadzieńniaŭ"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4324,7 +4375,7 @@ msgid "Polish"
|
||||
msgstr "Polskaja"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4970,47 +5021,6 @@ msgstr "Zachavać"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Maštab zamały dla taho, kab schiema zajmała ŭsiu staronku"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pošuk u bazie dadzienych"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Unutry pola:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "U tablicy(ach):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "prynamsi adno z słovaŭ"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "usie słovy"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "dakładnuju frazu"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "rehularny vyraz"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Vyniki pošuku \"%s\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Znajści:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5864,7 +5874,7 @@ msgstr "Zharnuć/razharnuć adlustravańnie ŭsich tablic"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Źviać ź sietkaj"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5880,10 +5890,6 @@ msgstr "Vykarystańnie prastory"
|
||||
msgid "Spanish"
|
||||
msgstr "Hišpanskaja"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Słovy, padzielenyja prahałam (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Typ ekspartu"
|
||||
@ -6015,7 +6021,7 @@ msgstr "Švedzkaja"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Pierajści da skapijavanaj tablicy"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6603,7 +6609,7 @@ msgstr "Pustoje imia karystalnika!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Imia karystalnika"
|
||||
|
||||
@ -6837,17 +6843,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "maksymum adnačasovych złučeńniaŭ"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/bg.po
192
po/bg.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: bulgarian <bg@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Търсене"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Търсене"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Печат"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Схема на БД"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Селектиране на всичко"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Деселектиране на всичко"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "SQL-заявка към базата от данни <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Изпълни заявката"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Отказан достъп"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "поне една от думите"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "всички думи"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точната фраза"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "като регулярен израз"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Резултати от търсенето на \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s съвпадение(я) в таблица <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Прелистване"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Изтриване"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Общо:</b> <i>%s</i> съвпадение(я)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Търсене в базата от данни"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Намери:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Думите трябва да се разделят с интервал (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "В таблиците:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -673,8 +746,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "БД"
|
||||
|
||||
@ -1063,13 +1136,6 @@ msgstr "на секунда"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Връзката не може да бъде осъществена: невалидни настройки."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Отказан достъп"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1519,7 +1585,7 @@ msgstr "Няма парола"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
@ -1808,14 +1874,6 @@ msgstr "Стартиране на запазена SQL-заявка"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Редът беше изтрит"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Изтриване"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2166,7 +2224,7 @@ msgstr "Структура на таблица"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
@ -3033,6 +3091,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s бази от данни бяха изтрити успешно."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Търсене в базата от данни"
|
||||
@ -3060,6 +3119,7 @@ msgstr ""
|
||||
"много голям трафик между уеб сървъра и MySQL сървъра."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Търсене в базата от данни"
|
||||
@ -3780,7 +3840,8 @@ msgstr "Кеш на заявките"
|
||||
msgid "Korean"
|
||||
msgstr "Корейски"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3998,7 +4059,7 @@ msgid "Show processes"
|
||||
msgstr "MySQL процеси"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Няма бази от данни"
|
||||
|
||||
@ -4105,16 +4166,6 @@ msgstr "Няма потребител(и)."
|
||||
msgid "Number of tables"
|
||||
msgstr "Брой полета"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s съвпадение(я) в таблица <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Общо:</b> <i>%s</i> съвпадение(я)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4265,7 +4316,7 @@ msgid "Polish"
|
||||
msgstr "Полски"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Сортиране"
|
||||
@ -4923,47 +4974,6 @@ msgstr "Записване"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Мащаба е твърде малък за да се събере схемата на една страница"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Търсене в базата от данни"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "В таблиците:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "поне една от думите"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "всички думи"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точната фраза"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "като регулярен израз"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Резултати от търсенето на \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Намери:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Конфигурационния файл има нужда от тайна парола (blowfish_secret)."
|
||||
@ -5694,7 +5704,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5710,10 +5720,6 @@ msgstr "Използвано място"
|
||||
msgid "Spanish"
|
||||
msgstr "Испански"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Думите трябва да се разделят с интервал (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Тип на експортирането"
|
||||
@ -5841,7 +5847,7 @@ msgstr "Шведски"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Превключване към копираната таблица"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6410,7 +6416,7 @@ msgstr "Потребителското име е празно!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Потребителско име"
|
||||
|
||||
@ -6644,17 +6650,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Максимален брой на едновременните конекции"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/bn.po
192
po/bn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: bangla <bn@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "খুঁজুন"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "খুঁজুন"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "প্রিন্ট কর"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "View dump (schema) of database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "সব সিলেক্ট করুন"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Unselect All"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "SQL query on database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Submit Query"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "প্রবেশ নিষেধ"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "at least one of the words"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "সব শব্দ"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "the exact phrase"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Search results for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "ব্রাউজ করুন"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "মুছে ফেল"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "ডাটাবে এ খুজুঁনSearch in database"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Find:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Inside table(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -674,8 +747,8 @@ msgstr "টেবিল পরীক্ষা কর"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "ডাটাবেজ"
|
||||
|
||||
@ -1063,13 +1136,6 @@ msgstr "per second"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "প্রবেশ নিষেধ"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1523,7 +1589,7 @@ msgstr "কোন পাসওয়ার্ড নাই"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "পাসওয়ার্ড"
|
||||
|
||||
@ -1816,14 +1882,6 @@ msgstr "Execute bookmarked query"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "সারিটি মুছে ফেলা হয়েছে"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "মুছে ফেল"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2190,7 +2248,7 @@ msgstr "Table structure for table"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "হোষ্ট"
|
||||
|
||||
@ -3058,6 +3116,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে "
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "ডাটাবে এ খুজুঁনSearch in database"
|
||||
@ -3085,6 +3144,7 @@ msgstr ""
|
||||
"between the web server and the MySQL server."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "ডাটাবে এ খুজুঁনSearch in database"
|
||||
@ -3808,7 +3868,8 @@ msgstr "Key cache"
|
||||
msgid "Korean"
|
||||
msgstr "কোরিয়ান"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Unknown language: %1$s."
|
||||
@ -4030,7 +4091,7 @@ msgid "Show processes"
|
||||
msgstr "প্রসেসসমূহ দেখান"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "কোন ডাটাবেজ নাই"
|
||||
|
||||
@ -4143,16 +4204,6 @@ msgstr "No user(s) found."
|
||||
msgid "Number of tables"
|
||||
msgstr "Number of fields"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4303,7 +4354,7 @@ msgid "Polish"
|
||||
msgstr "পোলিশ"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "সাজাঁন"
|
||||
@ -4953,47 +5004,6 @@ msgstr "সেভ করুন"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "The scale factor is too small to fit the schema on one page"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "ডাটাবে এ খুজুঁনSearch in database"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Inside table(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "at least one of the words"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "সব শব্দ"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "the exact phrase"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Search results for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Find:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5820,7 +5830,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5836,10 +5846,6 @@ msgstr "Space usage"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanish"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Export type"
|
||||
@ -5969,7 +5975,7 @@ msgstr "সুইডিশ"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Switch to copied table"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6550,7 +6556,7 @@ msgstr "The user name is empty!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "ব্যাভারকারীর নাম"
|
||||
|
||||
@ -6784,17 +6790,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "max. concurrent connections"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/bs.po
192
po/bs.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: bosnian <bs@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Pretraživanje"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Pretraživanje"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Štampaj"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Prikaži sadržaj (shemu) baze"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Izaberi sve"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "ništa"
|
||||
|
||||
@ -504,14 +506,85 @@ msgstr "SQL upit na bazi <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Izvrši SQL upit"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ulaz nije dozvoljen"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "bar jednu od riječi"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "sve riječi"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tačan izraz"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kao regularni izraz"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s pogodaka unutar tabele <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Pregled"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Obriši"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pretraživanje baze"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Traži:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Riječi se odvajaju razmakom (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Unutar tabela:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Baza podataka"
|
||||
|
||||
@ -1065,13 +1138,6 @@ msgstr "u sekundi"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ulaz nije dozvoljen"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1517,7 +1583,7 @@ msgstr "Nema lozinke"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Lozinka"
|
||||
|
||||
@ -1805,14 +1871,6 @@ msgstr "Izvrši upamćen upit"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Red je obrisan"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Obriši"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2162,7 +2220,7 @@ msgstr "Struktura tabele"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3027,6 +3085,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s baza je uspješno odbačena."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Pretraživanje baze"
|
||||
@ -3054,6 +3113,7 @@ msgstr ""
|
||||
"između web i MySQL servera."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Pretraživanje baze"
|
||||
@ -3772,7 +3832,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Korejski"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3988,7 +4049,7 @@ msgid "Show processes"
|
||||
msgstr "Prikaži listu procesa"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
@ -4094,16 +4155,6 @@ msgstr "Korisnik nije nađen."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s pogodaka unutar tabele <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4255,7 +4306,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sortiranje"
|
||||
@ -4907,47 +4958,6 @@ msgstr "Sačuvaj"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Faktor umanjenja je premali da bi shema stala na jednu stranu"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pretraživanje baze"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Unutar tabela:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "bar jednu od riječi"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "sve riječi"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tačan izraz"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kao regularni izraz"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Traži:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)."
|
||||
@ -5669,7 +5679,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5686,10 +5696,6 @@ msgstr "Zauzeće"
|
||||
msgid "Spanish"
|
||||
msgstr "Danski"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Riječi se odvajaju razmakom (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5816,7 +5822,7 @@ msgstr "Švedski"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Pređi na kopiranu tabelu"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6377,7 +6383,7 @@ msgstr "Ime korisnika nije unijeto!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Ime korisnika"
|
||||
|
||||
@ -6605,17 +6611,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Konekcije"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/ca.po
192
po/ca.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: catalan <ca@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Cerca"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Cerca"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Imprimeix"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Veure l'esquema de la base de dades"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Tria Tot"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Desmarca tot"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "Consulta SQL a la base de dades <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Executa consulta"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Accés denegat"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "al menys una d'aquestes paraules"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "Totes les paraules"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "La frase exacta"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "com a expressió regular"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Resultats de la recerca per a \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultat(s) a la taula <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Navega"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Esborra"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultat(s)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cerca a la base de dades"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Paraula(es) o valor(s) a cercar (comodí: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Trobat:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Paraules separades per un espai (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "A la(les) taula(es):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Camp interior:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -673,8 +746,8 @@ msgstr "Taules seguides"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Base de dades"
|
||||
|
||||
@ -1059,13 +1132,6 @@ msgstr "per segon"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "No puc connectar: paràmetres incorrectes."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Accés denegat"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1521,7 +1587,7 @@ msgstr "Sense contrasenya"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
@ -1819,14 +1885,6 @@ msgstr "Executa una consulta desada"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "S'ha esborrat la fila"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Esborra"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2222,7 +2280,7 @@ msgstr "Estructura de la taula"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Servidor"
|
||||
|
||||
@ -3087,6 +3145,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s Bases de dades s'han esborrat correctament."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Base de dades origen"
|
||||
|
||||
@ -3113,6 +3172,7 @@ msgstr ""
|
||||
"tràfic entre el servidor Web i el de MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Base de dades destinació"
|
||||
|
||||
@ -3841,7 +3901,8 @@ msgstr "Memòria cau de claus"
|
||||
msgid "Korean"
|
||||
msgstr "Coreà"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Idioma desconegut: %1$s."
|
||||
@ -4064,7 +4125,7 @@ msgid "Show processes"
|
||||
msgstr "Mostra els processos"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "No hi ha Bases de Dades"
|
||||
|
||||
@ -4176,16 +4237,6 @@ msgstr "No s'han trobat usuaris."
|
||||
msgid "Number of tables"
|
||||
msgstr "Nombre de taules"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultat(s) a la taula <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultat(s)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4334,7 +4385,7 @@ msgid "Polish"
|
||||
msgstr "Polac"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -5005,47 +5056,6 @@ msgstr "Desa"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "El factor de l'escala és massa petit per posar l'esquema en una pàgina"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cerca a la base de dades"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Camp interior:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "A la(les) taula(es):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Paraula(es) o valor(s) a cercar (comodí: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "al menys una d'aquestes paraules"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "Totes les paraules"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "La frase exacta"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "com a expressió regular"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Resultats de la recerca per a \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Trobat:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5894,7 +5904,7 @@ msgstr "Tot Petit/Gran"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Alinia a la graella"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Sòcol"
|
||||
|
||||
@ -5910,10 +5920,6 @@ msgstr "Utilització d'espai"
|
||||
msgid "Spanish"
|
||||
msgstr "Espanyol"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Paraules separades per un espai (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Tipus d' Exportació"
|
||||
@ -6043,7 +6049,7 @@ msgstr "Suec"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Canvia a una taula copiada"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6627,7 +6633,7 @@ msgstr "El nom d'usuari és buit!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nom d'usuari"
|
||||
|
||||
@ -6879,17 +6885,17 @@ msgstr ""
|
||||
"a més informació sobre l'estat de replicació al servidor, mira la secció "
|
||||
"<ahref=\"#replication\">replicació</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Connexió insegura"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/cs.po
192
po/cs.po
@ -4,7 +4,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-05-06 07:14+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: czech <cs@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Vyhledávání"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "Vyhledávání"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr "Vytisknout"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Export databáze"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Vybrat vše"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Odznačit vše"
|
||||
|
||||
@ -497,14 +499,85 @@ msgstr "SQL dotaz na databázi <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Provést dotaz"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Přístup odepřen"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "alespoň jedno ze slov"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "všechna slova"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "přesnou frázi"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "jako regulární výraz"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Výsledky vyhledávání pro „<i>%s</i>“ %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s odpovídající(ch) záznam(ů) v tabulce <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Projít"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Odstranit"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Celkem:</b> <i>%s</i> odpovídající(ch) záznam(ů)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Vyhledávání v databázi"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Najít:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Slova jsou oddělena mezerou („ “)."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "V tabulkách:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Uvnitř pole:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -670,8 +743,8 @@ msgstr "Sledované tabulky"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Databáze"
|
||||
|
||||
@ -1005,13 +1078,6 @@ msgstr "Sekundy"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Nepodařilo se připojit: chybné nastavení."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Přístup odepřen"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1462,7 +1528,7 @@ msgstr "Žádné heslo"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
@ -1753,14 +1819,6 @@ msgstr "Spustit oblíbený dotaz"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Řádek byl smazán"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Odstranit"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2148,7 +2206,7 @@ msgstr "Struktura tabulky"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Počítač"
|
||||
|
||||
@ -3007,6 +3065,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databáze byla úspěšně zrušena."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Zdrojová databáze"
|
||||
|
||||
@ -3033,6 +3092,7 @@ msgstr ""
|
||||
"provozu mezi webserverem a MySQL serverem."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Cílová databáze"
|
||||
|
||||
@ -3753,7 +3813,8 @@ msgstr "Vyrovnávací paměť klíčů"
|
||||
msgid "Korean"
|
||||
msgstr "Korejština"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Neznámý jazyk: %1$s."
|
||||
@ -3975,7 +4036,7 @@ msgid "Show processes"
|
||||
msgstr "Zobrazit procesy"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Žádné databáze"
|
||||
|
||||
@ -4084,16 +4145,6 @@ msgstr "Žádný uživatel nenalezen."
|
||||
msgid "Number of tables"
|
||||
msgstr "Počet tabulek"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s odpovídající(ch) záznam(ů) v tabulce <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Celkem:</b> <i>%s</i> odpovídající(ch) záznam(ů)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4246,7 +4297,7 @@ msgid "Polish"
|
||||
msgstr "Polština"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -4907,47 +4958,6 @@ msgstr "Uložit"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Měřítko je příliš malé, aby se schéma vešlo na jednu stránku"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Vyhledávání v databázi"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Uvnitř pole:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "V tabulkách:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "alespoň jedno ze slov"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "všechna slova"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "přesnou frázi"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "jako regulární výraz"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Výsledky vyhledávání pro „<i>%s</i>“ %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Najít:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5769,7 +5779,7 @@ msgstr "Vše malé/velké"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Zachytávat na mřížku"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Socket"
|
||||
|
||||
@ -5785,10 +5795,6 @@ msgstr "Využití místa"
|
||||
msgid "Spanish"
|
||||
msgstr "Španělština"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Slova jsou oddělena mezerou („ “)."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Typ vytvořených dotazů"
|
||||
@ -5917,7 +5923,7 @@ msgstr "Švédština"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Přepnout na zkopírovanou tabulku"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6500,7 +6506,7 @@ msgstr "Jméno uživatele je prázdné!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Jméno uživatele"
|
||||
|
||||
@ -6727,15 +6733,15 @@ msgstr ""
|
||||
"Pro více informací o stavu replikace se podívejte do <a href=\"#replication"
|
||||
"\">sekce replikace</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr "Zadat ručně"
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr "Současné připojení"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr "Konfigurace: %s"
|
||||
|
||||
192
po/da.po
192
po/da.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: danish <da@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Søg"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Søg"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Print"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Vis dump (skema) af database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Vælg alle"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Fravælg alle"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "SQL-forespørgsel til database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Send forespørgsel"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Adgang Nægtet"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "mindst et af ordene"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle ordene"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "den nøjagtige sætning"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "som regulært udtryk"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Søgeresultater for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s hit(s) i tabel <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Vis"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Slet"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> hit(s)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Søg i databasen"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Ord eller værdi(er) (jokertegn: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Find:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Ord adskilles af mellemrums-karakter (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Indeni tabel(ler):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -672,8 +745,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
@ -1056,13 +1129,6 @@ msgstr "pr. sekund"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Kan ikke forbinde: ugyldige indstillinger."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Adgang Nægtet"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1514,7 +1580,7 @@ msgstr "Intet kodeord"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Kodeord"
|
||||
|
||||
@ -1806,14 +1872,6 @@ msgstr "Udfør forespørgsel iflg. bogmærke"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Rækken er slettet!"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Slet"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2178,7 +2236,7 @@ msgstr "Struktur-dump for tabellen"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Vært"
|
||||
|
||||
@ -3032,6 +3090,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databaser er blevet droppet korrekt."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -3058,6 +3117,7 @@ msgstr ""
|
||||
"mellem webserveren og MySQL-serveren."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3774,7 +3834,8 @@ msgstr "Nøglemellemlager (key cache)"
|
||||
msgid "Korean"
|
||||
msgstr "Koreansk"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Ukendt sprog: %1$s."
|
||||
@ -3998,7 +4059,7 @@ msgid "Show processes"
|
||||
msgstr "Vis tråde"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Ingen databaser"
|
||||
|
||||
@ -4110,16 +4171,6 @@ msgstr "Ingen bruger(e) fundet."
|
||||
msgid "Number of tables"
|
||||
msgstr "Antal tabeller"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s hit(s) i tabel <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> hit(s)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4267,7 +4318,7 @@ msgid "Polish"
|
||||
msgstr "Polsk"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4910,47 +4961,6 @@ msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
"Skaleringsfaktoren er for lille til at tilpasse skematikken til en side"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Søg i databasen"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Indeni tabel(ler):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Ord eller værdi(er) (jokertegn: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "mindst et af ordene"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle ordene"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "den nøjagtige sætning"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "som regulært udtryk"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Søgeresultater for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Find:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5786,7 +5796,7 @@ msgstr "Små/store alle"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Snap til gitter"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5802,10 +5812,6 @@ msgstr "Pladsforbrug"
|
||||
msgid "Spanish"
|
||||
msgstr "Spansk"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Ord adskilles af mellemrums-karakter (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Eksporttype"
|
||||
@ -5934,7 +5940,7 @@ msgstr "Svensk"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Skift til den kopierede tabel"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6515,7 +6521,7 @@ msgstr "Intet brugernavn!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Brugernavn"
|
||||
|
||||
@ -6747,17 +6753,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "maks. samtidige forbindelser"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/de.po
192
po/de.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-23 21:07+0200\n"
|
||||
"Last-Translator: <me@michaelkeck.de>\n"
|
||||
"Language-Team: german <de@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Suche"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Suche"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Drucken"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Dump (Schema) der Datenbank anzeigen"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Alle auswählen"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Auswahl entfernen"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr " SQL-Befehl in der Datenbank <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "SQL-Befehl ausführen"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Zugriff verweigert."
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "mindestens eines der Wörter"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle Wörter"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "genau diese Zeichenkette"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "als regulären Ausdruck"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Suchergebnisse für \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s Treffer in der Tabelle <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Anzeigen"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Insgesamt</b> <i>%s</i> Treffer"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Durchsuche die Datenbank"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Finde:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "In der / den Tabelle(n):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Im Feld:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr "Verfolgte Tabellen"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Datenbank"
|
||||
|
||||
@ -1067,13 +1140,6 @@ msgstr ""
|
||||
"Die Verbindung konnte aufgrund von ungültigen Einstellungen nicht "
|
||||
"hergestellt werden."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Zugriff verweigert."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1542,7 +1608,7 @@ msgstr "Kein Passwort"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
@ -1837,14 +1903,6 @@ msgstr "Gespeicherte SQL-Anfrage ausführen"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Die Zeile wurde gelöscht."
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2235,7 +2293,7 @@ msgstr "Tabellenstruktur für Tabelle"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3105,6 +3163,7 @@ msgstr "Es wurden %s Datenbanken gelöscht."
|
||||
|
||||
# source != search / Source != Suche
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Quell-Datenbank"
|
||||
|
||||
@ -3131,6 +3190,7 @@ msgstr ""
|
||||
"Traffic zwischen dem Web- und dem MySQL-Server zur Folge haben."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Durchsuche die Datenbank"
|
||||
@ -3860,7 +3920,8 @@ msgstr "Schlüssel-Cache"
|
||||
msgid "Korean"
|
||||
msgstr "Koreanisch"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Unbekannte Sprache: \"%1$s\"."
|
||||
@ -4086,7 +4147,7 @@ msgid "Show processes"
|
||||
msgstr "Prozesse anzeigen"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Keine Datenbanken"
|
||||
|
||||
@ -4198,16 +4259,6 @@ msgstr "Es wurden keine Benutzer gefunden."
|
||||
msgid "Number of tables"
|
||||
msgstr "Anzahl Tabellen"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s Treffer in der Tabelle <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Insgesamt</b> <i>%s</i> Treffer"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4356,7 +4407,7 @@ msgid "Polish"
|
||||
msgstr "Polnisch"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sortierung"
|
||||
@ -5022,47 +5073,6 @@ msgstr ""
|
||||
"Der Skalierungsfaktor ist zu klein, sodass das Schema nicht auf eine Seite "
|
||||
"passt!"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Durchsuche die Datenbank"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Im Feld:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "In der / den Tabelle(n):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "mindestens eines der Wörter"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle Wörter"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "genau diese Zeichenkette"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "als regulären Ausdruck"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Suchergebnisse für \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Finde:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5923,7 +5933,7 @@ msgstr "Alles klein/groß"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Am Gitter anordnen"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5939,10 +5949,6 @@ msgstr "Speicherplatzverbrauch"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanisch"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Exporttyp"
|
||||
@ -6078,7 +6084,7 @@ msgstr "Schwedisch"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Zur kopierten Tabelle wechseln"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6670,7 +6676,7 @@ msgstr "Kein Benutzername eingegeben!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Benutzername"
|
||||
|
||||
@ -6910,17 +6916,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Unsichere Verbindung"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/el.po
192
po/el.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: greek <el@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Αναζήτηση"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Αναζήτηση"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Εκτύπωση"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Εμφάνιση σχήματος της βάσης δεδομένων"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Επιλογή όλων"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Απεπιλογή όλων"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "Εντολή SQL στη βάση <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Υποβολή ερωτήματος"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Άρνηση Πρόσβασης"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "τουλάχιστον έναν από τους όρους"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "όλους τους όρους"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "την ακριβή φράση"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "ως κανονική έκφραση"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Αποτελέσματα αναζήτησης για «<i>%s</i>» %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s αποτελέσματα στον πίνακα <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Περιήγηση"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Σύνολο:</b> <i>%s</i> αποτελέσματα"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Αναζήτηση στη βάση"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Όροι ή τιμές για αναζήτηση (μπαλαντέρ: «%»):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Έυρεση:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Μέσα στους πίνακες:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Εσωτερικό πεδίο:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr "Παρακολουθούμενοι πίνακες"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Βάση"
|
||||
|
||||
@ -1064,13 +1137,6 @@ msgstr "ανά δευτερόλεπτο"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Άρνηση Πρόσβασης"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1531,7 +1597,7 @@ msgstr "Χωρίς Κωδικό Πρόσβασης"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Κωδικός Πρόσβασης"
|
||||
|
||||
@ -1828,14 +1894,6 @@ msgstr "Εκτέλεση αποθηκευμένου ερωτήματος"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Η Εγγραφή έχει διαγραφεί"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2234,7 +2292,7 @@ msgstr "Δομή Πίνακα για τον Πίνακα"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Σύστημα"
|
||||
|
||||
@ -3095,6 +3153,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s βάσεις δεδομένων διεγράφησαν επιτυχώς."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Βάση δεδομένων προέλευσης"
|
||||
|
||||
@ -3121,6 +3180,7 @@ msgstr ""
|
||||
"δεδομένων μεταξύ του διακομιστή ιστού και του διακομιστή MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Βάση δεδομένων προορισμού"
|
||||
|
||||
@ -3852,7 +3912,8 @@ msgstr "Λανθάνουσα μνήμη κλειδιού"
|
||||
msgid "Korean"
|
||||
msgstr "Κορεατικά"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Άγνωστη γλώσσα: %1$s."
|
||||
@ -4078,7 +4139,7 @@ msgid "Show processes"
|
||||
msgstr "Εμφάνιση διεργασιών"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Δεν υπάρχουν βάσεις δεδομένων"
|
||||
|
||||
@ -4190,16 +4251,6 @@ msgstr "Δεν βρέθηκαν χρήστες."
|
||||
msgid "Number of tables"
|
||||
msgstr "Αριθμός πινάκων"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s αποτελέσματα στον πίνακα <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Σύνολο:</b> <i>%s</i> αποτελέσματα"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4347,7 +4398,7 @@ msgid "Polish"
|
||||
msgstr "Πολωνικά"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Θύρα"
|
||||
|
||||
@ -5028,47 +5079,6 @@ msgstr "Αποθήκευση"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Η κλίμακα είναι πολύ μικρή για να εμφανιστεί το σχήμα σε μία σελίδα"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Αναζήτηση στη βάση"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Εσωτερικό πεδίο:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Μέσα στους πίνακες:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Όροι ή τιμές για αναζήτηση (μπαλαντέρ: «%»):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "τουλάχιστον έναν από τους όρους"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "όλους τους όρους"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "την ακριβή φράση"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "ως κανονική έκφραση"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Αποτελέσματα αναζήτησης για «<i>%s</i>» %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Έυρεση:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5946,7 +5956,7 @@ msgstr "Όλα Μικρά/Μεγάλα"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Συγκράτηση στο πλέγμα"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Υποδοχή"
|
||||
|
||||
@ -5962,10 +5972,6 @@ msgstr "Χρήση χώρου"
|
||||
msgid "Spanish"
|
||||
msgstr "Ισπανικά"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Τύπος εξαγωγής"
|
||||
@ -6096,7 +6102,7 @@ msgstr "Σουηδικά"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Μεταφορά στον αντεγραμμένο πίνακα"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6693,7 +6699,7 @@ msgstr "Το όνομα του χρήστη είναι κενό!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Όνομα χρήστη"
|
||||
|
||||
@ -6951,17 +6957,17 @@ msgstr ""
|
||||
"b>. Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο "
|
||||
"διακομιστή, επισκευτείτε τον <a href=\"#replication\">τομέα αναπαραγωγής</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Μη ασφαλής σύνδεση"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/en_GB.po
192
po/en_GB.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-05-04 11:46+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: english-gb <en_GB@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Search"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Search"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Print"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "View dump (schema) of database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Select All"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Unselect All"
|
||||
|
||||
@ -496,14 +498,85 @@ msgstr "SQL query on database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Submit Query"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Access denied"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "at least one of the words"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "all words"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "the exact phrase"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Search results for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Browse"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Delete"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Search in database"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Find:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Inside table(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Inside field:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -670,8 +743,8 @@ msgstr "Tracked tables"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
@ -1005,13 +1078,6 @@ msgstr "Second"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Cannot connect: invalid settings."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Access denied"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1460,7 +1526,7 @@ msgstr "No Password"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
@ -1748,14 +1814,6 @@ msgstr "Execute bookmarked query"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "The row has been deleted"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Delete"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2146,7 +2204,7 @@ msgstr "Table structure for table"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3002,6 +3060,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databases have been dropped successfully."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Source database"
|
||||
|
||||
@ -3028,6 +3087,7 @@ msgstr ""
|
||||
"between the web server and the MySQL server."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Target database"
|
||||
|
||||
@ -3753,7 +3813,8 @@ msgstr "Key cache"
|
||||
msgid "Korean"
|
||||
msgstr "Korean"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Unknown language: %1$s."
|
||||
@ -3977,7 +4038,7 @@ msgid "Show processes"
|
||||
msgstr "Show processes"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "No databases"
|
||||
|
||||
@ -4088,16 +4149,6 @@ msgstr "No user(s) found."
|
||||
msgid "Number of tables"
|
||||
msgstr "Number of tables"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4248,7 +4299,7 @@ msgid "Polish"
|
||||
msgstr "Polish"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -4909,47 +4960,6 @@ msgstr "Save"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "The scale factor is too small to fit the schema on one page"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Search in database"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Inside field:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Inside table(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "at least one of the words"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "all words"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "the exact phrase"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Search results for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Find:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5779,7 +5789,7 @@ msgstr "Small/Big All"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Snap to grid"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Socket"
|
||||
|
||||
@ -5795,10 +5805,6 @@ msgstr "Space usage"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanish"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Export type"
|
||||
@ -5927,7 +5933,7 @@ msgstr "Swedish"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Switch to copied table"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6511,7 +6517,7 @@ msgstr "The user name is empty!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "User name"
|
||||
|
||||
@ -6738,15 +6744,15 @@ msgstr ""
|
||||
"For further information about replication status on the server, please visit "
|
||||
"the <a href=#replication>replication section</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr "Enter manually"
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr "Current connection"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr "Configuration: %s"
|
||||
|
||||
192
po/es.po
192
po/es.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: spanish <es@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Buscar"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Buscar"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Imprimir"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Ver el volcado esquema de la base de datos"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Seleccionar todo"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Deseleccionar todo"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "Consulta a la base de datos <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Ejecutar la consulta"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acceso denegado "
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "al menos una de estas palabras"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "Todas las palabras"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "La frase exacta"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "como expresión regular"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Resultados de la búsqueda por \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultado(s) en la tabla <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Examinar"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Borrar"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Buscar en la base de datos"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Encontrado:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Palabras separadas por un espacio (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "En la(s) tabla(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Dentro del campo:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -678,8 +751,8 @@ msgstr "Saltarse las tablas bloqueadas"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Base de datos"
|
||||
|
||||
@ -1070,13 +1143,6 @@ msgstr "por segundo"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "No se estableció la conexión: los parámetros están incorrectos."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acceso denegado "
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1536,7 +1602,7 @@ msgstr "Sin contraseña"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
@ -1831,14 +1897,6 @@ msgstr "Ejecute la consulta marcada previamente"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "La fila se ha borrado"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Borrar"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2242,7 +2300,7 @@ msgstr "Estructura de tabla para la tabla"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Servidor"
|
||||
|
||||
@ -3118,6 +3176,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s bases de datos han sido eliminadas exitosamente."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Buscar en la base de datos"
|
||||
@ -3145,6 +3204,7 @@ msgstr ""
|
||||
"tráfico pesado entre el servidor web y el servidor MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Buscar en la base de datos"
|
||||
@ -3879,7 +3939,8 @@ msgstr "Cache principal"
|
||||
msgid "Korean"
|
||||
msgstr "Coreano"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Idioma desconocido: %1$s."
|
||||
@ -4105,7 +4166,7 @@ msgid "Show processes"
|
||||
msgstr "Mostrar procesos"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "No hay bases de datos"
|
||||
|
||||
@ -4218,16 +4279,6 @@ msgstr "Usuario(s) no encontrado(s)."
|
||||
msgid "Number of tables"
|
||||
msgstr "Número de tablas"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultado(s) en la tabla <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4376,7 +4427,7 @@ msgid "Polish"
|
||||
msgstr "Polaco"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Ordenar"
|
||||
@ -5043,47 +5094,6 @@ msgstr ""
|
||||
"El factor de la escala es demasiado pequeño para poner el esquema en una "
|
||||
"página"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Buscar en la base de datos"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Dentro del campo:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "En la(s) tabla(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "al menos una de estas palabras"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "Todas las palabras"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "La frase exacta"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "como expresión regular"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Resultados de la búsqueda por \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Encontrado:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5943,7 +5953,7 @@ msgstr "Pequeño/grande todos"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Cuadrícula magnética"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5959,10 +5969,6 @@ msgstr "Espacio utilizado"
|
||||
msgid "Spanish"
|
||||
msgstr "Español"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Palabras separadas por un espacio (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Tipo de exportación"
|
||||
@ -6098,7 +6104,7 @@ msgstr "Sueco"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Cambiar (switch) a la tabla copiada"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6689,7 +6695,7 @@ msgstr "¡El nombre de usuario está vacío!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nombre de usuario"
|
||||
|
||||
@ -6930,17 +6936,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Conexión insegura"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/et.po
192
po/et.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: estonian <et@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Otsi"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Otsi"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Prindi"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Vaata andmebaasi väljundit (skeemi)"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Märgista kõik"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Puhasta kõik"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "SQL-päring andmebaasist <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Lae päring"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ligipääs keelatud"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "vähemalt üks sõnadest"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "kõik sõnadest"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "täpne fraas"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "regulaaravaldisena"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Otsingu tulemused \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s vaste(t) tabelis <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Vaata"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Kustuta"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Kokku:</b> <i>%s</i> vaste(t)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Otsi andmebaasist"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Sõna(d) või väärtus(ed) otsinguks (lühend: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Leia:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Sõnad on eraldatud tühikuga (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Otsi tabeli(te)st:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -674,8 +747,8 @@ msgstr "Kontrolli tabelit"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Andmebaas"
|
||||
|
||||
@ -1063,13 +1136,6 @@ msgstr "sekundis"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Ei saa ühendust: vigased seaded."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ligipääs keelatud"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1521,7 +1587,7 @@ msgstr "Ilma paroolita"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Parool"
|
||||
|
||||
@ -1813,14 +1879,6 @@ msgstr "Käivita salvestatud päring"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Rida kustutatud"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Kustuta"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2187,7 +2245,7 @@ msgstr "Struktuur tabelile"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Masin"
|
||||
|
||||
@ -3048,6 +3106,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "andmebaasid %s kustutati õnnestunult."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Otsi andmebaasist"
|
||||
@ -3075,6 +3134,7 @@ msgstr ""
|
||||
"liikuse webiserveri ja MySQL-i vahel."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Otsi andmebaasist"
|
||||
@ -3796,7 +3856,8 @@ msgstr "Võtme vahemälu"
|
||||
msgid "Korean"
|
||||
msgstr "Korea"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Tundmatu keel: %1$s."
|
||||
@ -4016,7 +4077,7 @@ msgid "Show processes"
|
||||
msgstr "Näita protsesse"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Pole andmebaase"
|
||||
|
||||
@ -4127,16 +4188,6 @@ msgstr "Ei leitud ühtegi kasutajat."
|
||||
msgid "Number of tables"
|
||||
msgstr "Tabelite arv"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s vaste(t) tabelis <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Kokku:</b> <i>%s</i> vaste(t)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4287,7 +4338,7 @@ msgid "Polish"
|
||||
msgstr "Poola"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sorteeri"
|
||||
@ -4937,47 +4988,6 @@ msgstr "Salvesta"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Skalaarfaktor on liiga väike, et skeem mahuks ühele lehele."
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Otsi andmebaasist"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Otsi tabeli(te)st:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Sõna(d) või väärtus(ed) otsinguks (lühend: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "vähemalt üks sõnadest"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "kõik sõnadest"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "täpne fraas"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "regulaaravaldisena"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Otsingu tulemused \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Leia:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Konfiguratsioonifail nõuab nüüd salajast võtmesõna (blowfish_secret)."
|
||||
@ -5797,7 +5807,7 @@ msgstr "Kõik Väikeseks/Suureks"
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5813,10 +5823,6 @@ msgstr "Ruumivõtt"
|
||||
msgid "Spanish"
|
||||
msgstr "Hispaania"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Sõnad on eraldatud tühikuga (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Ekspordi tüüp"
|
||||
@ -5947,7 +5953,7 @@ msgstr "Rootsi"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Mine üle kopeeritud tabelile"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6528,7 +6534,7 @@ msgstr "Kasutajanimi on tühi!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Kasutajanimi"
|
||||
|
||||
@ -6766,17 +6772,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "maks. parallel ühendusi"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/eu.po
192
po/eu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
|
||||
"Last-Translator: <hey_neken@mundurat.net>\n"
|
||||
"Language-Team: basque <eu@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Bilatu"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Bilatu"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Inprimatu"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Ikusi datu-basearen iraulketa (eskema)"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Dena hautatu"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Desautatu dena"
|
||||
|
||||
@ -506,14 +508,85 @@ msgstr "SQL-kontsulta <b>%s</b> datu-basean:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Kontsulta bidali"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Sarbidea ukatua"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "hitz hauetariko bat gutxienez"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "hitz guztiak"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "esaldi zehatza"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "adierazpen erregular moduan"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Bilaketaren emaitzak: \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s emaitza(k) <i>%s</i> taulan"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Arakatu"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Ezabatu"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Guztira:</b> <i>%s</i> emaitza(k)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Datu-basean bilatu"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Aurkitu:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Hitzak \"zuriune\" karakterrarekin bereiztuta daude (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Taul(ar)en barnean:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -679,8 +752,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Datu-basea"
|
||||
|
||||
@ -1069,13 +1142,6 @@ msgstr "segunduko"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Sarbidea ukatua"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1521,7 +1587,7 @@ msgstr "Pasahitzik ez"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Pasahitza"
|
||||
|
||||
@ -1809,14 +1875,6 @@ msgstr "Exekutatu aurretik aukeratutako kontsulta"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Errenkada ezabatua izan da"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Ezabatu"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2166,7 +2224,7 @@ msgstr "Taularen egitura taula honentzat: "
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Zerbitzaria"
|
||||
|
||||
@ -3030,6 +3088,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s datu-base arrakastaz ezabatu dira."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Datu-basean bilatu"
|
||||
@ -3057,6 +3116,7 @@ msgstr ""
|
||||
"MySQL-arenaren arteko trafiko handia sor liteke."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Datu-basean bilatu"
|
||||
@ -3777,7 +3837,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Koreera"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3993,7 +4054,7 @@ msgid "Show processes"
|
||||
msgstr "Erakutsi prozesuak"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Datu-baserik ez"
|
||||
|
||||
@ -4099,16 +4160,6 @@ msgstr "Ez da erabiltzailerik aurkitu."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s emaitza(k) <i>%s</i> taulan"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Guztira:</b> <i>%s</i> emaitza(k)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4260,7 +4311,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Ordenatu"
|
||||
@ -4922,47 +4973,6 @@ msgstr "Gorde"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Eskalaren faktorea txikiegia da eskema orri bakar batean azaltzeko"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Datu-basean bilatu"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Taul(ar)en barnean:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "hitz hauetariko bat gutxienez"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "hitz guztiak"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "esaldi zehatza"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "adierazpen erregular moduan"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Bilaketaren emaitzak: \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Aurkitu:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5688,7 +5698,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5705,10 +5715,6 @@ msgstr "Erabilitako lekua"
|
||||
msgid "Spanish"
|
||||
msgstr "Danesa"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Hitzak \"zuriune\" karakterrarekin bereiztuta daude (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Esportazio mota"
|
||||
@ -5836,7 +5842,7 @@ msgstr "Suediera"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Kopiatutako taulara aldatu"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6402,7 +6408,7 @@ msgstr "Erabiltzailearen izena hutsik dago!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Erabiltzaile-izena"
|
||||
|
||||
@ -6632,17 +6638,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Konexioak"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/fa.po
192
po/fa.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: persian <fa@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "جستجو"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "جستجو"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -193,11 +193,13 @@ msgstr "چاپ"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "نمايش الگوي پايگاه داده"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "انتخاب همه"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "عدم انتخاب همه"
|
||||
|
||||
@ -503,14 +505,85 @@ msgstr "پرس و جوي SQL از پايگاه داده <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Submit Query"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "دسترسي مجاز نيست"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "حداقل يكي از كلمات"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "تمامي كلمات"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "عبارت كامل"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "بعنوان مبين منظم(as regular expression)"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "نتيجه جستجوي \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "مشاهده"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "جستجو در پايگاهداده"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "نوع جستجو :"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "كلمات با علامت فاصله (\" \") جدا ميشوند."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "در جدول(هاي) :"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "پايگاه داده"
|
||||
|
||||
@ -1063,13 +1136,6 @@ msgstr "در ثانیه"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "دسترسي مجاز نيست"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1509,7 +1575,7 @@ msgstr "بدون اسم رمز"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "اسم رمز"
|
||||
|
||||
@ -1797,14 +1863,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr "سطر حذف گرديد ."
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2153,7 +2211,7 @@ msgstr ""
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "ميزبان"
|
||||
|
||||
@ -3013,6 +3071,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "جستجو در پايگاهداده"
|
||||
@ -3040,6 +3099,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "جستجو در پايگاهداده"
|
||||
@ -3746,7 +3806,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "کرهای"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "زبانِ ناشناس : %1$s."
|
||||
@ -3960,7 +4021,7 @@ msgid "Show processes"
|
||||
msgstr "نمايش فرايندها"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "No databases"
|
||||
|
||||
@ -4067,16 +4128,6 @@ msgstr "هيچ كاربري وچود ندارد."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4228,7 +4279,7 @@ msgid "Polish"
|
||||
msgstr "لهستانی"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "ترتيب"
|
||||
@ -4865,47 +4916,6 @@ msgstr "ذخيره"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "جستجو در پايگاهداده"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "در جدول(هاي) :"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "حداقل يكي از كلمات"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "تمامي كلمات"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "عبارت كامل"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "بعنوان مبين منظم(as regular expression)"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "نتيجه جستجوي \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "نوع جستجو :"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5628,7 +5638,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5644,10 +5654,6 @@ msgstr "فضاي استفادهشده"
|
||||
msgid "Spanish"
|
||||
msgstr "اسپانیایی"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "كلمات با علامت فاصله (\" \") جدا ميشوند."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5763,7 +5769,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6302,7 +6308,7 @@ msgstr "نام كاربر خالي است!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "نام كاربر"
|
||||
|
||||
@ -6529,15 +6535,15 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/fi.po
192
po/fi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
|
||||
"Last-Translator: <kajouni@gmail.com>\n"
|
||||
"Language-Team: finnish <fi@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Etsi"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Etsi"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Tulosta"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Tee vedos tietokannasta"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Valitse kaikki"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Poista valinta kaikista"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "Suorita SQL-kysely tietokannassa <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Suorita"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Käyttö estetty"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "vähintään yksi sanoista"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "kaikki sanat"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "koko lause"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "regexp-haku"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Tulokset hakusanalla \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s hakutulosta taulussa <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Selaa"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Poista"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Yhteensä:</b> <i>%s</i> hakutulosta"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Hae tietokannasta"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Haettavat sanat tai arvot (%-merkkiä voi käyttää jokerimerkkinä):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Hae:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Sanat erotetaan välilyönnein."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tauluista:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Kentän sisältä:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -676,8 +749,8 @@ msgstr "Seurattavat taulut"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Tietokanta"
|
||||
|
||||
@ -1061,13 +1134,6 @@ msgstr "sekunnissa"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Käyttö estetty"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1522,7 +1588,7 @@ msgstr "Ei salasanaa"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Salasana"
|
||||
|
||||
@ -1819,14 +1885,6 @@ msgstr "Suorita kysely kirjanmerkeistä"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Rivi on poistettu"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Poista"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2216,7 +2274,7 @@ msgstr "Rakenne taululle"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Palvelin"
|
||||
|
||||
@ -3083,6 +3141,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s tietokantaa poistettiin onnistuneesti."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Lähdetietokanta"
|
||||
|
||||
@ -3109,6 +3168,7 @@ msgstr ""
|
||||
"runsaasti liikennettä Internet-palvelimen ja MySQL-palvelimen välille."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Kohdetietokanta"
|
||||
|
||||
@ -3830,7 +3890,8 @@ msgstr "Avainvälimuisti"
|
||||
msgid "Korean"
|
||||
msgstr "Korealainen"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Tuntematon kieli: %1$s."
|
||||
@ -4052,7 +4113,7 @@ msgid "Show processes"
|
||||
msgstr "Näytä prosessit"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Ei tietokantoja"
|
||||
|
||||
@ -4161,16 +4222,6 @@ msgstr "Käyttäjiä ei ole."
|
||||
msgid "Number of tables"
|
||||
msgstr "Taulujen määrä"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s hakutulosta taulussa <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Yhteensä:</b> <i>%s</i> hakutulosta"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4319,7 +4370,7 @@ msgid "Polish"
|
||||
msgstr "Puolalainen"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -4989,47 +5040,6 @@ msgstr "Tallenna"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Kaavio ei mahdu yhdelle sivulle tässä mittakaavassa"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Hae tietokannasta"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Kentän sisältä:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tauluista:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Haettavat sanat tai arvot (%-merkkiä voi käyttää jokerimerkkinä):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "vähintään yksi sanoista"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "kaikki sanat"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "koko lause"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "regexp-haku"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Tulokset hakusanalla \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Hae:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)."
|
||||
@ -5883,7 +5893,7 @@ msgstr "Kaikki pienenä/suurena"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Sovita ruudukkoon"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Pistoke"
|
||||
|
||||
@ -5899,10 +5909,6 @@ msgstr "Levytilan käyttö"
|
||||
msgid "Spanish"
|
||||
msgstr "Espanjalainen"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Sanat erotetaan välilyönnein."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Vientityyppi"
|
||||
@ -6030,7 +6036,7 @@ msgstr "Ruotsalainen"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Siirry kopioituun tauluun"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6616,7 +6622,7 @@ msgstr "Käyttäjän nimi puuttuu!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Käyttäjänimi"
|
||||
|
||||
@ -6865,17 +6871,17 @@ msgstr ""
|
||||
"palvelimen replikaatiotilasta lisää tietoja kohdasta <a href=\"#replication"
|
||||
"\">Replikaatio</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Salaamaton yhteys"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/fr.po
192
po/fr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-05-04 16:34+0200\n"
|
||||
"Last-Translator: Marc <marc@infomarc.info>\n"
|
||||
"Language-Team: french <fr@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Rechercher"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Rechercher"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Imprimer"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Schéma et données de la base"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Tout sélectionner"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Tout désélectionner"
|
||||
|
||||
@ -496,14 +498,85 @@ msgstr "Requête SQL sur la base <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Exécuter la requête"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Accès refusé"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "au moins un mot"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "tous les mots"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "phrase exacte"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "expression réguliére"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Résultats de la recherche de \"<i>%s</i>\" %s :"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s occurence(s) dans la table <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Afficher"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Effacer"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total :</b> <i>%s</i> occurence(s)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Effectuer une nouvelle recherche dans la base de données"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Mot ou Valeur à rechercher (passe-partout: «%») :"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Type de recherche :"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Séparer les mots par un espace (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dans la(les) table(s) :"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Dans la colonne:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -670,8 +743,8 @@ msgstr "Tables faisant l'objet d'un suivi"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Base de données"
|
||||
|
||||
@ -1007,13 +1080,6 @@ msgstr "Seconde"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Connexion impossible: réglages incorrects."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Accès refusé"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1472,7 +1538,7 @@ msgstr "aucun mot de passe"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
@ -1761,14 +1827,6 @@ msgstr "Exécuter la requête en signets"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "L'enregistrement a été effacé"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Effacer"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2167,7 +2225,7 @@ msgstr "Structure de la table"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Serveur"
|
||||
|
||||
@ -3030,6 +3088,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s bases de données ont été supprimées."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Base de données source"
|
||||
|
||||
@ -3056,6 +3115,7 @@ msgstr ""
|
||||
"serveur web et le serveur MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Base de données cible"
|
||||
|
||||
@ -3785,7 +3845,8 @@ msgstr "Cache des clés"
|
||||
msgid "Korean"
|
||||
msgstr "coréen"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Langue inconnue: %1$s."
|
||||
@ -4011,7 +4072,7 @@ msgid "Show processes"
|
||||
msgstr "Afficher les processus"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Aucune base de données"
|
||||
|
||||
@ -4126,16 +4187,6 @@ msgstr "Il n'y a aucun utilisateur"
|
||||
msgid "Number of tables"
|
||||
msgstr "Nombre de tables"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s occurence(s) dans la table <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total :</b> <i>%s</i> occurence(s)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4289,7 +4340,7 @@ msgid "Polish"
|
||||
msgstr "polonais"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -4970,47 +5021,6 @@ msgstr "Sauvegarder"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Veuillez augmenter l'échelle car le schéma déborde la page"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Effectuer une nouvelle recherche dans la base de données"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Dans la colonne:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dans la(les) table(s) :"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Mot ou Valeur à rechercher (passe-partout: «%») :"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "au moins un mot"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "tous les mots"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "phrase exacte"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "expression réguliére"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Résultats de la recherche de \"<i>%s</i>\" %s :"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Type de recherche :"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5860,7 +5870,7 @@ msgstr "Agrandir/réduire tout"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Accrocher à la grille"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Interface de connexion (socket)"
|
||||
|
||||
@ -5876,10 +5886,6 @@ msgstr "Espace utilisé"
|
||||
msgid "Spanish"
|
||||
msgstr "espagnol"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Séparer les mots par un espace (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Type d'exportation"
|
||||
@ -6009,7 +6015,7 @@ msgstr "suédois"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Aller à la table copiée"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6600,7 +6606,7 @@ msgstr "Le nom d'utilisateur est vide"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nom d'utilisateur"
|
||||
|
||||
@ -6827,15 +6833,15 @@ msgstr ""
|
||||
"Pour plus d'information sur l'état de la réplication sur ce serveur, "
|
||||
"consultez la <a href=#replication>section de réplication</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr "Saisir manuellement"
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr "Connexion actuelle"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr "Configuration : %s"
|
||||
|
||||
192
po/gl.po
192
po/gl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: galician <gl@li.org>\n"
|
||||
@ -45,7 +45,7 @@ msgstr "Procurar"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -63,7 +63,7 @@ msgstr "Procurar"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -196,11 +196,13 @@ msgstr "Imprimir"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Ver o esquema do volcado da base de datos"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Seleccionar todo"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Non seleccionar nada"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "Procura tipo SQL na base de datos <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Enviar esta procura"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Denegouse o acceso"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "polo menos unha das palabras"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "todas as palabras"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a frase exacta"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "como expresión regular"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Procurar os resultados para \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s ocorrencias(s) dentro da táboa <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Visualizar"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> ocorrencia(s)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Procurar na base de datos"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palabras(s) ou valore(s) a procurar (o comodín é: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Atopar:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "As palabras divídense cun carácter de espazo (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dentro da(s) táboa(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "No campo:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr "Táboas seguidas"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Base de datos"
|
||||
|
||||
@ -1060,13 +1133,6 @@ msgstr "por segundo"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Non se pode conectar: os axustes non son válidos."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Denegouse o acceso"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1525,7 +1591,7 @@ msgstr "Sen contrasinal"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Contrasinal"
|
||||
|
||||
@ -1822,14 +1888,6 @@ msgstr "Efectuar a procura gardada"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Eliminouse o rexistro"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2227,7 +2285,7 @@ msgstr "Estrutura da táboa"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Servidor"
|
||||
|
||||
@ -3094,6 +3152,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "Elimináronse %s bases de datos sen problemas."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Base de datos de orixe"
|
||||
|
||||
@ -3120,6 +3179,7 @@ msgstr ""
|
||||
"un tráfico denso entre o servidor web e o de MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Base de datos de destino"
|
||||
|
||||
@ -3845,7 +3905,8 @@ msgstr "caché da chave"
|
||||
msgid "Korean"
|
||||
msgstr "Coreano"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Linguaxe descoñecida: %1$s."
|
||||
@ -4068,7 +4129,7 @@ msgid "Show processes"
|
||||
msgstr "Mostrar os procesos"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Non hai ningunha base de datos"
|
||||
|
||||
@ -4180,16 +4241,6 @@ msgstr "Non se achou ningún usuario."
|
||||
msgid "Number of tables"
|
||||
msgstr "Número de táboas"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s ocorrencias(s) dentro da táboa <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> ocorrencia(s)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4338,7 +4389,7 @@ msgid "Polish"
|
||||
msgstr "Polonés"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Porto"
|
||||
|
||||
@ -5008,47 +5059,6 @@ msgstr ""
|
||||
"O factor de redución é demasiado pequeno para que o esquema caiba nunha "
|
||||
"única páxina"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Procurar na base de datos"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "No campo:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dentro da(s) táboa(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palabras(s) ou valore(s) a procurar (o comodín é: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "polo menos unha das palabras"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "todas as palabras"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a frase exacta"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "como expresión regular"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Procurar os resultados para \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Atopar:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5899,7 +5909,7 @@ msgstr "Todo grande/pequeno"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Axustar á grella"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Socket"
|
||||
|
||||
@ -5915,10 +5925,6 @@ msgstr "Uso do espazo"
|
||||
msgid "Spanish"
|
||||
msgstr "Español"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "As palabras divídense cun carácter de espazo (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Tipo de exportación"
|
||||
@ -6050,7 +6056,7 @@ msgstr "Sueco"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Ir à táboa copiada"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6634,7 +6640,7 @@ msgstr "O nome do usuario está vacío!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nome do usuario"
|
||||
|
||||
@ -6886,17 +6892,17 @@ msgstr ""
|
||||
"b>. Para máis información acerca do estado de replicación do servidor visite "
|
||||
"a <a href=\"#replication\">sección sobre replicación</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "A conexión non é segura"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/he.po
192
po/he.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: hebrew <he@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "חיפוש"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "חיפוש"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -192,11 +192,13 @@ msgstr "הדפסה"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "ראיית הוצאה (תבנית) של מאגר נתונים"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "בחירת הכל"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "בטל בחירת הכל"
|
||||
|
||||
@ -498,14 +500,85 @@ msgstr ""
|
||||
msgid "Submit Query"
|
||||
msgstr "שליחת שאילתה"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "גישה נדתחה"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "לפחות אחת מן המילים"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "כל המילים"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "הביטוי המדוייק"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "כביטוי רגיל"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "תוצאות חיפוש עבור \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "עיון"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "מחיקה"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>סה\"כ:</b> <i>%s</i> פריטים"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "חפש במסד הנתונים"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "מילים או ערכים עבור חיפוש (תו כללי: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "מצא:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "מילים מופרדות ע\"י תו רווח (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "בתוך הטבלה/הטבלאות:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -671,8 +744,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "מאגר נתונים"
|
||||
|
||||
@ -1059,13 +1132,6 @@ msgstr "לשנייה"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "חיבור נכשל: הגדרות לא תקינות."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "גישה נדתחה"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1507,7 +1573,7 @@ msgstr "ללא סיסמא"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "סיסמא"
|
||||
|
||||
@ -1798,14 +1864,6 @@ msgstr "הרצת שאילתה מועדפת"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "השורה נמחקה"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "מחיקה"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2153,7 +2211,7 @@ msgstr "מבנה טבלה עבור טבלה"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "מארח"
|
||||
|
||||
@ -3012,6 +3070,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s מסדי נתונים נמחקו בהצלחה."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "חפש במסד הנתונים"
|
||||
@ -3039,6 +3098,7 @@ msgstr ""
|
||||
"האינטרנט לשרת MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "חפש במסד הנתונים"
|
||||
@ -3752,7 +3812,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3969,7 +4030,7 @@ msgid "Show processes"
|
||||
msgstr "ראיית תהליכים"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "אין מאגרי נתונים"
|
||||
|
||||
@ -4076,16 +4137,6 @@ msgstr "לא נמצאו משתמשים."
|
||||
msgid "Number of tables"
|
||||
msgstr "מספר שדות"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>סה\"כ:</b> <i>%s</i> פריטים"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4237,7 +4288,7 @@ msgid "Polish"
|
||||
msgstr "Polish"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "סידור"
|
||||
@ -4878,47 +4929,6 @@ msgstr "שמירה"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "חפש במסד הנתונים"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "בתוך הטבלה/הטבלאות:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "מילים או ערכים עבור חיפוש (תו כללי: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "לפחות אחת מן המילים"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "כל המילים"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "הביטוי המדוייק"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "כביטוי רגיל"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "תוצאות חיפוש עבור \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "מצא:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5638,7 +5648,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5654,10 +5664,6 @@ msgstr "שימוש מקום"
|
||||
msgid "Spanish"
|
||||
msgstr "ספרדית"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "מילים מופרדות ע\"י תו רווח (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "סוג ייצוא"
|
||||
@ -5773,7 +5779,7 @@ msgstr "שוודית"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "מעבר לטבלה שהועתקה"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6311,7 +6317,7 @@ msgstr "שם המשתמש ריק !"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "שם משתמש"
|
||||
|
||||
@ -6539,17 +6545,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "חיבורים"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/hi.po
192
po/hi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-05-05 04:47+0200\n"
|
||||
"Last-Translator: <u4663530@anu.edu.au>\n"
|
||||
"Language-Team: hindi <hi@li.org>\n"
|
||||
@ -45,7 +45,7 @@ msgstr "खोजें"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -63,7 +63,7 @@ msgstr "खोजें"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -196,11 +196,13 @@ msgstr "छापें"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "डंप (स्कीमा) डेटाबेस दिखाएं"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "सभी का चयन करें"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr " सभी को रद्द करें"
|
||||
|
||||
@ -504,14 +506,85 @@ msgstr ""
|
||||
msgid "Submit Query"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "प्रवेश निषेध"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "कोई भी एक शब्द"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "सभी शब्द"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "यथार्थ वाक्यांश"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" %s के लिये सर्च के परिणाम :"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "ब्राउज़"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "डिलीट"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "डाटाबेस में सर्च करें"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "खोजो:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "शब्दों में space (\" \") से अंतर करें."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr " टेबल में:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -676,8 +749,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr " डाटाबेस"
|
||||
|
||||
@ -1049,13 +1122,6 @@ msgstr ""
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "प्रवेश निषेध"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1486,7 +1552,7 @@ msgstr "पासवर्ड नहीं है"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1767,14 +1833,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr "रौ को डिलीट कर दिया"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "डिलीट"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2121,7 +2179,7 @@ msgstr ""
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "होस्ट"
|
||||
|
||||
@ -2965,6 +3023,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s डाटाबेस को सफलता से डिलीट कर दिया गया।"
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -2991,6 +3050,7 @@ msgstr ""
|
||||
"संभावना है। "
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3686,7 +3746,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "कोरियन"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3893,7 +3954,7 @@ msgid "Show processes"
|
||||
msgstr "प्रोसेस दिखाओ"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "कोइ डाटाबेस नहिं"
|
||||
|
||||
@ -3998,16 +4059,6 @@ msgstr "कोई यूसर नहीं।"
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4155,7 +4206,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4787,47 +4838,6 @@ msgstr ""
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "डाटाबेस में सर्च करें"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr " टेबल में:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "कोई भी एक शब्द"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "सभी शब्द"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "यथार्थ वाक्यांश"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" %s के लिये सर्च के परिणाम :"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "खोजो:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5541,7 +5551,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5557,10 +5567,6 @@ msgstr ""
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "शब्दों में space (\" \") से अंतर करें."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5674,7 +5680,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6208,7 +6214,7 @@ msgstr "यूसरनेम खाली है!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "यूसर नेम"
|
||||
|
||||
@ -6432,15 +6438,15 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/hr.po
192
po/hr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: croatian <hr@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Traži"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Traži"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Ispiši"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Prikaži ispis (shemu) baze podataka"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Odaberi sve"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Ukloni sav odabir"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "SQL upit nad bazom podataka <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Podnesi upit"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Pristup odbijen"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "najmanje jedna riječ"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "sve riječi"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "točan izraz"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kao regularan izraz"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati pretraživanja za \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s poklapanja unutar tablice <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Pretraživanje"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Ukupno:</b> <i>%s</i> poklapanja"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Traži u bazi podataka"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Traži:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Riječi su razdvojene znakom razmaka (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Unutar tablica:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Unutar polja:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -676,8 +749,8 @@ msgstr "Provjeri tablicu"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Baza podataka"
|
||||
|
||||
@ -1069,13 +1142,6 @@ msgstr "po sekundi"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Povezivanje nije moguće: neispravna postavka."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Pristup odbijen"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1533,7 +1599,7 @@ msgstr "Bez lozinke"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Lozinka"
|
||||
|
||||
@ -1825,14 +1891,6 @@ msgstr "Izvrši favorizirani upit"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Redak je izbrisan"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2227,7 +2285,7 @@ msgstr "Tablična struktura za tablicu"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Računalo"
|
||||
|
||||
@ -3087,6 +3145,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "Baza podataka %s uspješno je odbačena."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Traži u bazi podataka"
|
||||
@ -3114,6 +3173,7 @@ msgstr ""
|
||||
"velik promet između web poslužitelja i MySQL poslužitelja."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Traži u bazi podataka"
|
||||
@ -3838,7 +3898,8 @@ msgstr "Pohrana ključeva"
|
||||
msgid "Korean"
|
||||
msgstr "Korejski"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Nepoznati jezik: %1$s."
|
||||
@ -4061,7 +4122,7 @@ msgid "Show processes"
|
||||
msgstr "Prikaži procese"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Nema baza podataka"
|
||||
|
||||
@ -4172,16 +4233,6 @@ msgstr "Korisnici nisu pronađeni."
|
||||
msgid "Number of tables"
|
||||
msgstr "Broj tablica"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s poklapanja unutar tablice <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Ukupno:</b> <i>%s</i> poklapanja"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4330,7 +4381,7 @@ msgid "Polish"
|
||||
msgstr "Poljski"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Presloži"
|
||||
@ -4982,47 +5033,6 @@ msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
"Vrijednost omjera suviše je malen kako bi shema stala na jednu stranicu"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Traži u bazi podataka"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Unutar polja:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Unutar tablica:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "najmanje jedna riječ"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "sve riječi"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "točan izraz"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kao regularan izraz"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati pretraživanja za \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Traži:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)."
|
||||
@ -5864,7 +5874,7 @@ msgstr "Malo / Sve veliko"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Poravnaj s mrežom"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5880,10 +5890,6 @@ msgstr "Iskorištenost prostora"
|
||||
msgid "Spanish"
|
||||
msgstr "Španjolski"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Riječi su razdvojene znakom razmaka (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Vrsta izvoza"
|
||||
@ -6016,7 +6022,7 @@ msgstr "Švedski"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Prebaci se na kopiranu tablicu"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6603,7 +6609,7 @@ msgstr "Korisničko ime je prazno!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Korisničko ime"
|
||||
|
||||
@ -6843,17 +6849,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "najv. uzastopnih veza"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/hu.po
192
po/hu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: hungarian <hu@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Keresés"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Keresés"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Nyomtatás"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Adatbázis kiírás (vázlat) megtekintése"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Mind kijelölése"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Mind törlése"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "SQL-lekérdezés a(z) <b>%s</b> adatbázison:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Lekérdezés indítása"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "A hozzáférés megtagadva"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "legalább az egyik szó"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "minden szó"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a pontos kifejezés"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "reguláris kifejezésként"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Keresési eredmények \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s találat a(z) <i>%s</i> táblában"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Tartalom"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Törlés"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Összesen:</b> <i>%s</i> találat"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Keresés az adatbázisban"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Keresés:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "A szavak elválasztása szóköz karakterrel (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Táblá(k)ban:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Mezőben:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr "A zárolt táblák kihagyása"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Adatbázis"
|
||||
|
||||
@ -1067,13 +1140,6 @@ msgstr "másodpercenként"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "A hozzáférés megtagadva"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1533,7 +1599,7 @@ msgstr "Nincs jelszó"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Jelszó"
|
||||
|
||||
@ -1828,14 +1894,6 @@ msgstr "Könyvjelzőkhöz hozzáadott lekérdezés végrehajtása"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "A sor törlése megtörtént"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Törlés"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2229,7 +2287,7 @@ msgstr "Tábla szerkezet:"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Hoszt"
|
||||
|
||||
@ -3100,6 +3158,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "A(z) %s adatbázis eldobása sikerült."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Keresés az adatbázisban"
|
||||
@ -3127,6 +3186,7 @@ msgstr ""
|
||||
"közti nagy adatforgalomhoz vezethet."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Keresés az adatbázisban"
|
||||
@ -3853,7 +3913,8 @@ msgstr "Kulcs gyorsítótár"
|
||||
msgid "Korean"
|
||||
msgstr "Koreai"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Ismeretlen nyelv: %1$s."
|
||||
@ -4076,7 +4137,7 @@ msgid "Show processes"
|
||||
msgstr "Folyamatok megjelenítése"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Nincs adatbázis"
|
||||
|
||||
@ -4188,16 +4249,6 @@ msgstr "Nem található(k) a felhasználó(k)."
|
||||
msgid "Number of tables"
|
||||
msgstr "Táblák száma"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s találat a(z) <i>%s</i> táblában"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Összesen:</b> <i>%s</i> találat"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4346,7 +4397,7 @@ msgid "Polish"
|
||||
msgstr "Lengyel"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Rendezés"
|
||||
@ -5008,47 +5059,6 @@ msgstr "Mentés"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "A mérettényező túl kicsi, hogy a séma ráférjen egy oldalra"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Keresés az adatbázisban"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Mezőben:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Táblá(k)ban:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "legalább az egyik szó"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "minden szó"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a pontos kifejezés"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "reguláris kifejezésként"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Keresési eredmények \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Keresés:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5891,7 +5901,7 @@ msgstr "Mind kicsi/nagy"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Rácshoz illesztés"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5907,10 +5917,6 @@ msgstr "Területhasználat"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanyol"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "A szavak elválasztása szóköz karakterrel (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Exportálás típusa"
|
||||
@ -6044,7 +6050,7 @@ msgstr "Svéd"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "A másolt táblára váltás"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6636,7 +6642,7 @@ msgstr "Üres a felhasználónév!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Felhasználónév"
|
||||
|
||||
@ -6882,17 +6888,17 @@ msgstr ""
|
||||
"szerveren lévő többszörözéses állapotról a <a href=\"#replication"
|
||||
"\">többszörözés részben</a> kaphat bővebb információt."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Veszélyes kapcsolat"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/id.po
192
po/id.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
|
||||
"Last-Translator: Azhari Harahap <azhari.harahap@yahoo.com>\n"
|
||||
"Language-Team: indonesian <id@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Cari"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Cari"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Cetak"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Tampilkan Dump (Skema) dari database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Pilih semua"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Unselect semua"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "Pencarian SQL dalam database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Jalankan pencarian SQL"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Akses ditolak"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "sekurang-kurangnya salah satu kata"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "seluruh kata"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "kata-kata tepat"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "sebagai regular expression"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Hasil pencarian untuk \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s catatan dalam tabel <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Browse"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Hapus"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Jumlah:</b> <i>%s</i> rekord"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cari dalam database"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Kata atau nilai untuk dicari (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Cari:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Kata dipisahkan oleh karakter spasi (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Cari dalam tabel:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -676,8 +749,8 @@ msgstr "Tabel-tabel yang dilacak"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
@ -1063,13 +1136,6 @@ msgstr "per detik"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Koneksi gagal: Stelan tidak berlaku."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Akses ditolak"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1518,7 +1584,7 @@ msgstr "Kata Sandi belum ditetapkan"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Kata Sandi"
|
||||
|
||||
@ -1807,14 +1873,6 @@ msgstr "Eksekusikan pencarian dengan mengikuti penunjuk halaman"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Baris telah dihapus"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Hapus"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2181,7 +2239,7 @@ msgstr "Struktur dari tabel"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3037,6 +3095,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "Sukses menghapus database %s."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Database cumber"
|
||||
|
||||
@ -3063,6 +3122,7 @@ msgstr ""
|
||||
"mengakibatkan traffic yang cukup tinggi antara webserver dan server MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Database target"
|
||||
|
||||
@ -3780,7 +3840,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Bahasa Korea"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -4002,7 +4063,7 @@ msgid "Show processes"
|
||||
msgstr "Tampilkan Proses"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Database tidak ditemukan"
|
||||
|
||||
@ -4111,16 +4172,6 @@ msgstr "Pengguna tidak ditemukan."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s catatan dalam tabel <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Jumlah:</b> <i>%s</i> rekord"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4271,7 +4322,7 @@ msgid "Polish"
|
||||
msgstr "Polandia"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Urutkan"
|
||||
@ -4932,47 +4983,6 @@ msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
"Faktor skala yang dipilih terlalu kecil untuk dimuat dalam skema satu halaman"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cari dalam database"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Cari dalam tabel:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Kata atau nilai untuk dicari (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "sekurang-kurangnya salah satu kata"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "seluruh kata"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "kata-kata tepat"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "sebagai regular expression"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Hasil pencarian untuk \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Cari:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5697,7 +5707,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5713,10 +5723,6 @@ msgstr "Penggunaan tempat"
|
||||
msgid "Spanish"
|
||||
msgstr "Bahasa Spanyol"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Kata dipisahkan oleh karakter spasi (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Jenis Ekspor"
|
||||
@ -5846,7 +5852,7 @@ msgstr "Bahasa Swedia"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Pindah ke tabel salinan"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6419,7 +6425,7 @@ msgstr "Nama pengguna masih kosong!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nama pengguna"
|
||||
|
||||
@ -6658,17 +6664,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Koneksi"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/it.po
192
po/it.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-11 11:19+0200\n"
|
||||
"Last-Translator: Fabio <fantonifabio@tiscali.it>\n"
|
||||
"Language-Team: italian <it@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Cerca"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "Cerca"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr "Stampa"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Visualizza dump (schema) del database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Seleziona tutto"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Deseleziona tutto"
|
||||
|
||||
@ -503,14 +505,85 @@ msgstr "SQL-query sul database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Invia Query"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Accesso negato"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "almeno una delle parole"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "tutte le parole"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "la frase esatta"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "come espressione regolare"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Cerca i risultati per \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s corrisponde/ono nella tabella <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Mostra"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totale:</b> <i>%s</i> corrispondenza/e"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cerca nel database"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "parola/e o valore/i da cercare (carattere jolly: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Trova:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Le parole sono separate da spazi (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Nella/e tabella/e:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Campi contenuti:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -678,8 +751,8 @@ msgstr "Controlla tabella"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
@ -1070,13 +1143,6 @@ msgstr "al secondo"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Impossibile connettersi: impostazioni non valide."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Accesso negato"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1532,7 +1598,7 @@ msgstr "Nessuna Password"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
@ -1831,14 +1897,6 @@ msgstr "Esegue la query dalle preferite"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "La riga è stata cancellata"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2235,7 +2293,7 @@ msgstr "Struttura della tabella"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3095,6 +3153,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databases sono stati cancellati correttamente."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Database di origine"
|
||||
|
||||
@ -3121,6 +3180,7 @@ msgstr ""
|
||||
"traffico intenso fra il server web e MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Database di destinazione"
|
||||
|
||||
@ -3850,7 +3910,8 @@ msgstr "Key cache"
|
||||
msgid "Korean"
|
||||
msgstr "Coreano"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Lingua non conosciuta : %1$s."
|
||||
@ -4076,7 +4137,7 @@ msgid "Show processes"
|
||||
msgstr "Visualizza processi in esecuzione"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Nessun database"
|
||||
|
||||
@ -4188,16 +4249,6 @@ msgstr "Nessun utente trovato."
|
||||
msgid "Number of tables"
|
||||
msgstr "Numero di tabelle"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s corrisponde/ono nella tabella <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totale:</b> <i>%s</i> corrispondenza/e"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4347,7 +4398,7 @@ msgid "Polish"
|
||||
msgstr "Polacco"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Ordinamento"
|
||||
@ -5008,47 +5059,6 @@ msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
"Il fattore di scala è troppo piccolo per riempire lo schema nella pagina"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cerca nel database"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Campi contenuti:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Nella/e tabella/e:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "parola/e o valore/i da cercare (carattere jolly: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "almeno una delle parole"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "tutte le parole"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "la frase esatta"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "come espressione regolare"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Cerca i risultati per \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Trova:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5901,7 +5911,7 @@ msgstr "Espandi/Contrai"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Calamita alla griglia"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5917,10 +5927,6 @@ msgstr "Spazio utilizzato"
|
||||
msgid "Spanish"
|
||||
msgstr "Spagnolo"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Le parole sono separate da spazi (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Tipo di esportazione"
|
||||
@ -6055,7 +6061,7 @@ msgstr "Svedese"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Passa alla tabella copiata"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6646,7 +6652,7 @@ msgstr "Il nome utente è vuoto!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nome utente"
|
||||
|
||||
@ -6886,17 +6892,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Connessione non sicura"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/ja.po
192
po/ja.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "検索"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "検索"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "印刷"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "DB のダンプ(スキーマ)表示"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "全選択"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "全選択解除"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "データベース <b>%s</b> のSQL:"
|
||||
msgid "Submit Query"
|
||||
msgstr "クエリを実行する"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "アクセスは拒否されました"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "いずれかの単語を含む"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "すべての単語を含む"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "完全一致"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "正規表現"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" の検索結果 %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s 件(テーブル <i>%s</i>)"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "表示"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "削除"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>合計:</b> <i>%s</i> 件"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "データベース内検索"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "検索する単語や値 (ワイルドカード: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "検索条件:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "各単語は空白文字(\" \")で区切ってください"
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "検索するテーブル:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "検索するフィールド:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -674,8 +747,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "データベース"
|
||||
|
||||
@ -1055,13 +1128,6 @@ msgstr "/秒"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "接続できません: 設定が無効です"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "アクセスは拒否されました"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1509,7 +1575,7 @@ msgstr "パスワードなし"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
@ -1800,14 +1866,6 @@ msgstr "ブックマークされたクエリを実行する"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "行を削除しました"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "削除"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2196,7 +2254,7 @@ msgstr "テーブルの構造"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "ホスト"
|
||||
|
||||
@ -3049,6 +3107,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "データベース %s を正常に削除しました"
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -3075,6 +3134,7 @@ msgstr ""
|
||||
"が激増することがあります"
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3795,7 +3855,8 @@ msgstr "キーキャッシュ"
|
||||
msgid "Korean"
|
||||
msgstr "韓国語"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "言語ファイルが登録されていません: %1$s"
|
||||
@ -4016,7 +4077,7 @@ msgid "Show processes"
|
||||
msgstr "MySQL プロセスの表示"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "データベースが存在しません"
|
||||
|
||||
@ -4125,16 +4186,6 @@ msgstr "ユーザが存在しません"
|
||||
msgid "Number of tables"
|
||||
msgstr "テーブル数"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s 件(テーブル <i>%s</i>)"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>合計:</b> <i>%s</i> 件"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4282,7 +4333,7 @@ msgid "Polish"
|
||||
msgstr "ポーランド語"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4919,47 +4970,6 @@ msgstr "保存する"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "倍率が小さすぎるためスキーマが 1 ページに収まりません"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "データベース内検索"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "検索するフィールド:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "検索するテーブル:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "検索する単語や値 (ワイルドカード: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "いずれかの単語を含む"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "すべての単語を含む"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "完全一致"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "正規表現"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" の検索結果 %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "検索条件:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5769,7 +5779,7 @@ msgstr "すべてを大きく/小さく"
|
||||
msgid "Snap to grid"
|
||||
msgstr "グリッドにあわせる"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5785,10 +5795,6 @@ msgstr "ディスク使用量"
|
||||
msgid "Spanish"
|
||||
msgstr "スペイン語"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "各単語は空白文字(\" \")で区切ってください"
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "エクスポート形式"
|
||||
@ -5918,7 +5924,7 @@ msgstr "スウェーデン語"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "コピーしたテーブルに切り替える"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6494,7 +6500,7 @@ msgstr "ユーザ名が空です!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "ユーザ名"
|
||||
|
||||
@ -6726,17 +6732,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "最大同時接続数"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/ka.po
192
po/ka.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: georgian <ka@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "ძებნა"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "ძებნა"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "დაბეჭდვა"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "View dump (schema) of database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "ყველას მონიშნვა"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "მონიშნვის მოხსნა"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "SQL query on database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "მოთხოვნის გაგზავნა"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "წვდომა აკრძალულია"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "ერთი სიტყვა მაინც"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "ყველა სიტყვა"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "ზუსტი ფრაზა"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "რეგულარული გამოსახულება"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Search results for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "არჩევა"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "წაშლა"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "მონაცემთა ბაზაში ძებნა"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "იპოვე:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "ცხრილ(ებ)ში:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "ველში:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr "დაბლოკილი ცხრილების გამოტ
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "მონაცემთა ბაზა"
|
||||
|
||||
@ -1067,13 +1140,6 @@ msgstr "წამში"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "წვდომა აკრძალულია"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1526,7 +1592,7 @@ msgstr "პაროლი არაა"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "პაროლი"
|
||||
|
||||
@ -1818,14 +1884,6 @@ msgstr "ჩანიშნული მოთხოვნის გაშვე
|
||||
msgid "The row has been deleted"
|
||||
msgstr "სტრიქონი წაიშალა"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "წაშლა"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2216,7 +2274,7 @@ msgstr "Table structure for table"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "ჰოსტი"
|
||||
|
||||
@ -3082,6 +3140,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databases have been dropped successfully."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "მონაცემთა ბაზაში ძებნა"
|
||||
@ -3109,6 +3168,7 @@ msgstr ""
|
||||
"between the web server and the MySQL server."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "მონაცემთა ბაზაში ძებნა"
|
||||
@ -3833,7 +3893,8 @@ msgstr "Key cache"
|
||||
msgid "Korean"
|
||||
msgstr "კორეული"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "უცნობი ენა: %1$s."
|
||||
@ -4058,7 +4119,7 @@ msgid "Show processes"
|
||||
msgstr "პროცესების ჩვენება"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "მონაცემთა ბაზები არაა"
|
||||
|
||||
@ -4170,16 +4231,6 @@ msgstr "მომხმარებლ(ებ)ის პოვნა ვერ
|
||||
msgid "Number of tables"
|
||||
msgstr "ცხრილების რაოდენობა"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4328,7 +4379,7 @@ msgid "Polish"
|
||||
msgstr "პოლონური"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "დალაგება"
|
||||
@ -4982,47 +5033,6 @@ msgstr "შენახვა"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "The scale factor is too small to fit the schema on one page"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "მონაცემთა ბაზაში ძებნა"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "ველში:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "ცხრილ(ებ)ში:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "ერთი სიტყვა მაინც"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "ყველა სიტყვა"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "ზუსტი ფრაზა"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "რეგულარული გამოსახულება"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Search results for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "იპოვე:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5851,7 +5861,7 @@ msgstr "Small/Big All"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Snap to grid"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5867,10 +5877,6 @@ msgstr "ადგილის გამოყენება"
|
||||
msgid "Spanish"
|
||||
msgstr "ესპანური"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Export type"
|
||||
@ -6002,7 +6008,7 @@ msgstr "შვედური"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Switch to copied table"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6586,7 +6592,7 @@ msgstr "მომხმარებლის სახელი ცარიე
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "მომხმარებლის სახელი"
|
||||
|
||||
@ -6821,17 +6827,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "დაუცველი კავშირი"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/ko.po
192
po/ko.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: korean <ko@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "검색"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "검색"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -194,11 +194,13 @@ msgstr "인쇄"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "데이터베이스의 덤프(스키마) 데이터 보기"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "모두 선택"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "모두 선택안함"
|
||||
|
||||
@ -506,14 +508,85 @@ msgstr "데이터베이스 <b>%s</b>에 SQL 질의:"
|
||||
msgid "Submit Query"
|
||||
msgstr "질의 실행"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "접근이 거부되었습니다."
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "아무 단어나"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "모든 단어"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "정확한 문구"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "정규표현식"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "보기"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "데이터베이스 검색"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "찾을 단어, 값 (와일드카드: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "찾는 방식:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "단어는 스페이스(\" \")로 구분됩니다."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "찾을 테이블:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -678,8 +751,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "데이터베이스"
|
||||
|
||||
@ -1066,13 +1139,6 @@ msgstr "레코드수"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "접근이 거부되었습니다."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1507,7 +1573,7 @@ msgstr "암호 없음"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "암호"
|
||||
|
||||
@ -1793,14 +1859,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr "선택한 줄(레코드)을 삭제 하였습니다."
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2150,7 +2208,7 @@ msgstr "테이블 구조"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "호스트"
|
||||
|
||||
@ -3015,6 +3073,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s 데이터베이스를 삭제했습니다."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "데이터베이스 검색"
|
||||
@ -3041,6 +3100,7 @@ msgstr ""
|
||||
"주의: 데이터베이스 통계 보기는 웹서버와 MySQL 서버 사이에 큰 부하를 줍니다."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "데이터베이스 검색"
|
||||
@ -3748,7 +3808,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3961,7 +4022,7 @@ msgid "Show processes"
|
||||
msgstr "MySQL 프로세스 보기"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "데이터베이스가 없습니다"
|
||||
|
||||
@ -4067,16 +4128,6 @@ msgstr "사용자가 없습니다."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4228,7 +4279,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "정렬"
|
||||
@ -4871,47 +4922,6 @@ msgstr "저장"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "데이터베이스 검색"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "찾을 테이블:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "찾을 단어, 값 (와일드카드: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "아무 단어나"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "모든 단어"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "정확한 문구"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "정규표현식"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "찾는 방식:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5634,7 +5644,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5650,10 +5660,6 @@ msgstr "공간 사용량"
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "단어는 스페이스(\" \")로 구분됩니다."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5771,7 +5777,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr "복사한 테이블로 옮겨감"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6310,7 +6316,7 @@ msgstr "사용자명이 없습니다!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "사용자명"
|
||||
|
||||
@ -6539,17 +6545,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "연결 수"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/lt.po
192
po/lt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
|
||||
"Last-Translator: Rytis <rytis.s@gmail.com>\n"
|
||||
"Language-Team: lithuanian <lt@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Paieška"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Paieška"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Spausdinti"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Sukurti, peržiūrėti duombazės atvaizdį"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Pažymėti visus"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Atžymėti visus"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "SQL-užklausa duombazėje <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Vykdyti užklausą"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Priėjimas uždraustas"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "bent vienas iš žodžių"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "visi žodžiai"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "ištisa frazė"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kaip reguliarųjį išsireiškimą"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Paieškos rezultatai frazei \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s atitikmuo(enys) lentelėje <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Peržiūrėti"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Trinti"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Viso:</b> <i>%s</i> atitikmuo(enys)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Paieška duombazėje"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simbolis: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Rasti:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Žodžiai atskirti tarpo simboliu (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Lentelės(ių) viduje:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr "Patikrinti lentelę"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Duombazė"
|
||||
|
||||
@ -1065,13 +1138,6 @@ msgstr "per sekundę"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Neįmanoma prisijungti: neteisingi duomenys."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Priėjimas uždraustas"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1521,7 +1587,7 @@ msgstr "Nėra slaptažodžio"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Slaptažodis"
|
||||
|
||||
@ -1812,14 +1878,6 @@ msgstr "Įvykdyti išsaugotą užklausą"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Eilutė ištrinta"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Trinti"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2178,7 +2236,7 @@ msgstr "Sukurta duomenų struktūra lentelei"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Darbinė stotis"
|
||||
|
||||
@ -3037,6 +3095,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "Sėkmingai pašalintos %s duombazės."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Eiti į duomenų bazę"
|
||||
@ -3064,6 +3123,7 @@ msgstr ""
|
||||
"darbinių stočių, gali padidėti aukščiau normos."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Paieška duombazėje"
|
||||
@ -3783,7 +3843,8 @@ msgstr "Užklausų saugykla"
|
||||
msgid "Korean"
|
||||
msgstr "Korėjiečių"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Nežinoma kalba: %1$s."
|
||||
@ -4005,7 +4066,7 @@ msgid "Show processes"
|
||||
msgstr "Rodyti procesus"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Nėra duombazių"
|
||||
|
||||
@ -4113,16 +4174,6 @@ msgstr "Nerasta vartotojo(ų)."
|
||||
msgid "Number of tables"
|
||||
msgstr "Lentelių skaičius"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s atitikmuo(enys) lentelėje <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Viso:</b> <i>%s</i> atitikmuo(enys)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4272,7 +4323,7 @@ msgid "Polish"
|
||||
msgstr "Lenkų"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Jungtis"
|
||||
|
||||
@ -4927,47 +4978,6 @@ msgstr "Išsaugoti"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Dydžio matas yra per mažas norint sutalpinti vaizdą viename lape."
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Paieška duombazėje"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Lentelės(ių) viduje:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simbolis: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "bent vienas iš žodžių"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "visi žodžiai"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "ištisa frazė"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kaip reguliarųjį išsireiškimą"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Paieškos rezultatai frazei \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Rasti:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)."
|
||||
@ -5705,7 +5715,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5721,10 +5731,6 @@ msgstr "Vietos naudojimas"
|
||||
msgid "Spanish"
|
||||
msgstr "Ispanų"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Žodžiai atskirti tarpo simboliu (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Eksporto tipas"
|
||||
@ -5853,7 +5859,7 @@ msgstr "Švedų"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Pereiti į lentelės kopiją"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6422,7 +6428,7 @@ msgstr "Tuščias vartotojo vardas!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Vartotojo vardas"
|
||||
|
||||
@ -6655,17 +6661,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Nesaugus susijungimas"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/lv.po
192
po/lv.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: latvian <lv@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Meklēt"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Meklēt"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Drukāt"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Apskatīt datubāzes dampu (shēmu)"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Iezīmēt visu"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Neiezīmēt neko"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "SQL vaicājums uz datubāzes <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Izpildīt vaicājumu"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Pieeja aizliegta"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "kaut viens no vārdiem"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "visi vārdi"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "precīza frāze"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kā regulārā izteiksme"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Meklēšanas rezultāti \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s rezultāti tabulā <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Apskatīt"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Dzēst"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Kopumā:</b> <i>%s</i> rezultāti"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Meklēt datubāzē"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Atrast:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Vārdi ir atdalīti ar tukšumu (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tabulā(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -674,8 +747,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Datubāze"
|
||||
|
||||
@ -1063,13 +1136,6 @@ msgstr "sekundē"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Nevar pieslēgties: kļūda konfigurācijā."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Pieeja aizliegta"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1516,7 +1582,7 @@ msgstr "Nav paroles"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Parole"
|
||||
|
||||
@ -1806,14 +1872,6 @@ msgstr "Izpildīt iegrāmatoto vaicājumu"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Ieraksts tika dzēsts"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Dzēst"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2163,7 +2221,7 @@ msgstr "Tabulas struktūra tabulai"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Hosts"
|
||||
|
||||
@ -3029,6 +3087,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s datubāzes tika veiksmīgi dzēstas."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Meklēt datubāzē"
|
||||
@ -3056,6 +3115,7 @@ msgstr ""
|
||||
"apmaiņu starp webserveri un MySQL serveri."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Meklēt datubāzē"
|
||||
@ -3773,7 +3833,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Korejiešu"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3988,7 +4049,7 @@ msgid "Show processes"
|
||||
msgstr "Parādīt procesus"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Nav datubāzu"
|
||||
|
||||
@ -4096,16 +4157,6 @@ msgstr "Lietotāji netika atrasti."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s rezultāti tabulā <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Kopumā:</b> <i>%s</i> rezultāti"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4256,7 +4307,7 @@ msgid "Polish"
|
||||
msgstr "Poļu"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Kārtošana"
|
||||
@ -4912,47 +4963,6 @@ msgstr "Saglabāt"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Mērogošanas faktors ir pārāk mazs, lai shēma ietilptu vienā lapā"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Meklēt datubāzē"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tabulā(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "kaut viens no vārdiem"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "visi vārdi"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "precīza frāze"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kā regulārā izteiksme"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Meklēšanas rezultāti \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Atrast:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Konfigurācijas fails tagad prasa slepeno paroli (blowfish_secret)."
|
||||
@ -5674,7 +5684,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5690,10 +5700,6 @@ msgstr "Diska vietas lietošana"
|
||||
msgid "Spanish"
|
||||
msgstr "Spāņu"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Vārdi ir atdalīti ar tukšumu (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Eksporta veids"
|
||||
@ -5821,7 +5827,7 @@ msgstr "Zviedru"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Pārslēgties uz nokopēto tabulu"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6385,7 +6391,7 @@ msgstr "Lietotāja vārds nav norādīts!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Lietotājvārds"
|
||||
|
||||
@ -6618,17 +6624,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Konekcijas"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/mk.po
192
po/mk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Пребарување"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Пребарување"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Печати"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Прикажи содржина (шема) на базата"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "избери се"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "ништо"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "SQL упит на базата на податоци <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Изврши SQL"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Пристапот не е допуштен"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "барем еден од зборовите"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "сите зборови"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точен израз"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "како регуларен израз"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Резултати од пребарувањето за \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s погодоци во табелата <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Преглед"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "избриши"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>вкупно:</b> <i>%s</i> погодоци"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Пребарување низ базата на податоци"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Барај:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Зборовите се одвојуваат со празно место (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "во табела(и):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -674,8 +747,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "База на податоци"
|
||||
|
||||
@ -1062,13 +1135,6 @@ msgstr "во секунда"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Не може да се поврзам: лоши подесувања."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Пристапот не е допуштен"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1521,7 +1587,7 @@ msgstr "Нема лозинка"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Лозинка"
|
||||
|
||||
@ -1810,14 +1876,6 @@ msgstr "Изврши запамтен упит"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Записот е избришан"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "избриши"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2187,7 +2245,7 @@ msgstr "Структура на табелата"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3051,6 +3109,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s базата на податоци успешно е избришана."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Пребарување низ базата на податоци"
|
||||
@ -3078,6 +3137,7 @@ msgstr ""
|
||||
"сообраќајот помеѓу веб серверот и MySQL серверот."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Пребарување низ базата на податоци"
|
||||
@ -3798,7 +3858,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Корејски"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -4020,7 +4081,7 @@ msgid "Show processes"
|
||||
msgstr "Прикажи листа на процеси"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Базата на податоци не постои"
|
||||
|
||||
@ -4128,16 +4189,6 @@ msgstr "Корисникот не е пронајден."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s погодоци во табелата <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>вкупно:</b> <i>%s</i> погодоци"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4288,7 +4339,7 @@ msgid "Polish"
|
||||
msgstr "Полски"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Подредуваање"
|
||||
@ -4946,47 +4997,6 @@ msgstr ""
|
||||
"Факторот на намалување е премал и шемата не може да ја собере на една "
|
||||
"страница"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Пребарување низ базата на податоци"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "во табела(и):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "барем еден од зборовите"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "сите зборови"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точен израз"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "како регуларен израз"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Резултати од пребарувањето за \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Барај:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Конфигурациската податотека бара лозинка (blowfish_secret)."
|
||||
@ -5707,7 +5717,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5723,10 +5733,6 @@ msgstr "Големина"
|
||||
msgid "Spanish"
|
||||
msgstr "Шпански"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Зборовите се одвојуваат со празно место (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Тип на извоз"
|
||||
@ -5853,7 +5859,7 @@ msgstr "Шведски"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Премини на копираната табела"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6427,7 +6433,7 @@ msgstr "Не е внесен назив на корисник!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Назив на корисник"
|
||||
|
||||
@ -6662,17 +6668,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Конекции"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/mn.po
192
po/mn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: mongolian <mn@li.org>\n"
|
||||
@ -43,7 +43,7 @@ msgstr "Хайх"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -61,7 +61,7 @@ msgstr "Хайх"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -194,11 +194,13 @@ msgstr "Хэвлэх"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "ӨС-ийн схем харах"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Бүгдийг сонгох"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Бүх сонгосныг болих"
|
||||
|
||||
@ -499,14 +501,85 @@ msgstr "ӨС <b>%s</b> дахь SQL-асуулт:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Асуултыг илгээх"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Хандах эрхгүй"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "Үгүүдийн ядаж нэгээр"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "бүх үг"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "яг цав өгүүлбэр"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Хайлтын үр дүн \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s олдоц(ууд) хүснэгт <i>%s</i>-д"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Хөтлөх"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Устгах"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Нийт:</b> <i>%s</i> олдоц(ууд)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Өгөгдлийн санд хайх"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Хайх:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Хүснэгт(үүд) дотор:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -671,8 +744,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "ӨС"
|
||||
|
||||
@ -1054,13 +1127,6 @@ msgstr "секундэд"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Холбогдсонгүй: тохируулга буруу."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Хандах эрхгүй"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1504,7 +1570,7 @@ msgstr "Нууц үггүй"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Нууц үг"
|
||||
|
||||
@ -1794,14 +1860,6 @@ msgstr "Тэмдэглэгдсэн асуулт ажиллуулах"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Мөр устгагдсан"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Устгах"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2165,7 +2223,7 @@ msgstr "Хүснэгтийн бүтэц"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
@ -3012,6 +3070,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s ӨС амжилттай устгагдлаа."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -3037,6 +3096,7 @@ msgstr ""
|
||||
"Тэмдэглэл: Вэб сервэр, MySQL-ийн хоорондох өгөгдөл дамжуулах статистик."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3747,7 +3807,8 @@ msgstr "Түлхүүрийн нөөцлөл"
|
||||
msgid "Korean"
|
||||
msgstr "Солонгос"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Үл мэдэгдэх хэл: %1$s."
|
||||
@ -3966,7 +4027,7 @@ msgid "Show processes"
|
||||
msgstr "Процесууд харах"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "ӨС байхгүй"
|
||||
|
||||
@ -4073,16 +4134,6 @@ msgstr "Хэрэглэгч олдсонгүй."
|
||||
msgid "Number of tables"
|
||||
msgstr "Хүснэгтийн тоо"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s олдоц(ууд) хүснэгт <i>%s</i>-д"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Нийт:</b> <i>%s</i> олдоц(ууд)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4230,7 +4281,7 @@ msgid "Polish"
|
||||
msgstr "Польш"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4870,47 +4921,6 @@ msgstr "Хадгалах"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Хэт жижиг схемийг нэг хуудсанд дүүргэх"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Өгөгдлийн санд хайх"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Хүснэгт(үүд) дотор:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "Үгүүдийн ядаж нэгээр"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "бүх үг"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "яг цав өгүүлбэр"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Хайлтын үр дүн \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Хайх:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Тохиргооны файл одоо нууцлал шаардаж байна (blowfish_secret)."
|
||||
@ -5675,7 +5685,7 @@ msgstr "Жижиш/Том Бүгдийг"
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5691,10 +5701,6 @@ msgstr "Ашиглалтын зай"
|
||||
msgid "Spanish"
|
||||
msgstr "Испани"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Гаргах төрөл"
|
||||
@ -5819,7 +5825,7 @@ msgstr "Швед"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Хуулагдсан хүснэгт рүү шилжих"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6381,7 +6387,7 @@ msgstr "Хэрэглэгчийн нэр хоосон!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Хэрэглэгчийн нэр"
|
||||
|
||||
@ -6612,17 +6618,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "ХИ. давхацсан холболтууд"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/ms.po
192
po/ms.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: malay <ms@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "Cari"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "Cari"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -194,11 +194,13 @@ msgstr "Cetak"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Lihat longgokan (skema) pangkalan data"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Sila pilih pangkalan data"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Nyahpilih Semua"
|
||||
|
||||
@ -503,14 +505,85 @@ msgstr "SQL- kueri pada pangkalan data <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Hantar Kueri"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Akses dinafikan"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "sekurang-kurangnya satu perkataan"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "semua perkataan"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "Frasa tepat"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "sebagai penyataan regular (regexp)"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Hasil carian bagi \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s padanan di dalam jadual <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Lungsur"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Padam"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Jumlah</b>: <i>%s</i> padanan"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cari di pangkalan data"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Cari:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Di dalam jadual:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Pangkalan Data"
|
||||
|
||||
@ -1065,13 +1138,6 @@ msgstr "Rekod"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Akses dinafikan"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1511,7 +1577,7 @@ msgstr "Tiada Katalaluan"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Katalaluan"
|
||||
|
||||
@ -1799,14 +1865,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Baris telah dipadam"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Padam"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2156,7 +2214,7 @@ msgstr "Struktur jadual bagi jadual"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Hos"
|
||||
|
||||
@ -3018,6 +3076,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Cari di pangkalan data"
|
||||
@ -3045,6 +3104,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Cari di pangkalan data"
|
||||
@ -3755,7 +3815,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3969,7 +4030,7 @@ msgid "Show processes"
|
||||
msgstr "Papar proses"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Tiada pangkalan data"
|
||||
|
||||
@ -4075,16 +4136,6 @@ msgstr "Tiada pengguna dijumpai."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s padanan di dalam jadual <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Jumlah</b>: <i>%s</i> padanan"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4236,7 +4287,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Isih"
|
||||
@ -4880,47 +4931,6 @@ msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
"Faktor skala adalah terlalu kecil supaya muat dengan skema dalam satu halaman"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Cari di pangkalan data"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Di dalam jadual:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "sekurang-kurangnya satu perkataan"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "semua perkataan"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "Frasa tepat"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "sebagai penyataan regular (regexp)"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Hasil carian bagi \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Cari:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5642,7 +5652,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5658,10 +5668,6 @@ msgstr "Penggunaan ruang"
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5789,7 +5795,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6327,7 +6333,7 @@ msgstr "Kata Pengenalan kosong!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Kata Pengenalan"
|
||||
|
||||
@ -6556,17 +6562,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Hubungan"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/nb.po
192
po/nb.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-05-06 08:35+0200\n"
|
||||
"Last-Translator: <sven.erik.andersen@gmail.com>\n"
|
||||
"Language-Team: norwegian <no@li.org>\n"
|
||||
@ -45,7 +45,7 @@ msgstr "Søk"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -63,7 +63,7 @@ msgstr "Søk"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -196,11 +196,13 @@ msgstr "Skriv ut"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Vis dump (skjema) av database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Velg alle"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Fjern alle valgte"
|
||||
|
||||
@ -495,14 +497,85 @@ msgstr "SQL-spørring i database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Kjør spørring"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ingen tilgang"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "minst ett av ordene"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle ordene"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "med den nøyaktige setningen"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "som \"regular expression\""
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Søkeresultat for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s treff i tabell <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Se på"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Slett"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totalt:</b> <i>%s</i> treff"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Søk i database"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Ord eller verdi(er) å søke etter (jokertegn: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Finn:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Ord er separert med et mellomrom (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "I tabell(ene):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "I felt:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -667,8 +740,8 @@ msgstr "Overvåkede tabeller"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
@ -1002,13 +1075,6 @@ msgstr "Sekund"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Kan ikke koble til: ugyldige innstillinger."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ingen tilgang"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1454,7 +1520,7 @@ msgstr "Intet passord"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
@ -1742,14 +1808,6 @@ msgstr "Utfør lagret spørring"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Raden er slettet"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Slett"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2140,7 +2198,7 @@ msgstr "Tabellstruktur for tabell"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Vert"
|
||||
|
||||
@ -2997,6 +3055,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databasene har blitt slettet."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Kildedatabase"
|
||||
|
||||
@ -3023,6 +3082,7 @@ msgstr ""
|
||||
"mellom webtjeneren og MySQL-tjeneren."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Måldatabase"
|
||||
|
||||
@ -3752,7 +3812,8 @@ msgstr "Nøkkelmellomlager"
|
||||
msgid "Korean"
|
||||
msgstr "koreansk"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Ukjent språk: %1$s."
|
||||
@ -3975,7 +4036,7 @@ msgid "Show processes"
|
||||
msgstr "Vis prosesser"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Ingen databaser"
|
||||
|
||||
@ -4086,16 +4147,6 @@ msgstr "Ingen bruker(e) funnet."
|
||||
msgid "Number of tables"
|
||||
msgstr "Antall tabeller"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s treff i tabell <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totalt:</b> <i>%s</i> treff"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4246,7 +4297,7 @@ msgid "Polish"
|
||||
msgstr "Polsk"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -4909,47 +4960,6 @@ msgstr "Lagre"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Skaleringsfaktoren er for liten til å romme alt på en side"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Søk i database"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "I felt:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "I tabell(ene):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Ord eller verdi(er) å søke etter (jokertegn: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "minst ett av ordene"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle ordene"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "med den nøyaktige setningen"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "som \"regular expression\""
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Søkeresultat for \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Finn:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5788,7 +5798,7 @@ msgstr "Liten/Stor alle"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Lås til ruter"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Socket"
|
||||
|
||||
@ -5804,10 +5814,6 @@ msgstr "Plassbruk"
|
||||
msgid "Spanish"
|
||||
msgstr "Spansk"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Ord er separert med et mellomrom (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Eksporttype"
|
||||
@ -5938,7 +5944,7 @@ msgstr "svensk"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Bytt til kopiert tabell"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6521,7 +6527,7 @@ msgstr "Brukernavnet er tomt!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Brukernavn"
|
||||
|
||||
@ -6748,15 +6754,15 @@ msgstr ""
|
||||
"For mer informasjon om replikasjonsstatusen for tjeneren, gå til <a href="
|
||||
"\"#replication\">replikasjonsseksjonen</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr "Skriv inn manuelt"
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr "Nåværende tilkobling"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr "Konfigurasjon: %s"
|
||||
|
||||
192
po/nl.po
192
po/nl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-26 15:46+0200\n"
|
||||
"Last-Translator: <rink@initfour.nl>\n"
|
||||
"Language-Team: dutch <nl@li.org>\n"
|
||||
@ -45,7 +45,7 @@ msgstr "Zoeken"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -63,7 +63,7 @@ msgstr "Zoeken"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -196,11 +196,13 @@ msgstr "Afdrukken"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Bekijk een dump (schema) van database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Selecteer alles"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Deselecteer alles"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "SQL-query op database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Query uitvoeren"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Toegang geweigerd "
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "ten minste een van de woorden"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle woorden"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "de exacte zin"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "als een reguliere expressie"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Zoek resultaten voor \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s overeenkomst(en) in de tabel <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Verkennen"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totaal:</b> <i>%s</i> overeenkomst(en)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Zoeken in de database"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Woord(en) of waarde(s) waarnaar gezocht moet worden (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Zoek:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Woorden worden gesplits door een spatiekarakter (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "In de tabel(len):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "In het veld:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -674,8 +747,8 @@ msgstr "Tabellen met tracker"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
@ -1061,13 +1134,6 @@ msgstr "per seconde"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Kan niet verbinden: ongeldige instellingen."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Toegang geweigerd "
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1525,7 +1591,7 @@ msgstr "Geen wachtwoord"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
@ -1822,14 +1888,6 @@ msgstr "Voor de gebookmarkte query uit"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "De rij is verwijderd"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2227,7 +2285,7 @@ msgstr "Tabelstructuur voor tabel"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Machine"
|
||||
|
||||
@ -3098,6 +3156,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databases zijn succesvol verwijderd."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Bron database"
|
||||
|
||||
@ -3124,6 +3183,7 @@ msgstr ""
|
||||
"tussen de webserver en de MySQL-server."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Doel database"
|
||||
|
||||
@ -3849,7 +3909,8 @@ msgstr "Sleutelcache"
|
||||
msgid "Korean"
|
||||
msgstr "Koreaans"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Onbekende taal: %1$s."
|
||||
@ -4074,7 +4135,7 @@ msgid "Show processes"
|
||||
msgstr "Laat processen zien"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Geen databases"
|
||||
|
||||
@ -4187,16 +4248,6 @@ msgstr "Geen gebruiker(s) gevonden."
|
||||
msgid "Number of tables"
|
||||
msgstr "Aantal tabellen"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s overeenkomst(en) in de tabel <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totaal:</b> <i>%s</i> overeenkomst(en)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4345,7 +4396,7 @@ msgid "Polish"
|
||||
msgstr "Pools"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Poort"
|
||||
|
||||
@ -5021,47 +5072,6 @@ msgstr "Opslaan"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "De schaalfactor is te klein om het schema op een pagina te zetten"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Zoeken in de database"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "In het veld:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "In de tabel(len):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Woord(en) of waarde(s) waarnaar gezocht moet worden (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "ten minste een van de woorden"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alle woorden"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "de exacte zin"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "als een reguliere expressie"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Zoek resultaten voor \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Zoek:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5917,7 +5927,7 @@ msgstr "Alles In/uitklappen"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Kleef aan raster"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Socket"
|
||||
|
||||
@ -5933,10 +5943,6 @@ msgstr "Ruimtegebruik"
|
||||
msgid "Spanish"
|
||||
msgstr "Spaans"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Woorden worden gesplits door een spatiekarakter (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Export type"
|
||||
@ -6065,7 +6071,7 @@ msgstr "Zweeds"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Wissel naar de gekopieerde tabel"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6653,7 +6659,7 @@ msgstr "De gebruikersnaam is leeg!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Gebruikersnaam"
|
||||
|
||||
@ -6905,17 +6911,17 @@ msgstr ""
|
||||
"voor meer informatie over replicatie in de <a href=\"#replication"
|
||||
"\">replication status</a> sectie."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Onveilige verbinding"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr ""
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr ""
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr ""
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr ""
|
||||
|
||||
@ -496,14 +498,85 @@ msgstr ""
|
||||
msgid "Submit Query"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, possible-php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, possible-php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, possible-php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -668,8 +741,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
@ -1003,13 +1076,6 @@ msgstr ""
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1434,7 +1500,7 @@ msgstr ""
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1713,14 +1779,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2067,7 +2125,7 @@ msgstr ""
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
@ -2909,6 +2967,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -2933,6 +2992,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3628,7 +3688,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, possible-php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3835,7 +3896,7 @@ msgid "Show processes"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr ""
|
||||
|
||||
@ -3940,16 +4001,6 @@ msgstr ""
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, possible-php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, possible-php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4097,7 +4148,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4725,47 +4776,6 @@ msgstr ""
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, possible-php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5477,7 +5487,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5493,10 +5503,6 @@ msgstr ""
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5610,7 +5616,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6144,7 +6150,7 @@ msgstr ""
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr ""
|
||||
|
||||
@ -6357,15 +6363,15 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, possible-php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/pl.po
192
po/pl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: polish <pl@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Szukaj"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Szukaj"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Drukuj"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Zrzut bazy danych"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Zaznacz wszystkie"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Odznacz wszystkie"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "Zapytanie SQL dla bazy danych <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Wykonaj zapytania"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Brak dostępu"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "przynajmniej jedno ze słów"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "wszystkie słowa"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "cała fraza"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "wyrażenie regularne"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Szukaj w rezultatach dla \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s trafień wewnątrz tabeli <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Przeglądaj"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Usuń"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>W sumie:</b> <i>%s</i> trafień"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Szukaj w bazie danych"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Szukane słowa lub wartości (symbol wieloznaczny: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Znajdź:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Słowa są rozdzielane znakiem spacji (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Wewnątrz tabel(i):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Wewnątrz pola:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr "Pomiń zablokowane tabele"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Baza danych"
|
||||
|
||||
@ -1069,13 +1142,6 @@ msgstr "na sekundę"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Nie udało się nawiązać połączenia: błędne ustawienia."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Brak dostępu"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1531,7 +1597,7 @@ msgstr "Brak hasła"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
@ -1826,14 +1892,6 @@ msgstr "Wykonaj zapamiętanego zapytania"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Rekord został skasowany"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Usuń"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2216,7 +2274,7 @@ msgstr "Struktura tabeli dla "
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3083,6 +3141,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s baz danych zostało pomyślnie usuniętych."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Szukaj w bazie danych"
|
||||
@ -3110,6 +3169,7 @@ msgstr ""
|
||||
"serwerem WWW a serwerem MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Szukaj w bazie danych"
|
||||
@ -3833,7 +3893,8 @@ msgstr "Bufor podręczny indeksów"
|
||||
msgid "Korean"
|
||||
msgstr "Koreański"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Nieznany język: %1$s."
|
||||
@ -4055,7 +4116,7 @@ msgid "Show processes"
|
||||
msgstr "Pokaż procesy"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Brak baz danych"
|
||||
|
||||
@ -4166,16 +4227,6 @@ msgstr "Nie znaleziono użytkownika(ów)."
|
||||
msgid "Number of tables"
|
||||
msgstr "Liczba tabel"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s trafień wewnątrz tabeli <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>W sumie:</b> <i>%s</i> trafień"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4324,7 +4375,7 @@ msgid "Polish"
|
||||
msgstr "Polski"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sortuj"
|
||||
@ -4983,47 +5034,6 @@ msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
"Współczynnik skali jest za mały, by schemat zmieścił się na jednej stronie"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Szukaj w bazie danych"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Wewnątrz pola:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Wewnątrz tabel(i):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Szukane słowa lub wartości (symbol wieloznaczny: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "przynajmniej jedno ze słów"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "wszystkie słowa"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "cała fraza"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "wyrażenie regularne"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Szukaj w rezultatach dla \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Znajdź:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5861,7 +5871,7 @@ msgstr "Wszystko małe/duże"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Przyciągaj do siatki"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5877,10 +5887,6 @@ msgstr "Wykorzystanie przestrzeni"
|
||||
msgid "Spanish"
|
||||
msgstr "Hiszpański"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Słowa są rozdzielane znakiem spacji (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Rodzaj eksportu"
|
||||
@ -6014,7 +6020,7 @@ msgstr "Szwedzki"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Przełącz na skopiowaną tabelę"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6599,7 +6605,7 @@ msgstr "Brak nazwy użytkownika!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nazwa użytkownika"
|
||||
|
||||
@ -6838,17 +6844,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Niezabezpieczone połączenie"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/pt.po
192
po/pt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: portuguese <pt@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "Pesquisar"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "Pesquisar"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -192,11 +192,13 @@ msgstr "Imprimir"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Ver o esquema da base de dados"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Selecciona Todas"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Limpa Todas as Selecções"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "Comando SQL na base de dados <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Executa Comando SQL"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acesso Negado"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "pelo menos uma das palavras"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "todas as palavras"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a frase exacta"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Procurar resultados para \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultado(s) na tabela <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Visualiza"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Apagar"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pesquisar na Base de Dados"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palavra(s) ou valor(es) para pesquisar para (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Procurar:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "As palavras são separadas pelo caracter espaço (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dentro de Tabela(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -676,8 +749,8 @@ msgstr "Verificar tabela"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Base de Dados"
|
||||
|
||||
@ -1067,13 +1140,6 @@ msgstr "por segundo"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acesso Negado"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1523,7 +1589,7 @@ msgstr "Sem palavra-passe"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Palavra-passe"
|
||||
|
||||
@ -1811,14 +1877,6 @@ msgstr "Executar um query marcado(do marcador)"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Registo eliminado"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Apagar"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2168,7 +2226,7 @@ msgstr "Estrutura da tabela"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Máquina"
|
||||
|
||||
@ -3036,6 +3094,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "As Bases de Dados %s foram apagadas com sucesso."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Pesquisar na Base de Dados"
|
||||
@ -3063,6 +3122,7 @@ msgstr ""
|
||||
"entre o servidor web e o de MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Pesquisar na Base de Dados"
|
||||
@ -3782,7 +3842,8 @@ msgstr "Tipo de Query"
|
||||
msgid "Korean"
|
||||
msgstr "Coreano"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3998,7 +4059,7 @@ msgid "Show processes"
|
||||
msgstr "Mostra os Processos"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Sem bases de dados"
|
||||
|
||||
@ -4104,16 +4165,6 @@ msgstr "Nenhum utilizador encontrado."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultado(s) na tabela <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4268,7 +4319,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Ordenação"
|
||||
@ -4920,47 +4971,6 @@ msgstr "Guarda"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "O factor escala é muito pequeno para encaixar o esquema numa página"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pesquisar na Base de Dados"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dentro de Tabela(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palavra(s) ou valor(es) para pesquisar para (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "pelo menos uma das palavras"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "todas as palavras"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a frase exacta"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Procurar resultados para \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Procurar:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5685,7 +5695,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5702,10 +5712,6 @@ msgstr "Espaço ocupado"
|
||||
msgid "Spanish"
|
||||
msgstr "Dinamarquês"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "As palavras são separadas pelo caracter espaço (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Tipo de Exportação"
|
||||
@ -5835,7 +5841,7 @@ msgstr "Sueco"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Mudar para a tabela copiada"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6377,7 +6383,7 @@ msgstr "O nome do utilizador está vazio!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nome do Utilizador"
|
||||
|
||||
@ -6608,17 +6614,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Ligações"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/pt_BR.po
192
po/pt_BR.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
|
||||
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth@gmail.com>\n"
|
||||
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Procurar"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Procurar"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Imprimir"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Ver o esquema do Banco de Dados"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Selecionar Todos"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Desmarcar Todos"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "Consulta no Banco de Dados <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Enviar consulta SQL"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acesso negado"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "pelo menos uma das palavras"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "todas as palavras"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a frase exata"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "como expressão regular"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Procurar resultados por \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultado(s) dentro da tabela <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Visualizar"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Remover"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Procurar no Banco de Dados"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Encontrar:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Palavras são separadas por um caracter de espaço (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dentro da(s) tabela(s):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Dentro do campo:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr "Verificar tabela"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Banco de Dados"
|
||||
|
||||
@ -1065,13 +1138,6 @@ msgstr "por segundo"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Não pode conectar: configurações inválidas."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acesso negado"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1522,7 +1588,7 @@ msgstr "Sem senha"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
@ -1814,14 +1880,6 @@ msgstr "Executar consulta marcada"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Registro eliminado"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Remover"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2191,7 +2249,7 @@ msgstr "Estrutura da tabela"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Servidor"
|
||||
|
||||
@ -3047,6 +3105,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "Banco de Dados %s foi eliminado com sucesso!"
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Procurar no Banco de Dados"
|
||||
@ -3074,6 +3133,7 @@ msgstr ""
|
||||
"dados entre o servidor web e o servidor MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Procurar no Banco de Dados"
|
||||
@ -3797,7 +3857,8 @@ msgstr "Chave do cache"
|
||||
msgid "Korean"
|
||||
msgstr "Coreano"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Linguagem desconhecida: %1$s."
|
||||
@ -4020,7 +4081,7 @@ msgid "Show processes"
|
||||
msgstr "Mostrar os Processos"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Sem bases"
|
||||
|
||||
@ -4132,16 +4193,6 @@ msgstr "Nenhum usuário(s) encontrado."
|
||||
msgid "Number of tables"
|
||||
msgstr "Numero de tabelas"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s resultado(s) dentro da tabela <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4289,7 +4340,7 @@ msgid "Polish"
|
||||
msgstr "Polonês"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Porta"
|
||||
|
||||
@ -4939,47 +4990,6 @@ msgstr "Salvar"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "A escala é muito pequena para ajustar o esquema em uma página"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Procurar no Banco de Dados"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Dentro do campo:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Dentro da(s) tabela(s):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "pelo menos uma das palavras"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "todas as palavras"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "a frase exata"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "como expressão regular"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Procurar resultados por \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Encontrar:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5823,7 +5833,7 @@ msgstr "Tudo Pequeno/Grande"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Ajustar à grade"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5839,10 +5849,6 @@ msgstr "Uso do espaço"
|
||||
msgid "Spanish"
|
||||
msgstr "Espanhol"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Palavras são separadas por um caracter de espaço (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Tipo de exportação"
|
||||
@ -5975,7 +5981,7 @@ msgstr "Suéco"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Mudar para a tabela copiada"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6558,7 +6564,7 @@ msgstr "O nome do usuário está em branco!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nome do usuário"
|
||||
|
||||
@ -6795,17 +6801,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "máx. de conexões concorrentes"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/ro.po
192
po/ro.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-13 00:41+0200\n"
|
||||
"Last-Translator: <ronaldinia@yahoo.com>\n"
|
||||
"Language-Team: romanian <ro@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Caută"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "Caută"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr "Listare"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Vizualizarea schemei bazei de date"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Selectează tot"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Deselectează tot"
|
||||
|
||||
@ -503,14 +505,85 @@ msgstr "Comandă SQL pe baza de date <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Trimite comanda"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acces interzis"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "cel puțin unul dintre cuvinte"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "toate cuvintele"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "fraza exactă"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "ca o expresie"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Caută rezultate pentru \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s rezultat(e) în interiorul tabelului <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Navigare"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Șterge"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> rezultat(e)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Caută în baza de date"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Cuvînt/valoare de căutat (metacaracter: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Găsește:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Cuvinte despărțite de un spațiu (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "În interiorul tabelei(lor):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "În cîmpul:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr "Verificare tabel"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Baza de date"
|
||||
|
||||
@ -1070,13 +1143,6 @@ msgstr "pe secundă"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Conexiune esuata: setari invalide."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Acces interzis"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1532,7 +1598,7 @@ msgstr "Nu există parolă"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Parola"
|
||||
|
||||
@ -1823,14 +1889,6 @@ msgstr "Executare comandă marcată"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Linia a fost ștearsă"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Șterge"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2223,7 +2281,7 @@ msgstr "Structura de tabel pentru tabelul"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Gazda"
|
||||
|
||||
@ -3094,6 +3152,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s baza(ele) de data(e) au fost aruncate."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Caută în baza de date"
|
||||
@ -3121,6 +3180,7 @@ msgstr ""
|
||||
"traficului între MySQL și serverul Web."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Caută în baza de date"
|
||||
@ -3843,7 +3903,8 @@ msgstr "Key cache"
|
||||
msgid "Korean"
|
||||
msgstr "Coreean"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Limbă necunoscută: %1$s."
|
||||
@ -4067,7 +4128,7 @@ msgid "Show processes"
|
||||
msgstr "Afișează procesele"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Nu sînt baze de date"
|
||||
|
||||
@ -4180,16 +4241,6 @@ msgstr "Nu s-a găsit nici un utilizator."
|
||||
msgid "Number of tables"
|
||||
msgstr "Număr de tabele"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s rezultat(e) în interiorul tabelului <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> rezultat(e)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4338,7 +4389,7 @@ msgid "Polish"
|
||||
msgstr "Polononez"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sortare"
|
||||
@ -4997,47 +5048,6 @@ msgstr "Salveaza"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Factorul de scalare este prea mica pentru a inchepe in pagina"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Caută în baza de date"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "În cîmpul:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "În interiorul tabelei(lor):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Cuvînt/valoare de căutat (metacaracter: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "cel puțin unul dintre cuvinte"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "toate cuvintele"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "fraza exactă"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "ca o expresie"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Caută rezultate pentru \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Găsește:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5867,7 +5877,7 @@ msgstr "Small/Big All"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Aliniere la grilă"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5883,10 +5893,6 @@ msgstr "Utilizare spațiu"
|
||||
msgid "Spanish"
|
||||
msgstr "Spaniolă"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Cuvinte despărțite de un spațiu (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Modul de export"
|
||||
@ -6017,7 +6023,7 @@ msgstr "Suedez"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Schimbă la tabela copiată"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6601,7 +6607,7 @@ msgstr "Numele de utilizator este gol!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Nume utilizator"
|
||||
|
||||
@ -6839,16 +6845,16 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
msgid "Current connection"
|
||||
msgstr "Comprimă conexiunea"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/ru.po
192
po/ru.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: russian <ru@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Поиск"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "Поиск"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr "Печать"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Отобразить дамп (схему) базы данных"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Выделить все"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Снять выделение"
|
||||
|
||||
@ -503,14 +505,85 @@ msgstr "SQL-запрос к базе данных <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Выполнить запрос"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "В доступе отказано"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "любое из слов"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "все слова"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точное соответствие"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "регулярное выражение"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Результаты поиска по "<i>%s</i>" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s вхождения(ий) в таблице <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Обзор"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Удалить"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Итого:</b> <i>%s</i> вхождения(ий)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Поиск в базе данных"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Слово(а) или значение(я) для поиска (групповой символ: "%"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Искать:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Слова разделяются пробелом (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "В таблице/таблицах:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Внутри поля:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr "Отслеживаемые таблицы"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "База данных"
|
||||
|
||||
@ -1062,13 +1135,6 @@ msgstr "в секунду"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Соединение невозможно! Неверные настройки."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "В доступе отказано"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1526,7 +1592,7 @@ msgstr "Без пароля"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
@ -1820,14 +1886,6 @@ msgstr "Выполнить отмеченный запрос"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Запись была удалена"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Удалить"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2225,7 +2283,7 @@ msgstr "Структура таблицы"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
@ -3096,6 +3154,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "Удалено баз данных: %s"
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Источник"
|
||||
|
||||
@ -3122,6 +3181,7 @@ msgstr ""
|
||||
"трафик между веб-сервером и сервером MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Целевая база данных"
|
||||
|
||||
@ -3843,7 +3903,8 @@ msgstr "Кеш индекса"
|
||||
msgid "Korean"
|
||||
msgstr "Корейский"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Неизвестный язык: %1$s."
|
||||
@ -4068,7 +4129,7 @@ msgid "Show processes"
|
||||
msgstr "Список процессов"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Базы данных отсутствуют"
|
||||
|
||||
@ -4179,16 +4240,6 @@ msgstr "Пользователей не найдено."
|
||||
msgid "Number of tables"
|
||||
msgstr "Количество таблиц"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s вхождения(ий) в таблице <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Итого:</b> <i>%s</i> вхождения(ий)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4339,7 +4390,7 @@ msgid "Polish"
|
||||
msgstr "Польский"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Порт"
|
||||
|
||||
@ -5011,47 +5062,6 @@ msgstr "Сохранить"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Схема не помещается на одной странице. Необходимо уменьшить масштаб."
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Поиск в базе данных"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Внутри поля:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "В таблице/таблицах:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Слово(а) или значение(я) для поиска (групповой символ: "%"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "любое из слов"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "все слова"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точное соответствие"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "регулярное выражение"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Результаты поиска по "<i>%s</i>" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Искать:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5915,7 +5925,7 @@ msgstr "Свернуть/развернуть отображение всех т
|
||||
msgid "Snap to grid"
|
||||
msgstr "Привязать к сетке"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Сокет"
|
||||
|
||||
@ -5931,10 +5941,6 @@ msgstr "Используемое пространство"
|
||||
msgid "Spanish"
|
||||
msgstr "Испанский"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Слова разделяются пробелом (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Тип экспорта"
|
||||
@ -6063,7 +6069,7 @@ msgstr "Шведский"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Переключиться на скопированную таблицу"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6655,7 +6661,7 @@ msgstr "Не задано имя пользователя!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Имя пользователя"
|
||||
|
||||
@ -6906,17 +6912,17 @@ msgstr ""
|
||||
"получения подробной информации о состоянии репликации сервера, пожалуйста, "
|
||||
"перейдите в <a href=\"#replication\">раздел репликации</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Небезопасное соединение"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/si.po
192
po/si.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: sinhala <si@li.org>\n"
|
||||
@ -45,7 +45,7 @@ msgstr "සෙවීම"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -63,7 +63,7 @@ msgstr "සෙවීම"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -196,11 +196,13 @@ msgstr "මුද්රණය කරන්න"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "View dump (schema) of database"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "සියල්ල තෝරන්න"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "SQL query on database <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "විමසුම ඉදිරිපත් කරන්න"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "පිවිසුම වලක්වා ඇත"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "අවම වශයෙන් එක් වචනයක්වත්"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "සියලු වචන"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "හරියටම වාක්යාංශය"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" %s සඳහා සෙවීම් ප්රතිළුල:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "බ්රවුස් කරන්න"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "ඉවත් කරන්න"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "දත්තගබඩාවේ සොයන්න"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "සොයන්න:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "වගු(ව) තුල:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -675,8 +748,8 @@ msgstr "වගුව පරීක්ෂා කරන්න"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "දත්තගබඩාව"
|
||||
|
||||
@ -1064,13 +1137,6 @@ msgstr "තප්පරයකට"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "පිවිසුම වලක්වා ඇත"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1521,7 +1587,7 @@ msgstr "මුරපදයක් නැත"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "මුරපදය"
|
||||
|
||||
@ -1814,14 +1880,6 @@ msgstr "Execute bookmarked query"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "පෙළ ඉවත් කරන ලදි"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "ඉවත් කරන්න"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2188,7 +2246,7 @@ msgstr "වගුවක් සඳහා වගු සැකිල්ල"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "දායකයා"
|
||||
|
||||
@ -3051,6 +3109,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s දත්තගබඩාව සාර්ථකව හලන ලදි."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "දත්තගබඩාවේ සොයන්න"
|
||||
@ -3078,6 +3137,7 @@ msgstr ""
|
||||
"between the web server and the MySQL server."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "දත්තගබඩාවේ සොයන්න"
|
||||
@ -3798,7 +3858,8 @@ msgstr "යතුරු කෑෂ් කිරීම"
|
||||
msgid "Korean"
|
||||
msgstr "කොරියානු"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "%1$s නොදන්නා භාෂාවකි."
|
||||
@ -4020,7 +4081,7 @@ msgid "Show processes"
|
||||
msgstr "ක්රියාවලිය පෙන්වන්න"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "දත්තගබඩා නොමැත"
|
||||
|
||||
@ -4133,16 +4194,6 @@ msgstr "No user(s) found."
|
||||
msgid "Number of tables"
|
||||
msgstr "ක්ෂේත්ර ගණන"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s match(es) inside table <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Total:</b> <i>%s</i> match(es)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4293,7 +4344,7 @@ msgid "Polish"
|
||||
msgstr "පෝලන්ත"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "තෝරනවා"
|
||||
@ -4943,47 +4994,6 @@ msgstr "සේව් කරන්න"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "The scale factor is too small to fit the schema on one page"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "දත්තගබඩාවේ සොයන්න"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "වගු(ව) තුල:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "අවම වශයෙන් එක් වචනයක්වත්"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "සියලු වචන"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "හරියටම වාක්යාංශය"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "as regular expression"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" %s සඳහා සෙවීම් ප්රතිළුල:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "සොයන්න:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5810,7 +5820,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5826,10 +5836,6 @@ msgstr "අවකාශ භාවිතය"
|
||||
msgid "Spanish"
|
||||
msgstr "ස්පාඤ්ඤ"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Words are separated by a space character (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "අපනයන වර්ගය"
|
||||
@ -5959,7 +5965,7 @@ msgstr "ස්වීඩීනියානු"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Switch to copied table"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6536,7 +6542,7 @@ msgstr "භාවිත නාමය හිස්ව පවතී!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "භාවිත නාමය"
|
||||
|
||||
@ -6770,17 +6776,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "max. concurrent connections"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
194
po/sk.po
194
po/sk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: slovak <sk@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Hľadať"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Hľadať"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Vytlačiť"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Zobraziť dump (schému) databázy"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Označiť všetko"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Odznačiť všetko"
|
||||
|
||||
@ -504,14 +506,86 @@ msgstr " SQL dopyt v databáze <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Odošli dopyt"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Prístup zamietnutý"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "najmenej jedno zo slov"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "všetky slová"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "presný výraz"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "ako regulárny výraz"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Prehľadať výsledky na \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s výskyt(ov)v tabuľke <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Prechádzať"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Zmazať"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Celkovo:</b> <i>%s</i> výskyt(ov)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Hľadať v databáze"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
"Slovo(á) alebo hodnotu(y), ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Nájdi:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Slová sú rozdelené medzerou (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "V tabuľke(ách):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -676,8 +750,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Databáza"
|
||||
|
||||
@ -1066,13 +1140,6 @@ msgstr "za sekundu"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Nepodarilo sa pripojiť: chybné nastavenia."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Prístup zamietnutý"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1520,7 +1587,7 @@ msgstr "Žiadne heslo"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
@ -1818,14 +1885,6 @@ msgstr "Spustiť obľúbený dopyt"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Riadok bol zmazaný"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Zmazať"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2191,7 +2250,7 @@ msgstr "Štruktúra tabuľky pre tabuľku"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Hostiteľ"
|
||||
|
||||
@ -3054,6 +3113,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "Úspešne zrušených databáz: %s."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Zdrojová databáza"
|
||||
|
||||
@ -3080,6 +3140,7 @@ msgstr ""
|
||||
"sieťovej prevádzky medzi databázou a web serverom."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Cieľová databáza"
|
||||
|
||||
@ -3798,7 +3859,8 @@ msgstr "Vyrovnávacia pamäť kľúčov"
|
||||
msgid "Korean"
|
||||
msgstr "Kórejčina"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Neznámy jazyk: %1$s."
|
||||
@ -4021,7 +4083,7 @@ msgid "Show processes"
|
||||
msgstr "Zobraziť procesy"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Žiadne databázy"
|
||||
|
||||
@ -4131,16 +4193,6 @@ msgstr "Nebol nájdený žiadny používateľ."
|
||||
msgid "Number of tables"
|
||||
msgstr "Počet tabuliek"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s výskyt(ov)v tabuľke <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Celkovo:</b> <i>%s</i> výskyt(ov)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4290,7 +4342,7 @@ msgid "Polish"
|
||||
msgstr "Poľština"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -4949,48 +5001,6 @@ msgstr "Uložiť"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Mierka je príliš mala na roztiahnutie schémy na stránku"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Hľadať v databáze"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "V tabuľke(ách):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
"Slovo(á) alebo hodnotu(y), ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "najmenej jedno zo slov"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "všetky slová"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "presný výraz"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "ako regulárny výraz"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Prehľadať výsledky na \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Nájdi:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5826,7 +5836,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Socket"
|
||||
|
||||
@ -5842,10 +5852,6 @@ msgstr "Zabrané miesto"
|
||||
msgid "Spanish"
|
||||
msgstr "Španielsky"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Slová sú rozdelené medzerou (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Typ vytvorených dopytov"
|
||||
@ -5973,7 +5979,7 @@ msgstr "Švédsky"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Prepnúť na skopírovanú tabuľku"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6547,7 +6553,7 @@ msgstr "Meno používateľa je prázdne!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Meno používateľa"
|
||||
|
||||
@ -6799,17 +6805,17 @@ msgstr ""
|
||||
"informácií o stave replikácie na tomto serveri navštívte prosím <a href="
|
||||
"\"#replication\">sekciu replikácie</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "max. súčasných pripojení"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
221
po/sl.po
221
po/sl.po
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-05-06 23:21+0200\n"
|
||||
"Last-Translator: <dbc334@gmail.com>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3);\n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
#: browse_foreigners.php:38 browse_foreigners.php:59
|
||||
@ -46,7 +46,7 @@ msgstr "Iskanje"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Iskanje"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Natisni"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Preglej povzetek stanja podatkovne baze"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Izberi vse"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Prekliči izbor vsega"
|
||||
|
||||
@ -273,7 +275,6 @@ msgid "Status"
|
||||
msgstr "Stanje"
|
||||
|
||||
#: db_operations.php:544
|
||||
#| msgid "Enabled"
|
||||
msgctxt "BLOB repository"
|
||||
msgid "Enabled"
|
||||
msgstr "Omogočeno"
|
||||
@ -287,13 +288,11 @@ msgid "Damaged"
|
||||
msgstr "Poškodovano"
|
||||
|
||||
#: db_operations.php:562
|
||||
#| msgid "Repair"
|
||||
msgctxt "BLOB repository"
|
||||
msgid "Repair"
|
||||
msgstr "Popravi"
|
||||
|
||||
#: db_operations.php:570
|
||||
#| msgid "Disabled"
|
||||
msgctxt "BLOB repository"
|
||||
msgid "Disabled"
|
||||
msgstr "Onemogočeno"
|
||||
@ -499,14 +498,85 @@ msgstr "Poizvedba SQL na zbirki podatkov <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Izvedi poizvedbo"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Dostop zavrnjen"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "katerokoli besedo"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "vse besede"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "točno določeno frazo"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kot običajni izraz (regular expression)"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati iskanja \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s zadetek(ov) v tabeli <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Prebrskaj"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Skupaj:</b> <i>%s</i> zadetek(ov)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Išči v podatkovni zbirki"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Iskane besede ali vrednosti (nadomestni znak: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Najdi:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Besede so ločene s presledkom (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "V tabelah:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "V polju:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -671,8 +741,8 @@ msgstr "Sledene tabele"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Podatkovna zbirka"
|
||||
|
||||
@ -757,13 +827,11 @@ msgstr "Prekliči"
|
||||
|
||||
#. l10n: Display text for calendar close link
|
||||
#: js/messages.php:74
|
||||
#| msgid "Donate"
|
||||
msgid "Done"
|
||||
msgstr "Končano"
|
||||
|
||||
#. l10n: Display text for previous month link in calendar
|
||||
#: js/messages.php:76
|
||||
#| msgid "Previous"
|
||||
msgid "Prev"
|
||||
msgstr "Prejšnji"
|
||||
|
||||
@ -777,12 +845,10 @@ msgstr "Naslednji"
|
||||
|
||||
#. l10n: Display text for current month link in calendar
|
||||
#: js/messages.php:80
|
||||
#| msgid "Total"
|
||||
msgid "Today"
|
||||
msgstr "Danes"
|
||||
|
||||
#: js/messages.php:83
|
||||
#| msgid "Binary"
|
||||
msgid "January"
|
||||
msgstr "januar"
|
||||
|
||||
@ -791,12 +857,10 @@ msgid "February"
|
||||
msgstr "februar"
|
||||
|
||||
#: js/messages.php:85
|
||||
#| msgid "Mar"
|
||||
msgid "March"
|
||||
msgstr "marec"
|
||||
|
||||
#: js/messages.php:86
|
||||
#| msgid "Apr"
|
||||
msgid "April"
|
||||
msgstr "april"
|
||||
|
||||
@ -805,17 +869,14 @@ msgid "May"
|
||||
msgstr "maj"
|
||||
|
||||
#: js/messages.php:88
|
||||
#| msgid "Jun"
|
||||
msgid "June"
|
||||
msgstr "junij"
|
||||
|
||||
#: js/messages.php:89
|
||||
#| msgid "Jul"
|
||||
msgid "July"
|
||||
msgstr "julij"
|
||||
|
||||
#: js/messages.php:90
|
||||
#| msgid "Aug"
|
||||
msgid "August"
|
||||
msgstr "avgust"
|
||||
|
||||
@ -824,7 +885,6 @@ msgid "September"
|
||||
msgstr "september"
|
||||
|
||||
#: js/messages.php:92
|
||||
#| msgid "Oct"
|
||||
msgid "October"
|
||||
msgstr "oktober"
|
||||
|
||||
@ -858,7 +918,6 @@ msgstr "apr"
|
||||
|
||||
#. l10n: Short month name
|
||||
#: js/messages.php:106
|
||||
#| msgid "May"
|
||||
msgctxt "Short month name"
|
||||
msgid "May"
|
||||
msgstr "maj"
|
||||
@ -899,17 +958,14 @@ msgid "Dec"
|
||||
msgstr "dec"
|
||||
|
||||
#: js/messages.php:123
|
||||
#| msgid "Sun"
|
||||
msgid "Sunday"
|
||||
msgstr "nedelja"
|
||||
|
||||
#: js/messages.php:124
|
||||
#| msgid "Mon"
|
||||
msgid "Monday"
|
||||
msgstr "ponedeljek"
|
||||
|
||||
#: js/messages.php:125
|
||||
#| msgid "Tue"
|
||||
msgid "Tuesday"
|
||||
msgstr "torek"
|
||||
|
||||
@ -922,7 +978,6 @@ msgid "Thursday"
|
||||
msgstr "četrtek"
|
||||
|
||||
#: js/messages.php:128
|
||||
#| msgid "Fri"
|
||||
msgid "Friday"
|
||||
msgstr "petek"
|
||||
|
||||
@ -1021,13 +1076,6 @@ msgstr "Sekunde"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Povezava ni mogoča: neveljavne nastavitve."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Dostop zavrnjen"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1186,7 +1234,6 @@ msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:594
|
||||
#, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s"
|
||||
|
||||
@ -1480,7 +1527,7 @@ msgstr "Brez gesla"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Geslo"
|
||||
|
||||
@ -1495,7 +1542,6 @@ msgid "Password Hashing"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_change_password.lib.php:66
|
||||
#| msgid "MySQL 4.0 compatible"
|
||||
msgid "MySQL 4.0 compatible"
|
||||
msgstr "Združljivo z MySQL 4.0"
|
||||
|
||||
@ -1587,17 +1633,14 @@ msgid "None"
|
||||
msgstr "Brez"
|
||||
|
||||
#: libraries/display_export.lib.php:247
|
||||
#| msgid "\"zipped\""
|
||||
msgid "zipped"
|
||||
msgstr "zipano"
|
||||
|
||||
#: libraries/display_export.lib.php:253
|
||||
#| msgid "\"gzipped\""
|
||||
msgid "gzipped"
|
||||
msgstr "gzipano"
|
||||
|
||||
#: libraries/display_export.lib.php:259
|
||||
#| msgid "\"bzipped\""
|
||||
msgid "bzipped"
|
||||
msgstr "bzipano"
|
||||
|
||||
@ -1773,14 +1816,6 @@ msgstr "Izvedi izbrano poizvedbo"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Vrstica je izbrisana"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2131,7 +2166,7 @@ msgstr "Struktura tabele"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Gostitelj"
|
||||
|
||||
@ -2986,6 +3021,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s podatkovne zbirke so uspešno zavržene."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Izvorna zbirka podatkov"
|
||||
|
||||
@ -3012,6 +3048,7 @@ msgstr ""
|
||||
"povečan promet med spletnim in podatkovnim strežnikom."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Ciljna zbirka podatkov"
|
||||
|
||||
@ -3724,7 +3761,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Korejsko"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Neznani jezik: %1$s."
|
||||
@ -3941,7 +3979,7 @@ msgid "Show processes"
|
||||
msgstr "Pokaži procese"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Brez zbirk podatkov"
|
||||
|
||||
@ -4050,16 +4088,6 @@ msgstr "Ni mogoče najti uporabnika(ov)."
|
||||
msgid "Number of tables"
|
||||
msgstr "Število tabel"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s zadetek(ov) v tabeli <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Skupaj:</b> <i>%s</i> zadetek(ov)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4211,7 +4239,7 @@ msgid "Polish"
|
||||
msgstr "Poljsko"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Vrata"
|
||||
|
||||
@ -4855,47 +4883,6 @@ msgstr "Shrani"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Faktor povečava je premajhen, da bi spravili shemo na eno stran"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Išči v podatkovni zbirki"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "V polju:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "V tabelah:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Iskane besede ali vrednosti (nadomestni znak: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "katerokoli besedo"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "vse besede"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "točno določeno frazo"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kot običajni izraz (regular expression)"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati iskanja \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Najdi:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5615,7 +5602,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5631,10 +5618,6 @@ msgstr "Poraba prostora"
|
||||
msgid "Spanish"
|
||||
msgstr "Špansko"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Besede so ločene s presledkom (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Vrsta izvoza"
|
||||
@ -5759,7 +5742,7 @@ msgstr "Švedsko"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Preklopi na kopirano tabelo"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6324,7 +6307,7 @@ msgstr "Uporabniško ime je prazno!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Uporabniško ime"
|
||||
|
||||
@ -6558,15 +6541,15 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr "Vnesite ročno"
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr "Trenutna povezava"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr "Konfiguracija: %s"
|
||||
|
||||
192
po/sq.po
192
po/sq.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:08+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: albanian <sq@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Kërko"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Kërko"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Printo"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Shfaq dump (skema) e databazës"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Zgjidh gjithçka"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Ç'zgjidh gjithçka"
|
||||
|
||||
@ -505,14 +507,85 @@ msgstr "SQL-query tek databaza <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Dërgo Query"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Hyrja nuk u pranua"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "të paktën njërën nga fjalët"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "të gjitha fjalët"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "fraza precize"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "si shprehje e rregullt"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Kërko rezultatet për \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s korrispondon(jnë) tek tabela <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Shfaq"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Fshi"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Gjithsej:</b> <i>%s</i> korrispondues(ë)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Kërko në databazë"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Gjej:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Fjalët janë të ndara me një hapsirë (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tek tabela(at):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -678,8 +751,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Databazat"
|
||||
|
||||
@ -1066,13 +1139,6 @@ msgstr "në sekondë"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "E pamundur lidhja: rregullime të pavlefshme."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Hyrja nuk u pranua"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1516,7 +1582,7 @@ msgstr "Asnjë fjalëkalim"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Fjalëkalimi"
|
||||
|
||||
@ -1804,14 +1870,6 @@ msgstr "Zbaton query nga libërshënuesi"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "rreshti u fshi"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Fshi"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2161,7 +2219,7 @@ msgstr "Struktura e tabelës"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3027,6 +3085,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databaza u eleminuan korrektësisht."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Kërko në databazë"
|
||||
@ -3054,6 +3113,7 @@ msgstr ""
|
||||
"e trafikut midis server-it web dhe MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Kërko në databazë"
|
||||
@ -3771,7 +3831,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Koreane"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3988,7 +4049,7 @@ msgid "Show processes"
|
||||
msgstr "Shfaq proceset në ekzekutim"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Asnjë databazë"
|
||||
|
||||
@ -4094,16 +4155,6 @@ msgstr "Nuk u gjet asnjë përdorues."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s korrispondon(jnë) tek tabela <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Gjithsej:</b> <i>%s</i> korrispondues(ë)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4255,7 +4306,7 @@ msgid "Polish"
|
||||
msgstr "Polonisht"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "rreshtimi"
|
||||
@ -4914,47 +4965,6 @@ msgstr "Ruaj"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Faktori i shkallës është shumë i vogël për të plotësuar skemën në faqe"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Kërko në databazë"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tek tabela(at):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "të paktën njërën nga fjalët"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "të gjitha fjalët"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "fraza precize"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "si shprehje e rregullt"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Kërko rezultatet për \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Gjej:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5677,7 +5687,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5693,10 +5703,6 @@ msgstr "Hapësira e përdorur"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanjisht"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Fjalët janë të ndara me një hapsirë (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Lloji i Eksportit"
|
||||
@ -5826,7 +5832,7 @@ msgstr "Suedisht"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Kalo tek tabela e kopjuar"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6393,7 +6399,7 @@ msgstr "Emri i përdoruesit është bosh!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Emri i përdoruesit"
|
||||
|
||||
@ -6624,17 +6630,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Lidhje"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/sr.po
192
po/sr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: serbian_cyrillic <sr@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Претраживање"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "Претраживање"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr "Штампај"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Прикажи садржај (схему) базе"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Изабери све"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "ништа"
|
||||
|
||||
@ -504,14 +506,85 @@ msgstr "SQL упит на бази <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Изврши SQL упит"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Приступ одбијен"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "бар једну од речи"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "све речи"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "тачан израз"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "као регуларни израз"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Резултати претраге за \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s погодака унутар табеле <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Преглед"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Обриши"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Укупно:</b> <i>%s</i> погодака"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Претраживање базе"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Речи или вредности које се траже (џокер: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Тражи:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Речи се одвајају размаком (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Унутар табела:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr "Провери табелу"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "База података"
|
||||
|
||||
@ -1066,13 +1139,6 @@ msgstr "у секунди"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Не могу да се повежем: неисправна подешавања."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Приступ одбијен"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1524,7 +1590,7 @@ msgstr "Нема лозинке"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Лозинка"
|
||||
|
||||
@ -1817,14 +1883,6 @@ msgstr "Изврши упамћен упит"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Ред је обрисан"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Обриши"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2192,7 +2250,7 @@ msgstr "Структура табеле"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Домаћин"
|
||||
|
||||
@ -3054,6 +3112,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s база је успешно одбачено."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Претраживање базе"
|
||||
@ -3081,6 +3140,7 @@ msgstr ""
|
||||
"веб и MySQL сервера."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Претраживање базе"
|
||||
@ -3802,7 +3862,8 @@ msgstr "Кеш кључева"
|
||||
msgid "Korean"
|
||||
msgstr "Корејски"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Непознат језик: %1$s."
|
||||
@ -4024,7 +4085,7 @@ msgid "Show processes"
|
||||
msgstr "Прикажи листу процеса"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "База не постоји"
|
||||
|
||||
@ -4135,16 +4196,6 @@ msgstr "Корисник није нађен."
|
||||
msgid "Number of tables"
|
||||
msgstr "Број табела"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s погодака унутар табеле <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Укупно:</b> <i>%s</i> погодака"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4295,7 +4346,7 @@ msgid "Polish"
|
||||
msgstr "Пољски"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Сортирање"
|
||||
@ -4943,47 +4994,6 @@ msgstr "Сачувај"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Фактор умањења је премали да би схема стала на једну страну"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Претраживање базе"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Унутар табела:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Речи или вредности које се траже (џокер: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "бар једну од речи"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "све речи"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "тачан израз"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "као регуларни израз"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Резултати претраге за \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Тражи:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)."
|
||||
@ -5811,7 +5821,7 @@ msgstr "Све мало/велико"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Држи се мреже"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5827,10 +5837,6 @@ msgstr "Заузеће"
|
||||
msgid "Spanish"
|
||||
msgstr "Шпански"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Речи се одвајају размаком (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Тип извоза"
|
||||
@ -5960,7 +5966,7 @@ msgstr "Шведски"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Пређи на копирану табелу"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6540,7 +6546,7 @@ msgstr "Име корисника није унето!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Име корисника"
|
||||
|
||||
@ -6776,17 +6782,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "макс. истовремених веза"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/sr@latin.po
192
po/sr@latin.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: serbian_latin <sr@latin@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Pretraživanje"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "Pretraživanje"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr "Štampaj"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Prikaži sadržaj (shemu) baze"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Izaberi sve"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "ništa"
|
||||
|
||||
@ -504,14 +506,85 @@ msgstr "SQL upit na bazi <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Izvrši SQL upit"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Pristup odbijen"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "bar jednu od reči"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "sve reči"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tačan izraz"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kao regularni izraz"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s pogodaka unutar tabele <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Pregled"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Obriši"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pretraživanje baze"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Traži:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Reči se odvajaju razmakom (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Unutar tabela:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr "Proveri tabelu"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Baza podataka"
|
||||
|
||||
@ -1066,13 +1139,6 @@ msgstr "u sekundi"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Ne mogu da se povežem: neispravna podešavanja."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Pristup odbijen"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1524,7 +1590,7 @@ msgstr "Nema lozinke"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Lozinka"
|
||||
|
||||
@ -1817,14 +1883,6 @@ msgstr "Izvrši upamćen upit"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Red je obrisan"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Obriši"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2192,7 +2250,7 @@ msgstr "Struktura tabele"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Domaćin"
|
||||
|
||||
@ -3054,6 +3112,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s baza je uspešno odbačeno."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Pretraživanje baze"
|
||||
@ -3081,6 +3140,7 @@ msgstr ""
|
||||
"veb i MySQL servera."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Pretraživanje baze"
|
||||
@ -3802,7 +3862,8 @@ msgstr "Keš ključeva"
|
||||
msgid "Korean"
|
||||
msgstr "Korejski"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Nepoznat jezik: %1$s."
|
||||
@ -4025,7 +4086,7 @@ msgid "Show processes"
|
||||
msgstr "Prikaži listu procesa"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
@ -4136,16 +4197,6 @@ msgstr "Korisnik nije nađen."
|
||||
msgid "Number of tables"
|
||||
msgstr "Broj tabela"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s pogodaka unutar tabele <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4296,7 +4347,7 @@ msgid "Polish"
|
||||
msgstr "Poljski"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sortiranje"
|
||||
@ -4945,47 +4996,6 @@ msgstr "Sačuvaj"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Faktor umanjenja je premali da bi shema stala na jednu stranu"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Pretraživanje baze"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Unutar tabela:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "bar jednu od reči"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "sve reči"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tačan izraz"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kao regularni izraz"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Traži:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)."
|
||||
@ -5815,7 +5825,7 @@ msgstr "Sve malo/veliko"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Drži se mreže"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5831,10 +5841,6 @@ msgstr "Zauzeće"
|
||||
msgid "Spanish"
|
||||
msgstr "Španski"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Reči se odvajaju razmakom (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Tip izvoza"
|
||||
@ -5964,7 +5970,7 @@ msgstr "Švedski"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Pređi na kopiranu tabelu"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6545,7 +6551,7 @@ msgstr "Ime korisnika nije uneto!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Ime korisnika"
|
||||
|
||||
@ -6781,17 +6787,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "maks. istovremenih veza"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/sv.po
192
po/sv.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: swedish <sv@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Sök"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Sök"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Skriv ut"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Visa SQL-satser för databasen"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Markera alla"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Avmarkera alla"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "SQL-fråga i databas <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Kör fråga"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Åtkomst nekad"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "minst ett av orden"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alla ord"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "den exakta frasen"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "som reguljärt uttryck"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Resultat av sökning efter \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s träff(ar) i tabell <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Visa"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Radera"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totalt:</b> <i>%s</i> träff(ar)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Sök i databas"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Hitta:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Ord separeras med mellanslag (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "I tabell(er):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "I fält:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -673,8 +746,8 @@ msgstr "Hoppa över låsta tabeller"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Databas"
|
||||
|
||||
@ -1065,13 +1138,6 @@ msgstr "per sekund"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Kan ej skapa förbindelse: ogiltiga inställningar."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Åtkomst nekad"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1524,7 +1590,7 @@ msgstr "Inget lösenord"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
@ -1822,14 +1888,6 @@ msgstr "Utför bokmärkt fråga"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Raden har raderats"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Radera"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2219,7 +2277,7 @@ msgstr "Struktur för tabell"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Värd"
|
||||
|
||||
@ -3084,6 +3142,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s databaser har tagits bort."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Sök i databas"
|
||||
@ -3111,6 +3170,7 @@ msgstr ""
|
||||
"MySQL-servern."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Sök i databas"
|
||||
@ -3837,7 +3897,8 @@ msgstr "Nyckelcache"
|
||||
msgid "Korean"
|
||||
msgstr "Koreansk"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Okänt språk: %1$s."
|
||||
@ -4060,7 +4121,7 @@ msgid "Show processes"
|
||||
msgstr "Visa processer"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Inga databaser"
|
||||
|
||||
@ -4172,16 +4233,6 @@ msgstr "Hittade ingen användare."
|
||||
msgid "Number of tables"
|
||||
msgstr "Antal tabeller"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s träff(ar) i tabell <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Totalt:</b> <i>%s</i> träff(ar)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4330,7 +4381,7 @@ msgid "Polish"
|
||||
msgstr "Polska"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Sortering"
|
||||
@ -4987,47 +5038,6 @@ msgstr "Spara"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Skalfaktorn är för liten för att schemat ska få plats på en sida"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Sök i databas"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "I fält:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "I tabell(er):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "minst ett av orden"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "alla ord"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "den exakta frasen"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "som reguljärt uttryck"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Resultat av sökning efter \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Hitta:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)."
|
||||
@ -5861,7 +5871,7 @@ msgstr "Små/stora alla"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Fäst vid rutnät"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5877,10 +5887,6 @@ msgstr "Utrymmesanvändning"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanska"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Ord separeras med mellanslag (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Export-typ"
|
||||
@ -6011,7 +6017,7 @@ msgstr "Svensk"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Byt till kopierad tabell"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6594,7 +6600,7 @@ msgstr "Användarnamnet är tomt!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Användarnamn"
|
||||
|
||||
@ -6840,17 +6846,17 @@ msgstr ""
|
||||
"information om replikeringsstatus på servern, gå till <a href=\"#replication"
|
||||
"\">replikeringssektionen</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Osäker anslutning"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/ta.po
192
po/ta.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
|
||||
"Last-Translator: Sutharshan <sutharshan02@gmail.com>\n"
|
||||
"Language-Team: Tamil <ta@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr ""
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr ""
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr ""
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr ""
|
||||
|
||||
@ -496,14 +498,85 @@ msgstr ""
|
||||
msgid "Submit Query"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -668,8 +741,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
@ -1041,13 +1114,6 @@ msgstr ""
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1477,7 +1543,7 @@ msgstr ""
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1756,14 +1822,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2110,7 +2168,7 @@ msgstr ""
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
@ -2952,6 +3010,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -2976,6 +3035,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3671,7 +3731,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3878,7 +3939,7 @@ msgid "Show processes"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr ""
|
||||
|
||||
@ -3983,16 +4044,6 @@ msgstr ""
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4140,7 +4191,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4768,47 +4819,6 @@ msgstr ""
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5520,7 +5530,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5536,10 +5546,6 @@ msgstr ""
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5653,7 +5659,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6187,7 +6193,7 @@ msgstr ""
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr ""
|
||||
|
||||
@ -6400,15 +6406,15 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
194
po/te.po
194
po/te.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-02 12:04+0200\n"
|
||||
"Last-Translator: <veeven@gmail.com>\n"
|
||||
"Language-Team: Telugu <te@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "శోధించు"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -65,7 +65,7 @@ msgstr "శోధించు"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -198,11 +198,13 @@ msgstr ""
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr ""
|
||||
|
||||
@ -505,14 +507,86 @@ msgstr ""
|
||||
msgid "Submit Query"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "అన్ని పదాలూ"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "తొలగించు"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>మొత్తం:</b> <i>%s</i> పోలిక(లు)"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "వెతుకు"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -681,8 +755,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "డేటాబేస్"
|
||||
|
||||
@ -1067,13 +1141,6 @@ msgstr "క్షణానికి"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1503,7 +1570,7 @@ msgstr "సంకేతపదం లేదు"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "సంకేతపదం"
|
||||
|
||||
@ -1784,14 +1851,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "తొలగించు"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2141,7 +2200,7 @@ msgstr ""
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
@ -3000,6 +3059,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -3024,6 +3084,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3721,7 +3782,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "కొరియన్"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3929,7 +3991,7 @@ msgid "Show processes"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr ""
|
||||
|
||||
@ -4034,16 +4096,6 @@ msgstr ""
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>మొత్తం:</b> <i>%s</i> పోలిక(లు)"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4193,7 +4245,7 @@ msgid "Polish"
|
||||
msgstr "పోలిష్"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4821,48 +4873,6 @@ msgstr "భద్రపరచు"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "అన్ని పదాలూ"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "వెతుకు"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5583,7 +5593,7 @@ msgstr "చిన్నవి / పెద్దవి అన్నియు"
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5599,10 +5609,6 @@ msgstr ""
|
||||
msgid "Spanish"
|
||||
msgstr "స్పానిష్"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "ఎగుమతి రకం"
|
||||
@ -5719,7 +5725,7 @@ msgstr "స్వీడీష్"
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6258,7 +6264,7 @@ msgstr "వాడుకరి పేరులో ఏమీ లేదు"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "వాడుకరి పేరు"
|
||||
|
||||
@ -6481,17 +6487,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "అనుసంధానాలు"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Server configuration"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/th.po
192
po/th.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: thai <th@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "ค้นหา"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "ค้นหา"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -192,11 +192,13 @@ msgstr "พิมพ์"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "ดูโครงสร้างของฐานข้อมูล"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "เลือกทั้งหมด"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "ไม่เลือกเลย"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "คำค้นบนฐานข้อมูล <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "ประมวลผลคำค้น"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "ไม่อนุญาตให้ใช้งาน"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "อย่างน้อยหนึ่งคำ"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "ทุกคำ"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "เหมือนทั้งวลี"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "รูปแบบคำพ้อง (regular expression)"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "ผลการค้นหา \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "พบ %s ผลลัพธ์ที่ตรงในตาราง <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "เปิดดู"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "ลบ"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>รวม:</b> <i>%s</i> ผลลัพธ์ที่ตรง"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "ค้นหาในฐานข้อมูล"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "ค้น:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "ในตาราง:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -673,8 +746,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "ฐานข้อมูล"
|
||||
|
||||
@ -1061,13 +1134,6 @@ msgstr "ต่อวินาที"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "ไม่อนุญาตให้ใช้งาน"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1504,7 +1570,7 @@ msgstr "ไม่มีรหัสผ่าน"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "รหัสผ่าน"
|
||||
|
||||
@ -1793,14 +1859,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr "ลบเรียบร้อยแล้ว"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "ลบ"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2150,7 +2208,7 @@ msgstr "โครงสร้างตาราง"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "โฮสต์"
|
||||
|
||||
@ -3014,6 +3072,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s ฐานข้อมูลได้ถูกทิ้งไปเรียบร้อยแล้ว."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "ค้นหาในฐานข้อมูล"
|
||||
@ -3041,6 +3100,7 @@ msgstr ""
|
||||
"ระหว่างเว็บเซิร์ฟเวอร์ และเซิร์ฟเวอร์ MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "ค้นหาในฐานข้อมูล"
|
||||
@ -3747,7 +3807,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "เกาหลี"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3958,7 +4019,7 @@ msgid "Show processes"
|
||||
msgstr "แสดงงานที่ทำอยู่ของ MySQL"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "ไม่มีฐานข้อมูล"
|
||||
|
||||
@ -4064,16 +4125,6 @@ msgstr "ไม่พบผู้ใช้ใดๆ."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "พบ %s ผลลัพธ์ที่ตรงในตาราง <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>รวม:</b> <i>%s</i> ผลลัพธ์ที่ตรง"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4226,7 +4277,7 @@ msgid "Polish"
|
||||
msgstr "โปแลนด์"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "เรียง"
|
||||
@ -4867,47 +4918,6 @@ msgstr "บันทึก"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "อัตราย่อน้อยเกินไป ที่จะจัดให้สกีมาอยู่ในหน้าเดียว"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "ค้นหาในฐานข้อมูล"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "ในตาราง:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "อย่างน้อยหนึ่งคำ"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "ทุกคำ"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "เหมือนทั้งวลี"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "รูปแบบคำพ้อง (regular expression)"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "ผลการค้นหา \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "ค้น:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5628,7 +5638,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5644,10 +5654,6 @@ msgstr "เนื้อที่ที่ใช้"
|
||||
msgid "Spanish"
|
||||
msgstr "สเปน"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5773,7 +5779,7 @@ msgstr "สวีเดน"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6315,7 +6321,7 @@ msgstr "ชื่อผู้ใช้ยังว่างอยู่!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "ชื่อผู้ใช้"
|
||||
|
||||
@ -6545,17 +6551,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "การเชื่อมต่อ"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/tr.po
192
po/tr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
|
||||
"Last-Translator: <hitowerdigit@hotmail.com>\n"
|
||||
"Language-Team: turkish <tr@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Ara"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Ara"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Yazdır"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Veritabanının dökümünü (şemasını) göster"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Tümünü Seç"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Tüm Seçimi Kaldır"
|
||||
|
||||
@ -502,14 +504,85 @@ msgstr "<b>%s</b> veritabanındaki SQL sorgusu:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Sorguyu Gönder"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Erişim engellendi"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "kelimelerin en azından biri"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "tüm kelimeler"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "kesin ifade"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kurallı ifade olarak"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" %s için arama sonuçları:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s eşleşme, <i>%s</i> tablosu içinde"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Gözat"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Toplam:</b> <i>%s</i> eşleşme"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Veritabanında ara"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Aranacak kelime(ler) veya değer(ler) ( joker: \"%\" ):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Bul:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Kelimeler boşlukla ayrılır (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tablo içindeki(ler):"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "İç alan:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -676,8 +749,8 @@ msgstr "İzlenen tablolar"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Veritabanı"
|
||||
|
||||
@ -1062,13 +1135,6 @@ msgstr "saniye başına"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Bağlanamıyor: geçersiz ayarlar."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Erişim engellendi"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1528,7 +1594,7 @@ msgstr "Parola yok"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Parola"
|
||||
|
||||
@ -1827,14 +1893,6 @@ msgstr "İşaretlenmiş sorguyu çalıştır"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Satır silindi"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2228,7 +2286,7 @@ msgstr "Tablo için tablo yapısı:"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Anamakine"
|
||||
|
||||
@ -3086,6 +3144,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s veritabanları başarılı olarak kaldırıldı."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Kaynak veritabanı"
|
||||
|
||||
@ -3112,6 +3171,7 @@ msgstr ""
|
||||
"MySQL sunucusu arasında yüksek trafiğe yol açabilir."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Hedef veritabanı"
|
||||
|
||||
@ -3839,7 +3899,8 @@ msgstr "Anahtar önbelleği"
|
||||
msgid "Korean"
|
||||
msgstr "Korece"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Bilinmeyen dil: %1$s."
|
||||
@ -4063,7 +4124,7 @@ msgid "Show processes"
|
||||
msgstr "İşlemleri göster"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Veritabanı yok"
|
||||
|
||||
@ -4173,16 +4234,6 @@ msgstr "Kullanıcı(lar) bulunamadı."
|
||||
msgid "Number of tables"
|
||||
msgstr "Tablo sayısı"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s eşleşme, <i>%s</i> tablosu içinde"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Toplam:</b> <i>%s</i> eşleşme"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4334,7 +4385,7 @@ msgid "Polish"
|
||||
msgstr "Polonyaca"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "B.Noktası"
|
||||
|
||||
@ -5003,47 +5054,6 @@ msgstr "Kaydet"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Ölçek, şemayı bir sayfaya sığdırmak için çok küçük"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Veritabanında ara"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "İç alan:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Tablo içindeki(ler):"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Aranacak kelime(ler) veya değer(ler) ( joker: \"%\" ):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "kelimelerin en azından biri"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "tüm kelimeler"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "kesin ifade"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "kurallı ifade olarak"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" %s için arama sonuçları:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Bul:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5882,7 +5892,7 @@ msgstr "Tümü Küçük/Büyük"
|
||||
msgid "Snap to grid"
|
||||
msgstr "Kılavuza ayarla"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Soket"
|
||||
|
||||
@ -5898,10 +5908,6 @@ msgstr "Alan kullanımı"
|
||||
msgid "Spanish"
|
||||
msgstr "İspanyolca"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Kelimeler boşlukla ayrılır (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Dışarı aktarma türü"
|
||||
@ -6031,7 +6037,7 @@ msgstr "İsveççe"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Kopyalanmış tabloya geç"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6621,7 +6627,7 @@ msgstr "Kullanıcı adı boş!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Kullanıcı Adı"
|
||||
|
||||
@ -6871,17 +6877,17 @@ msgstr ""
|
||||
"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen <a "
|
||||
"href=\"#replication\">kopya etme bölümünü</a> ziyaret edin."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Güvensiz bağlantı"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/tt.po
192
po/tt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: tatarish <tt@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Ezläw"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr "Ezläw"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr "Bastır"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Biremlek eçtälegen (tözeleşen) çığaru"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Saylap Beter"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Saylanunı Töşer"
|
||||
|
||||
@ -503,14 +505,85 @@ msgstr "<b>%s</b> biremlegenä SQL-soraw:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Sorawnı Yulla"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "İreşep Bulmadı"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "berärse bulsa"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "barısı da bulsa"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tulı tezmä, tögäl kileş"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "regexp kileş"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" ezläw näticäse %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s kileşü bar, <i>%s</i> atlı tüşämädä"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Küzätü"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Sal"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Tulayım:</b> <i>%s</i> kileşü"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Biremlektä ezläw: "
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Ezläw:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Kiläse tüşämä eçendä:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -677,8 +750,8 @@ msgstr "Tüşämä tikşerü"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Biremlek"
|
||||
|
||||
@ -1066,13 +1139,6 @@ msgstr "sekund sayın"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Totaşa almím: yaraqsız köyläwlär."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "İreşep Bulmadı"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1519,7 +1585,7 @@ msgstr "Sersüzsez"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Sersüz"
|
||||
|
||||
@ -1808,14 +1874,6 @@ msgstr "Tamğalanğan soraw cibärü"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Bu yazma salınğan buldı"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Sal"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2179,7 +2237,7 @@ msgstr "Tüşämä tözeleşe"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
@ -3045,6 +3103,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "\"%s\" biremlegen beterü uñışlı uzdı."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "Biremlektä ezläw: "
|
||||
@ -3072,6 +3131,7 @@ msgstr ""
|
||||
"between the webserver and the MySQL one."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "Biremlektä ezläw: "
|
||||
@ -3789,7 +3849,8 @@ msgstr "Tezeş alxätere"
|
||||
msgid "Korean"
|
||||
msgstr "Koreyçä"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Belgesez tel: %1$s."
|
||||
@ -4010,7 +4071,7 @@ msgid "Show processes"
|
||||
msgstr "Proseslär tezmäse"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Biremleklär yuq"
|
||||
|
||||
@ -4119,16 +4180,6 @@ msgstr "Qullanuçı yuq."
|
||||
msgid "Number of tables"
|
||||
msgstr "Alannar sanı"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s kileşü bar, <i>%s</i> atlı tüşämädä"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Tulayım:</b> <i>%s</i> kileşü"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4279,7 +4330,7 @@ msgid "Polish"
|
||||
msgstr "Polça"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "Tezü"
|
||||
@ -4924,47 +4975,6 @@ msgstr "Saqla"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Bu sxemnı ber bittä urnaştıru öçen, olılıq sanı bik keçe"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Biremlektä ezläw: "
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Kiläse tüşämä eçendä:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "berärse bulsa"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "barısı da bulsa"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "tulı tezmä, tögäl kileş"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "regexp kileş"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>%s</i>\" ezläw näticäse %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Ezläw:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5696,7 +5706,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5712,10 +5722,6 @@ msgstr "Totılğan Alan"
|
||||
msgid "Spanish"
|
||||
msgstr "İspança"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Çığaru ısulı"
|
||||
@ -5843,7 +5849,7 @@ msgstr "İswäcçä"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Kübäytelgän tüşämägä küçäse"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6408,7 +6414,7 @@ msgstr "Atama buş!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "İreşü iseme"
|
||||
|
||||
@ -6644,17 +6650,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "Totaşular"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/uk.po
192
po/uk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: ukrainian <uk@li.org>\n"
|
||||
@ -41,7 +41,7 @@ msgstr "Шукати"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -59,7 +59,7 @@ msgstr "Шукати"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -192,11 +192,13 @@ msgstr "Друк"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Переглянути дамп (схему) БД"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Відмітити все"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Зняти всі відмітки"
|
||||
|
||||
@ -497,14 +499,85 @@ msgstr "SQL-запит до БД <b>%s</b>:"
|
||||
msgid "Submit Query"
|
||||
msgstr "Виконати запит"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Доступ заборонено"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "принаймі одне з слів"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "всі слова"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точну фразу"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "регулярний вираз"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Результати пошуку \"<i>%s</i>\" %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s співпадіння у таблиці <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Переглянути"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Видалити"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Разом:</b> <i>%s</i> співпадіння"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Шукати в базі даних"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Слова чи значення, які потрібно знайти (маска: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Знайти:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Слова розділені пробілом (\" \")."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Всередині таблиць:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -669,8 +742,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "БД"
|
||||
|
||||
@ -1052,13 +1125,6 @@ msgstr "за секунду"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Доступ заборонено"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1502,7 +1568,7 @@ msgstr "Без паролю"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
@ -1787,14 +1853,6 @@ msgstr "Виконати збережений запит"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Рядок видалено"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Видалити"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2141,7 +2199,7 @@ msgstr "Структура таблиці"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
@ -2987,6 +3045,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s баз(а\\и) даних успішно знищено."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -3013,6 +3072,7 @@ msgstr ""
|
||||
"трафік між веб сервером та базою даних MySQL."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3722,7 +3782,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr "Корейське"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3936,7 +3997,7 @@ msgid "Show processes"
|
||||
msgstr "Показати процеси"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "БД відсутні"
|
||||
|
||||
@ -4041,16 +4102,6 @@ msgstr "Не знайдено користувача."
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s співпадіння у таблиці <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Разом:</b> <i>%s</i> співпадіння"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4198,7 +4249,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4840,47 +4891,6 @@ msgstr "Зберегти"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Занадто малий масштаб щоб схема займала цілу сторінку"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Шукати в базі даних"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Всередині таблиць:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Слова чи значення, які потрібно знайти (маска: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "принаймі одне з слів"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "всі слова"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "точну фразу"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "регулярний вираз"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "Результати пошуку \"<i>%s</i>\" %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Знайти:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "Конфігураційний файл потребує секретну фразу (пароль)."
|
||||
@ -5598,7 +5608,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5614,10 +5624,6 @@ msgstr "Простір, що використовується"
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Слова розділені пробілом (\" \")."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5744,7 +5750,7 @@ msgstr "Шведське"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Перейти до скопійованої таблиці"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6301,7 +6307,7 @@ msgstr "Порожнє і'мя користувача!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Ім'я користувача"
|
||||
|
||||
@ -6530,17 +6536,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Connections"
|
||||
msgid "Current connection"
|
||||
msgstr "З'єднань"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/ur.po
192
po/ur.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: Urdu <ur@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr ""
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -64,7 +64,7 @@ msgstr ""
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -197,11 +197,13 @@ msgstr ""
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr ""
|
||||
|
||||
@ -496,14 +498,85 @@ msgstr ""
|
||||
msgid "Submit Query"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -668,8 +741,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
@ -1003,13 +1076,6 @@ msgstr ""
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1434,7 +1500,7 @@ msgstr ""
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1713,14 +1779,6 @@ msgstr ""
|
||||
msgid "The row has been deleted"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2067,7 +2125,7 @@ msgstr ""
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
@ -2909,6 +2967,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr ""
|
||||
|
||||
@ -2933,6 +2992,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr ""
|
||||
|
||||
@ -3628,7 +3688,8 @@ msgstr ""
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr ""
|
||||
@ -3835,7 +3896,7 @@ msgid "Show processes"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr ""
|
||||
|
||||
@ -3940,16 +4001,6 @@ msgstr ""
|
||||
msgid "Number of tables"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4097,7 +4148,7 @@ msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
@ -4725,47 +4776,6 @@ msgstr ""
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5477,7 +5487,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5493,10 +5503,6 @@ msgstr ""
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr ""
|
||||
@ -5610,7 +5616,7 @@ msgstr ""
|
||||
msgid "Switch to copied table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6144,7 +6150,7 @@ msgstr ""
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr ""
|
||||
|
||||
@ -6357,15 +6363,15 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
msgid "Current connection"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
192
po/uz.po
192
po/uz.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: uzbek_cyrillic <uz@li.org>\n"
|
||||
@ -43,7 +43,7 @@ msgstr "Қидириш"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -61,7 +61,7 @@ msgstr "Қидириш"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -194,11 +194,13 @@ msgstr "Чоп этиш"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Барчасини белгилаш"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Белгилашни бекор қилиш"
|
||||
|
||||
@ -499,14 +501,85 @@ msgstr "<b>\"%s\"</b> маълумотлар базасига SQL-сўров: "
|
||||
msgid "Submit Query"
|
||||
msgstr "сўровни бажариш"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Рухсат берилмади"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "сўзлардан бири"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "барча сўзлар"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "аниқ мослик"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "мунтазам ибора"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>\"%s\"</i>\" учун қидирув натижалари \"%s\":"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "<i>\"%s\"</i> жадвалида ўхшашликлар сони \"%s\" та"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Кўриб чиқиш"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Ўчириш"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Жами:</b> <i>\"%s\"</i> ўхшашлик"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Маълумотлар базасида қидириш"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Излаш:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Қуйидаги жадвал(лар)да қидириш:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Қуйидаги майдон(лар)да қидириш: "
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -673,8 +746,8 @@ msgstr "Кузатилган жадваллар"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Маълумотлар базаси"
|
||||
|
||||
@ -1059,13 +1132,6 @@ msgstr "секундига"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Уланиб бўлмади: нотўғри созланган."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Рухсат берилмади"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1530,7 +1596,7 @@ msgstr "Парол йўқ"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Парол"
|
||||
|
||||
@ -1828,14 +1894,6 @@ msgstr "Белгиланган сўровни бажариш"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Ёзув ўчирилди"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "Ўчириш"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2229,7 +2287,7 @@ msgstr "Жадвал тузилиши"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
@ -3101,6 +3159,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "\"%s\" маълумотлар базаси муваффақиятли ўчирилди."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Манба база"
|
||||
|
||||
@ -3127,6 +3186,7 @@ msgstr ""
|
||||
"сабаб бўлиши мумкин."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Нишон база"
|
||||
|
||||
@ -3855,7 +3915,8 @@ msgstr "Индекс кеши"
|
||||
msgid "Korean"
|
||||
msgstr "Корейсча"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Номаълум тил: %1$s."
|
||||
@ -4080,7 +4141,7 @@ msgid "Show processes"
|
||||
msgstr "Жараёнлар рўйхати"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Маълумотлар базаси мавжуд эмас"
|
||||
|
||||
@ -4191,16 +4252,6 @@ msgstr "Биронта ҳам фойдаланувчи топилмади."
|
||||
msgid "Number of tables"
|
||||
msgstr "Жадваллар сони "
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "<i>\"%s\"</i> жадвалида ўхшашликлар сони \"%s\" та"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Жами:</b> <i>\"%s\"</i> ўхшашлик"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4353,7 +4404,7 @@ msgid "Polish"
|
||||
msgstr "Полякча"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Порт"
|
||||
|
||||
@ -5028,47 +5079,6 @@ msgstr "Сақлаш"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Схема битта саҳифага сиғмайди. Масштабни кичрайтириш зарур."
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Маълумотлар базасида қидириш"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Қуйидаги майдон(лар)да қидириш: "
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Қуйидаги жадвал(лар)да қидириш:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "сўзлардан бири"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "барча сўзлар"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "аниқ мослик"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "мунтазам ибора"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>\"%s\"</i>\" учун қидирув натижалари \"%s\":"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Излаш:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5922,7 +5932,7 @@ msgstr "Барча жадваллар кўрсатилишини Тахлаш/Т
|
||||
msgid "Snap to grid"
|
||||
msgstr "Тўрга боғлаб қўйиш"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Сокет"
|
||||
|
||||
@ -5938,10 +5948,6 @@ msgstr "Фойдаланилаётган жой"
|
||||
msgid "Spanish"
|
||||
msgstr "Испанча"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Эскпорт тури"
|
||||
@ -6070,7 +6076,7 @@ msgstr "Шведча"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Нусха олинган жадвалга ўтиш"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6662,7 +6668,7 @@ msgstr "Фойдаланувчи номи белгиланмаган!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Фойдаланувчи номи"
|
||||
|
||||
@ -6912,17 +6918,17 @@ msgstr ""
|
||||
"сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот "
|
||||
"учун, <a href=\"#replication\">репликация бўлими</a>га киринг."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Нохавфсиз уланиш"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
194
po/uz@latin.po
194
po/uz@latin.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
|
||||
@ -44,7 +44,7 @@ msgstr "Qidirish"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -62,7 +62,7 @@ msgstr "Qidirish"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -195,11 +195,13 @@ msgstr "Chop etish"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "Barchasini belgilash"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "Belgilashni bekor qilish"
|
||||
|
||||
@ -500,14 +502,86 @@ msgstr "<b>\"%s\"</b> ma`lumotlar bazasiga SQL-so‘rov: "
|
||||
msgid "Submit Query"
|
||||
msgstr "so‘rovni bajarish"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ruxsat berilmadi"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "so‘zlardan biri"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "barcha so‘zlar"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "aniq moslik"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "muntazam ibora"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>\"%s\"</i>\" uchun qidiruv natijalari \"%s\":"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "<i>\"%s\"</i> jadvalida o‘xshashliklar soni \"%s\" ta"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "Ko‘rib chiqish"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "O‘chirish"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Jami:</b> <i>\"%s\"</i> o‘xshashlik"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Ma`lumotlar bazasida qidirish"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
"Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Izlash:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Quyidagi jadval(lar)da qidirish:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Quyidagi maydon(lar)da qidirish: "
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -674,8 +748,8 @@ msgstr "Kuzatilgan jadvallar"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "Ma`lumotlar bazasi"
|
||||
|
||||
@ -1061,13 +1135,6 @@ msgstr "sekundiga"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "Ruxsat berilmadi"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1534,7 +1601,7 @@ msgstr "Parol yo‘q"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "Parol"
|
||||
|
||||
@ -1835,14 +1902,6 @@ msgstr "Belgilangan so‘rovni bajarish"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "Yozuv o‘chirildi"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "O‘chirish"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2239,7 +2298,7 @@ msgstr "Jadval tuzilishi"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "Xost"
|
||||
|
||||
@ -3114,6 +3173,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "Manba baza"
|
||||
|
||||
@ -3140,6 +3200,7 @@ msgstr ""
|
||||
"traffikka sabab bo‘lishi mumkin."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "Nishon baza"
|
||||
|
||||
@ -3872,7 +3933,8 @@ msgstr "Indeks keshi"
|
||||
msgid "Korean"
|
||||
msgstr "Koreyscha"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "Noma`lum til: %1$s."
|
||||
@ -4098,7 +4160,7 @@ msgid "Show processes"
|
||||
msgstr "Jarayonlar ro‘yxati"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "Ma`lumotlar bazasi mavjud emas"
|
||||
|
||||
@ -4211,16 +4273,6 @@ msgstr "Bironta ham foydalanuvchi topilmadi."
|
||||
msgid "Number of tables"
|
||||
msgstr "Jadvallar soni "
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "<i>\"%s\"</i> jadvalida o‘xshashliklar soni \"%s\" ta"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>Jami:</b> <i>\"%s\"</i> o‘xshashlik"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4376,7 +4428,7 @@ msgid "Polish"
|
||||
msgstr "Polyakcha"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
@ -5059,48 +5111,6 @@ msgstr "Saqlash"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "Sxema bitta sahifaga sig‘maydi. Masshtabni kichraytirish zarur."
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "Ma`lumotlar bazasida qidirish"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "Quyidagi maydon(lar)da qidirish: "
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "Quyidagi jadval(lar)da qidirish:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr ""
|
||||
"Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "so‘zlardan biri"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "barcha so‘zlar"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "aniq moslik"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "muntazam ibora"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "\"<i>\"%s\"</i>\" uchun qidiruv natijalari \"%s\":"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "Izlash:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr ""
|
||||
@ -5961,7 +5971,7 @@ msgstr "Barcha jadvallar ko‘rsatilishini Taxlash/Tiklash"
|
||||
msgid "Snap to grid"
|
||||
msgstr "To‘rga bog‘lab qo‘yish"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "Sokеt"
|
||||
|
||||
@ -5977,10 +5987,6 @@ msgstr "Foydalanilayotgan joy"
|
||||
msgid "Spanish"
|
||||
msgstr "Ispancha"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "Eskport turi"
|
||||
@ -6111,7 +6117,7 @@ msgstr "Shvedcha"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "Nusxa olingan jadvalga o‘tish"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6708,7 +6714,7 @@ msgstr "Foydalanuvchi nomi belgilanmagan!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "Foydalanuvchi nomi"
|
||||
|
||||
@ -6964,17 +6970,17 @@ msgstr ""
|
||||
"uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga "
|
||||
"kiring."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "Noxavfsiz ulanish"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration file"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/zh_CN.po
192
po/zh_CN.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-04-08 13:06+0200\n"
|
||||
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
|
||||
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
|
||||
@ -45,7 +45,7 @@ msgstr "搜索"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -63,7 +63,7 @@ msgstr "搜索"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -196,11 +196,13 @@ msgstr "打印"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "查看数据库的转存(大纲)。"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "全选"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "全不选"
|
||||
|
||||
@ -501,14 +503,85 @@ msgstr "在数据库 <b>%s</b> 执行 SQL 语句:"
|
||||
msgid "Submit Query"
|
||||
msgstr "提交查询"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "拒绝访问"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "至少一个词"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "所有词"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "精确短语"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "使用正则表达式"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "“<i>%s</i>”的搜索结果 %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s 个匹配 - 于表 <i>%s</i> 中"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "浏览"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>总计:</b> <i>%s</i> 个匹配"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "在数据库中搜索"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "要查找的文字或数值 (通配符:“%”):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "查找:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "每个单词用空格 (“ ”) 分隔。"
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "于以下表:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "包含字段:"
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -673,8 +746,8 @@ msgstr "已追踪的表"
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "数据库"
|
||||
|
||||
@ -1058,13 +1131,6 @@ msgstr "每秒"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "无法连接:无效的设置。"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "拒绝访问"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1505,7 +1571,7 @@ msgstr "无密码"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
@ -1796,14 +1862,6 @@ msgstr "执行书签中的查询"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "已删除该行"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2169,7 +2227,7 @@ msgstr "表的结构"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "主机"
|
||||
|
||||
@ -3013,6 +3071,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "已成功删除 %s 个数据库。"
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
msgid "Source database"
|
||||
msgstr "源数据库"
|
||||
|
||||
@ -3038,6 +3097,7 @@ msgstr ""
|
||||
"注意:在此启用数据库统计可能导致网站服务器和 MySQL 服务器之间的流量骤增。"
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
msgid "Target database"
|
||||
msgstr "目标数据库"
|
||||
|
||||
@ -3745,7 +3805,8 @@ msgstr "键缓存"
|
||||
msgid "Korean"
|
||||
msgstr "朝鲜语"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "未知的语言:%1$s."
|
||||
@ -3960,7 +4021,7 @@ msgid "Show processes"
|
||||
msgstr "显示进程"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "无数据库"
|
||||
|
||||
@ -4067,16 +4128,6 @@ msgstr "找不到用户。"
|
||||
msgid "Number of tables"
|
||||
msgstr "数据表数量"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s 个匹配 - 于表 <i>%s</i> 中"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>总计:</b> <i>%s</i> 个匹配"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4226,7 +4277,7 @@ msgid "Polish"
|
||||
msgstr "波兰语"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
msgid "Port"
|
||||
msgstr "端口"
|
||||
|
||||
@ -4866,47 +4917,6 @@ msgstr "保存"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "比例因子太小,无法在一页中显示大纲"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "在数据库中搜索"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr "包含字段:"
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "于以下表:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "要查找的文字或数值 (通配符:“%”):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "至少一个词"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "所有词"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "精确短语"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "使用正则表达式"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "“<i>%s</i>”的搜索结果 %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "查找:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "配置文件现在需要一个短语密码。"
|
||||
@ -5685,7 +5695,7 @@ msgstr "全部收缩/展开"
|
||||
msgid "Snap to grid"
|
||||
msgstr "对齐网格"
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr "套接字"
|
||||
|
||||
@ -5701,10 +5711,6 @@ msgstr "已用空间"
|
||||
msgid "Spanish"
|
||||
msgstr "西班牙语"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "每个单词用空格 (“ ”) 分隔。"
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "导出类型"
|
||||
@ -5828,7 +5834,7 @@ msgstr "瑞典语"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "切换到复制的数据表"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6385,7 +6391,7 @@ msgstr "用户名不能为空!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "用户名"
|
||||
|
||||
@ -6626,17 +6632,17 @@ msgstr ""
|
||||
"此 MySQL 服务器运行于 %s <b>复制</b> 进程。要获得更多关于此服务器的复制状态,"
|
||||
"请浏览 <a href=\"#replication\">复制状态信息</a>."
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "Insecure connection"
|
||||
msgid "Current connection"
|
||||
msgstr "非安全连接"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Configuration"
|
||||
msgid "Configuration: %s"
|
||||
|
||||
192
po/zh_TW.po
192
po/zh_TW.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
|
||||
"POT-Creation-Date: 2010-05-07 13:01-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
|
||||
@ -43,7 +43,7 @@ msgstr "搜索"
|
||||
|
||||
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
|
||||
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
|
||||
#: db_structure.php:567 js/messages.php:50
|
||||
#: db_search.php:362 db_structure.php:567 js/messages.php:50
|
||||
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
|
||||
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
|
||||
#: libraries/Config.class.php:1046
|
||||
@ -61,7 +61,7 @@ msgstr "搜索"
|
||||
#: server_privileges.php:1585 server_privileges.php:1932
|
||||
#: server_privileges.php:1979 server_privileges.php:2018
|
||||
#: server_replication.php:235 server_replication.php:318
|
||||
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
|
||||
#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
|
||||
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
|
||||
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
|
||||
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
|
||||
@ -194,11 +194,13 @@ msgstr "列印"
|
||||
msgid "View dump (schema) of database"
|
||||
msgstr "檢視資料庫的備份概要 (dump schema)"
|
||||
|
||||
#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
|
||||
#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
|
||||
#: server_export.php:27
|
||||
msgid "Select All"
|
||||
msgstr "全選"
|
||||
|
||||
#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
|
||||
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
|
||||
#: server_export.php:29
|
||||
msgid "Unselect All"
|
||||
msgstr "全部取消"
|
||||
|
||||
@ -500,14 +502,85 @@ msgstr "在資料庫 <b>%s</b> 執行 SQL 語法:"
|
||||
msgid "Submit Query"
|
||||
msgstr "執行語法"
|
||||
|
||||
#: db_structure.php:77 db_structure.php:78 db_structure.php:90
|
||||
#: db_structure.php:92 db_structure.php:103 db_structure.php:105
|
||||
#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
|
||||
#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
|
||||
#: tbl_structure.php:468
|
||||
#: db_search.php:68 libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "拒絕存取"
|
||||
|
||||
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "任何一組文字"
|
||||
|
||||
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "所有文字"
|
||||
|
||||
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "完整詞語"
|
||||
|
||||
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "以規則表示法 (regular expression) 搜索"
|
||||
|
||||
#: db_search.php:242 libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "搜索 \"<i>%s</i>\" 的結果 %s:"
|
||||
|
||||
#: db_search.php:260 libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s 項資料符合 - 於資料表 <i>%s</i>"
|
||||
|
||||
#: db_search.php:267 db_structure.php:77 db_structure.php:78
|
||||
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
|
||||
#: db_structure.php:105 libraries/messages.inc.php:116
|
||||
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
|
||||
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
|
||||
msgid "Browse"
|
||||
msgstr "瀏覽"
|
||||
|
||||
#: db_search.php:272 libraries/display_tbl.lib.php:1165
|
||||
#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
|
||||
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
|
||||
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
|
||||
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
|
||||
#: tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "刪除"
|
||||
|
||||
#: db_search.php:285 libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>總計:</b> <i>%s</i> 項資料符合"
|
||||
|
||||
#: db_search.php:299 libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "搜索資料庫"
|
||||
|
||||
#: db_search.php:302 libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "尋找之文字或數值 (萬用字元: \"%\"):"
|
||||
|
||||
#: db_search.php:307 libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "尋找:"
|
||||
|
||||
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "每組文字以空格 (\" \") 分隔."
|
||||
|
||||
#: db_search.php:325 libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "於以下資料表:"
|
||||
|
||||
#: db_search.php:355 libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
|
||||
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
|
||||
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
|
||||
@ -672,8 +745,8 @@ msgstr ""
|
||||
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
|
||||
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
|
||||
#: server_privileges.php:1682 server_privileges.php:1940
|
||||
#: server_processlist.php:56 server_synchronize.php:1174
|
||||
#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
|
||||
#: server_processlist.php:56 server_synchronize.php:1179
|
||||
#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
|
||||
msgid "Database"
|
||||
msgstr "資料庫"
|
||||
|
||||
@ -1060,13 +1133,6 @@ msgstr "每秒"
|
||||
msgid "Cannot connect: invalid settings."
|
||||
msgstr "無法連線: 錯誤設定."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:84
|
||||
#: libraries/auth/config.auth.lib.php:103
|
||||
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
|
||||
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
|
||||
msgid "Access denied"
|
||||
msgstr "拒絕存取"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:92
|
||||
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
|
||||
#: libraries/messages.inc.php:1246 test/theme.php:152
|
||||
@ -1508,7 +1574,7 @@ msgstr "不用密碼"
|
||||
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
|
||||
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
|
||||
#: server_privileges.php:761 server_privileges.php:772
|
||||
#: server_privileges.php:1499 server_synchronize.php:1170
|
||||
#: server_privileges.php:1499 server_synchronize.php:1175
|
||||
msgid "Password"
|
||||
msgstr "密碼"
|
||||
|
||||
@ -1797,14 +1863,6 @@ msgstr "執行書籤查詢"
|
||||
msgid "The row has been deleted"
|
||||
msgstr "記錄已被刪除"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:251 libraries/sql_query_form.lib.php:470
|
||||
#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
|
||||
#: pmd_general.php:377 setup/frames/index.inc.php:125
|
||||
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
|
||||
msgid "Delete"
|
||||
msgstr "刪除"
|
||||
|
||||
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
|
||||
#: libraries/messages.inc.php:468 server_processlist.php:71
|
||||
#: tbl_row_action.php:64
|
||||
@ -2161,7 +2219,7 @@ msgstr "資料表格式:"
|
||||
#: server_privileges.php:692 server_privileges.php:695
|
||||
#: server_privileges.php:751 server_privileges.php:1498
|
||||
#: server_privileges.php:2030 server_processlist.php:55
|
||||
#: server_synchronize.php:1154
|
||||
#: server_synchronize.php:1159
|
||||
msgid "Host"
|
||||
msgstr "主機"
|
||||
|
||||
@ -3021,6 +3079,7 @@ msgid "%s databases have been dropped successfully."
|
||||
msgstr "%s 個資料庫已成功刪除."
|
||||
|
||||
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
|
||||
#: server_synchronize.php:1110
|
||||
#, fuzzy
|
||||
msgid "Source database"
|
||||
msgstr "搜索資料庫"
|
||||
@ -3046,6 +3105,7 @@ msgid ""
|
||||
msgstr "註: 啟動資料庫統計數據可能會產生大量由 Web 伺服器及 MySQL 之間的流量."
|
||||
|
||||
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
|
||||
#: server_synchronize.php:1112
|
||||
#, fuzzy
|
||||
msgid "Target database"
|
||||
msgstr "搜索資料庫"
|
||||
@ -3753,7 +3813,8 @@ msgstr "鍵快取"
|
||||
msgid "Korean"
|
||||
msgstr "韓語"
|
||||
|
||||
#: libraries/messages.inc.php:474
|
||||
#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
|
||||
#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
|
||||
#, php-format
|
||||
msgid "Unknown language: %1$s."
|
||||
msgstr "不知名語言: %1$s."
|
||||
@ -3966,7 +4027,7 @@ msgid "Show processes"
|
||||
msgstr "顯示程序 (Process)"
|
||||
|
||||
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
|
||||
#: server_synchronize.php:1186
|
||||
#: server_synchronize.php:1191
|
||||
msgid "No databases"
|
||||
msgstr "沒有資料庫"
|
||||
|
||||
@ -4073,16 +4134,6 @@ msgstr "找不到使用者"
|
||||
msgid "Number of tables"
|
||||
msgstr "欄位數目"
|
||||
|
||||
#: libraries/messages.inc.php:587
|
||||
#, php-format
|
||||
msgid "%s match(es) inside table <i>%s</i>"
|
||||
msgstr "%s 項資料符合 - 於資料表 <i>%s</i>"
|
||||
|
||||
#: libraries/messages.inc.php:588
|
||||
#, php-format
|
||||
msgid "<b>Total:</b> <i>%s</i> match(es)"
|
||||
msgstr "<b>總計:</b> <i>%s</i> 項資料符合"
|
||||
|
||||
#: libraries/messages.inc.php:589 server_databases.php:117
|
||||
#: server_status.php:260 setup/lib/messages.inc.php:117
|
||||
msgid "Tables"
|
||||
@ -4233,7 +4284,7 @@ msgid "Polish"
|
||||
msgstr "波蘭語"
|
||||
|
||||
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
|
||||
#: server_synchronize.php:1158
|
||||
#: server_synchronize.php:1163
|
||||
#, fuzzy
|
||||
msgid "Port"
|
||||
msgstr "排序"
|
||||
@ -4872,47 +4923,6 @@ msgstr "儲存"
|
||||
msgid "The scale factor is too small to fit the schema on one page"
|
||||
msgstr "比例倍數太細, 無法將圖表放在一頁內"
|
||||
|
||||
#: libraries/messages.inc.php:840
|
||||
msgid "Search in database"
|
||||
msgstr "搜索資料庫"
|
||||
|
||||
#: libraries/messages.inc.php:841
|
||||
msgid "Inside field:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:842
|
||||
msgid "Inside table(s):"
|
||||
msgstr "於以下資料表:"
|
||||
|
||||
#: libraries/messages.inc.php:843
|
||||
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgstr "尋找之文字或數值 (萬用字元: \"%\"):"
|
||||
|
||||
#: libraries/messages.inc.php:844
|
||||
msgid "at least one of the words"
|
||||
msgstr "任何一組文字"
|
||||
|
||||
#: libraries/messages.inc.php:845
|
||||
msgid "all words"
|
||||
msgstr "所有文字"
|
||||
|
||||
#: libraries/messages.inc.php:846
|
||||
msgid "the exact phrase"
|
||||
msgstr "完整詞語"
|
||||
|
||||
#: libraries/messages.inc.php:847
|
||||
msgid "as regular expression"
|
||||
msgstr "以規則表示法 (regular expression) 搜索"
|
||||
|
||||
#: libraries/messages.inc.php:848
|
||||
#, php-format
|
||||
msgid "Search results for \"<i>%s</i>\" %s:"
|
||||
msgstr "搜索 \"<i>%s</i>\" 的結果 %s:"
|
||||
|
||||
#: libraries/messages.inc.php:850
|
||||
msgid "Find:"
|
||||
msgstr "尋找:"
|
||||
|
||||
#: libraries/messages.inc.php:851 main.php:298
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
msgstr "設定檔案現在需要密碼 (passphrase) (blowfish_secret)."
|
||||
@ -5629,7 +5639,7 @@ msgstr ""
|
||||
msgid "Snap to grid"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1162
|
||||
#: libraries/messages.inc.php:1019 server_synchronize.php:1167
|
||||
msgid "Socket"
|
||||
msgstr ""
|
||||
|
||||
@ -5645,10 +5655,6 @@ msgstr "已使用空間"
|
||||
msgid "Spanish"
|
||||
msgstr "西班牙語"
|
||||
|
||||
#: libraries/messages.inc.php:1025
|
||||
msgid "Words are separated by a space character (\" \")."
|
||||
msgstr "每組文字以空格 (\" \") 分隔."
|
||||
|
||||
#: libraries/messages.inc.php:1027
|
||||
msgid "Export type"
|
||||
msgstr "輸出方式"
|
||||
@ -5772,7 +5778,7 @@ msgstr "瑞典語"
|
||||
msgid "Switch to copied table"
|
||||
msgstr "跳到已複製之資料表"
|
||||
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1208
|
||||
#: libraries/messages.inc.php:1069 server_synchronize.php:1213
|
||||
msgid ""
|
||||
"Target database will be completely synchronized with source database. Source "
|
||||
"database will remain unchanged."
|
||||
@ -6326,7 +6332,7 @@ msgstr "請輸入使用者名稱!"
|
||||
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
|
||||
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
|
||||
#: server_privileges.php:672 server_privileges.php:675
|
||||
#: server_privileges.php:682 server_synchronize.php:1166
|
||||
#: server_privileges.php:682 server_synchronize.php:1171
|
||||
msgid "User name"
|
||||
msgstr "使用者名稱"
|
||||
|
||||
@ -6554,17 +6560,17 @@ msgid ""
|
||||
"the <a href=#replication>replication section</a>."
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1117
|
||||
#: server_synchronize.php:1122
|
||||
msgid "Enter manually"
|
||||
msgstr ""
|
||||
|
||||
#: server_synchronize.php:1118
|
||||
#: server_synchronize.php:1123
|
||||
#, fuzzy
|
||||
#| msgid "max. concurrent connections"
|
||||
msgid "Current connection"
|
||||
msgstr "最大連線數目"
|
||||
|
||||
#: server_synchronize.php:1147
|
||||
#: server_synchronize.php:1152
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr ""
|
||||
|
||||
@ -1106,10 +1106,15 @@ if (isset($_REQUEST['synchronize_db'])) {
|
||||
'ASC', 0, true);
|
||||
|
||||
foreach ($cons as $type) {
|
||||
if ('src' == $type) {
|
||||
$database_header = __('Source database');
|
||||
} else {
|
||||
$database_header = __('Target database');
|
||||
}
|
||||
?>
|
||||
<table id="serverconnection_<?php echo $type; ?>_remote" class="data">
|
||||
<tr>
|
||||
<th colspan="2"><?php echo $GLOBALS['strDatabase_'.$type]; ?></th>
|
||||
<th colspan="2"><?php echo $database_header; ?></th>
|
||||
</tr>
|
||||
<tr class="odd">
|
||||
<td colspan="2" style="text-align: center">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user