Merge branch 'master' into rte
This commit is contained in:
commit
9bf9726bf9
@ -11,6 +11,9 @@
|
||||
+ rfe #2098927 Remember recent tables
|
||||
+ rfe #3078542 Remember the last sort order for each table
|
||||
+ AJAX for Create table in navigation panel
|
||||
+ rfe #3310562 Wording about Column
|
||||
|
||||
3.4.3.0 (not yet released)
|
||||
|
||||
3.4.2.0 (not yet released)
|
||||
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
|
||||
@ -24,6 +27,7 @@
|
||||
- bug #3306958 [interface] Unnecessary Details slider
|
||||
- bug #3308476 [interface] "Show all" not persistent after a sort
|
||||
- bug #3308072 [auth] Version disclosure to anonymous visitors
|
||||
- bug #3306981 [interface] pmahomme and table statistics
|
||||
|
||||
3.4.1.0 (2011-05-20)
|
||||
- bug #3301108 [interface] Synchronize and already configured host
|
||||
|
||||
19
js/codemirror/LICENSE
Normal file
19
js/codemirror/LICENSE
Normal file
@ -0,0 +1,19 @@
|
||||
Copyright (C) 2011 by Marijn Haverbeke <marijnh@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
2035
js/codemirror/lib/codemirror.js
vendored
Normal file
2035
js/codemirror/lib/codemirror.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
145
js/codemirror/mode/mysql/mysql.js
vendored
Normal file
145
js/codemirror/mode/mysql/mysql.js
vendored
Normal file
@ -0,0 +1,145 @@
|
||||
CodeMirror.defineMode("mysql", function(config, parserConfig) {
|
||||
var indentUnit = config.indentUnit,
|
||||
keywords = parserConfig.keywords,
|
||||
functions = parserConfig.functions,
|
||||
types = parserConfig.types,
|
||||
attributes = parserConfig.attributes,
|
||||
multiLineStrings = parserConfig.multiLineStrings;
|
||||
var isOperatorChar = /[+\-*&%=<>!?:\/|]/;
|
||||
function chain(stream, state, f) {
|
||||
state.tokenize = f;
|
||||
return f(stream, state);
|
||||
}
|
||||
|
||||
var type;
|
||||
function ret(tp, style) {
|
||||
type = tp;
|
||||
return style;
|
||||
}
|
||||
|
||||
function tokenBase(stream, state) {
|
||||
var ch = stream.next();
|
||||
// start of string?
|
||||
if (ch == '"' || ch == "'" || ch == '`')
|
||||
return chain(stream, state, tokenString(ch));
|
||||
// is it one of the special signs []{}().,;? Seperator?
|
||||
else if (/[\[\]{}\(\),;\.]/.test(ch))
|
||||
return ret(ch);
|
||||
// start of a number value?
|
||||
else if (/\d/.test(ch)) {
|
||||
stream.eatWhile(/[\w\.]/)
|
||||
return ret("number", "mysql-number");
|
||||
}
|
||||
// multi line comment or simple operator?
|
||||
else if (ch == "/") {
|
||||
if (stream.eat("*")) {
|
||||
return chain(stream, state, tokenComment);
|
||||
}
|
||||
else {
|
||||
stream.eatWhile(isOperatorChar);
|
||||
return ret("operator", "mysql-operator");
|
||||
}
|
||||
}
|
||||
// single line comment or simple operator?
|
||||
else if (ch == "-") {
|
||||
if (stream.eat("-")) {
|
||||
stream.skipToEnd();
|
||||
return ret("comment", "mysql-comment");
|
||||
}
|
||||
else {
|
||||
stream.eatWhile(isOperatorChar);
|
||||
return ret("operator", "mysql-operator");
|
||||
}
|
||||
}
|
||||
// pl/sql variable?
|
||||
else if (ch == "@" || ch == "$") {
|
||||
stream.eatWhile(/[\w\d\$_]/);
|
||||
return ret("word", "mysql-var");
|
||||
}
|
||||
// is it a operator?
|
||||
else if (isOperatorChar.test(ch)) {
|
||||
stream.eatWhile(isOperatorChar);
|
||||
return ret("operator", "mysql-operator");
|
||||
}
|
||||
else {
|
||||
// get the whole word
|
||||
stream.eatWhile(/[\w\$_]/);
|
||||
// is it one of the listed keywords?
|
||||
if (keywords && keywords.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-keyword");
|
||||
// is it one of the listed functions?
|
||||
if (functions && functions.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-function");
|
||||
// is it one of the listed types?
|
||||
if (types && types.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-type");
|
||||
// is it one of the listed attributes?
|
||||
if (attributes && attributes.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-attribute");
|
||||
// default: just a "word"
|
||||
return ret("word", "mysql-word");
|
||||
}
|
||||
}
|
||||
|
||||
function tokenString(quote) {
|
||||
return function(stream, state) {
|
||||
var escaped = false, next, end = false;
|
||||
while ((next = stream.next()) != null) {
|
||||
if (next == quote && !escaped) {end = true; break;}
|
||||
escaped = !escaped && next == "\\";
|
||||
}
|
||||
if (end || !(escaped || multiLineStrings))
|
||||
state.tokenize = tokenBase;
|
||||
return ret("string", "mysql-string");
|
||||
};
|
||||
}
|
||||
|
||||
function tokenComment(stream, state) {
|
||||
var maybeEnd = false, ch;
|
||||
while (ch = stream.next()) {
|
||||
if (ch == "/" && maybeEnd) {
|
||||
state.tokenize = tokenBase;
|
||||
break;
|
||||
}
|
||||
maybeEnd = (ch == "*");
|
||||
}
|
||||
return ret("comment", "mysql-comment");
|
||||
}
|
||||
|
||||
// Interface
|
||||
|
||||
return {
|
||||
startState: function(basecolumn) {
|
||||
return {
|
||||
tokenize: tokenBase,
|
||||
indented: 0,
|
||||
startOfLine: true
|
||||
};
|
||||
},
|
||||
|
||||
token: function(stream, state) {
|
||||
if (stream.eatSpace()) return null;
|
||||
var style = state.tokenize(stream, state);
|
||||
return style;
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
(function() {
|
||||
function keywords(str) {
|
||||
var obj = {}, words = str.split(" ");
|
||||
for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
|
||||
return obj;
|
||||
}
|
||||
var cKeywords = "accessible action add after against aggregate algorithm all alter analyse analyze and as asc autocommit auto_increment avg_row_length backup begin between binlog both by cascade case change changed charset check checksum collate collation column columns comment commit committed compressed concurrent constraint contains convert create cross current_timestamp database databases day day_hour day_minute day_second definer delayed delay_key_write delete desc describe deterministic distinct distinctrow div do drop dumpfile duplicate dynamic else enclosed end engine engines escape escaped events execute exists explain extended fast fields file first fixed flush for force foreign from full fulltext function gemini gemini_spin_retries global grant grants group having heap high_priority hosts hour hour_minute hour_second identified if ignore in index indexes infile inner insert insert_id insert_method interval into invoker is isolation join key keys kill last_insert_id leading left like limit linear lines load local lock locks logs low_priority maria master master_connect_retry master_host master_log_file master_log_pos master_password master_port master_user match max_connections_per_hour max_queries_per_hour max_rows max_updates_per_hour max_user_connections medium merge minute minute_second min_rows mode modify month mrg_myisam myisam names natural no not null offset on open optimize option optionally or order outer outfile pack_keys page page_checksum partial partition partitions password primary privileges procedure process processlist purge quick raid0 raid_chunks raid_chunksize raid_type range read read_only read_write references regexp reload rename repair repeatable replace replication reset restore restrict return returns revoke right rlike rollback row rows row_format second security select separator serializable session share show shutdown slave soname sounds sql sql_auto_is_null sql_big_result sql_big_selects sql_big_tables sql_buffer_result sql_cache sql_calc_found_rows sql_log_bin sql_log_off sql_log_update sql_low_priority_updates sql_max_join_size sql_no_cache sql_quote_show_create sql_safe_updates sql_select_limit sql_slave_skip_counter sql_small_result sql_warnings start starting status stop storage straight_join string striped super table tables temporary terminated then to trailing transactional truncate type types uncommitted union unique unlock update usage use using values variables view when where with work write xor year_month";
|
||||
|
||||
var cFunctions = "abs acos adddate addtime aes_decrypt aes_encrypt area asbinary ascii asin astext atan atan2 avg bdmpolyfromtext bdmpolyfromwkb bdpolyfromtext bdpolyfromwkb benchmark bin bit_and bit_count bit_length bit_or bit_xor boundary buffer cast ceil ceiling centroid char character_length charset char_length coalesce coercibility collation compress concat concat_ws connection_id contains conv convert convert_tz convexhull cos cot count crc32 crosses curdate current_date current_time current_timestamp current_user curtime database date datediff date_add date_diff date_format date_sub day dayname dayofmonth dayofweek dayofyear decode default degrees des_decrypt des_encrypt difference dimension disjoint distance elt encode encrypt endpoint envelope equals exp export_set exteriorring extract extractvalue field find_in_set floor format found_rows from_days from_unixtime geomcollfromtext geomcollfromwkb geometrycollection geometrycollectionfromtext geometrycollectionfromwkb geometryfromtext geometryfromwkb geometryn geometrytype geomfromtext geomfromwkb get_format get_lock glength greatest group_concat group_unique_users hex hour if ifnull inet_aton inet_ntoa insert instr interiorringn intersection intersects interval isclosed isempty isnull isring issimple is_free_lock is_used_lock last_day last_insert_id lcase least left length linefromtext linefromwkb linestring linestringfromtext linestringfromwkb ln load_file localtime localtimestamp locate log log10 log2 lower lpad ltrim makedate maketime make_set master_pos_wait max mbrcontains mbrdisjoint mbrequal mbrintersects mbroverlaps mbrtouches mbrwithin md5 microsecond mid min minute mlinefromtext mlinefromwkb mod month monthname mpointfromtext mpointfromwkb mpolyfromtext mpolyfromwkb multilinestring multilinestringfromtext multilinestringfromwkb multipoint multipointfromtext multipointfromwkb multipolygon multipolygonfromtext multipolygonfromwkb name_const now nullif numgeometries numinteriorrings numpoints oct octet_length old_password ord overlaps password period_add period_diff pi point pointfromtext pointfromwkb pointn pointonsurface polyfromtext polyfromwkb polygon polygonfromtext polygonfromwkb position pow power quarter quote radians rand related release_lock repeat replace reverse right round row_count rpad rtrim schema second sec_to_time session_user sha sha1 sign sin sleep soundex space sqrt srid startpoint std stddev stddev_pop stddev_samp strcmp str_to_date subdate substr substring substring_index subtime sum symdifference sysdate system_user tan time timediff timestamp timestampadd timestampdiff time_format time_to_sec touches to_days trim truncate ucase uncompress uncompressed_length unhex unique_users unix_timestamp updatexml upper user utc_date utc_time utc_timestamp uuid variance var_pop var_samp version week weekday weekofyear within x y year yearweek";
|
||||
|
||||
var cTypes = "bigint binary bit blob bool boolean char character date datetime dec decimal double enum float float4 float8 geometry geometrycollection int int1 int2 int3 int4 int8 integer linestring long longblob longtext mediumblob mediumint mediumtext middleint multilinestring multipoint multipolygon nchar numeric point polygon real serial set smallint text time timestamp tinyblob tinyint tinytext varbinary varchar year";
|
||||
|
||||
var cAttributes = "archive ascii auto_increment bdb berkeleydb binary blackhole csv default example federated heap innobase innodb isam maria memory merge mrg_isam mrg_myisam myisam national ndb ndbcluster precision undefined unicode unsigned varying zerofill";
|
||||
|
||||
CodeMirror.defineMIME("text/x-mysql", {
|
||||
name: "mysql",
|
||||
keywords: keywords(cKeywords),
|
||||
functions: keywords(cFunctions),
|
||||
types: keywords(cTypes),
|
||||
attributes: keywords(cAttributes)
|
||||
});
|
||||
}());
|
||||
@ -20,6 +20,11 @@ var only_once_elements = new Array();
|
||||
*/
|
||||
var ajax_message_init = false;
|
||||
|
||||
/**
|
||||
* @var codemirror_editor object containing CodeMirror editor
|
||||
*/
|
||||
var codemirror_editor = false;
|
||||
|
||||
/**
|
||||
* Add a hidden field to the form to indicate that this will be an
|
||||
* Ajax request (only if this hidden field does not exist)
|
||||
@ -719,15 +724,31 @@ function setSelectOptions(the_form, the_select, do_check)
|
||||
return true;
|
||||
} // end of the 'setSelectOptions()' function
|
||||
|
||||
/**
|
||||
* Sets current value for query box.
|
||||
*/
|
||||
function setQuery(query) {
|
||||
if (codemirror_editor) {
|
||||
codemirror_editor.setValue(query);
|
||||
} else {
|
||||
document.sqlform.sql_query.value = query;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create quick sql statements.
|
||||
*
|
||||
*/
|
||||
function insertQuery(queryType) {
|
||||
if (queryType == "clear") {
|
||||
setQuery('');
|
||||
return;
|
||||
}
|
||||
|
||||
var myQuery = document.sqlform.sql_query;
|
||||
var myListBox = document.sqlform.dummy;
|
||||
var query = "";
|
||||
var myListBox = document.sqlform.dummy;
|
||||
var table = document.sqlform.table.value;
|
||||
|
||||
if (myListBox.options.length > 0) {
|
||||
@ -758,7 +779,7 @@ function insertQuery(queryType) {
|
||||
} else if(queryType == "delete") {
|
||||
query = "DELETE FROM `" + table + "` WHERE 1";
|
||||
}
|
||||
document.sqlform.sql_query.value = query;
|
||||
setQuery(query);
|
||||
sql_box_locked = false;
|
||||
}
|
||||
}
|
||||
@ -785,8 +806,11 @@ function insertValueQuery() {
|
||||
}
|
||||
}
|
||||
|
||||
/* CodeMirror support */
|
||||
if (codemirror_editor) {
|
||||
codemirror_editor.replaceSelection(chaineAj);
|
||||
//IE support
|
||||
if (document.selection) {
|
||||
} else if (document.selection) {
|
||||
myQuery.focus();
|
||||
sel = document.selection.createRange();
|
||||
sel.text = chaineAj;
|
||||
@ -1147,11 +1171,7 @@ $(document).ready(function(){
|
||||
});
|
||||
|
||||
$('.sqlbutton').click(function(evt){
|
||||
if (evt.target.id == 'clear') {
|
||||
$('#sqlquery').val('');
|
||||
} else {
|
||||
insertQuery(evt.target.id);
|
||||
}
|
||||
insertQuery(evt.target.id);
|
||||
return false;
|
||||
});
|
||||
|
||||
@ -2410,3 +2430,13 @@ $(document).ready(function() {
|
||||
}); // end $.PMA_confirm()
|
||||
}); //end of Drop Table Ajax action
|
||||
}) // end of $(document).ready() for Drop Table
|
||||
|
||||
/**
|
||||
* Attach CodeMirror2 editor to SQL edit area.
|
||||
*/
|
||||
$(document).ready(function() {
|
||||
var elm = $('#sqlquery');
|
||||
if (elm.length > 0) {
|
||||
codemirror_editor = CodeMirror.fromTextArea(elm[0], {lineNumbers: true, matchBrackets: true, indentUnit: 4, mode: "text/x-mysql"});
|
||||
}
|
||||
})
|
||||
|
||||
16
js/sql.js
16
js/sql.js
@ -365,7 +365,7 @@ $(document).ready(function() {
|
||||
$("#sqlqueryresults").html(data);
|
||||
$("#sqlqueryresults").trigger('appendAnchor');
|
||||
PMA_init_slider();
|
||||
|
||||
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
}) // end $.post()
|
||||
})// end Paginate results table
|
||||
@ -388,7 +388,7 @@ $(document).ready(function() {
|
||||
$("#sqlqueryresults").html(data);
|
||||
$("#sqlqueryresults").trigger('appendAnchor');
|
||||
PMA_init_slider();
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
}) // end $.post()
|
||||
} else {
|
||||
$the_form.submit();
|
||||
@ -456,7 +456,7 @@ $(document).ready(function() {
|
||||
$edit_td.removeClass('inline_edit_anchor').addClass('inline_edit_active').parent('tr').addClass('noclick');
|
||||
|
||||
// Adding submit and hide buttons to inline edit <td>.
|
||||
// For "hide" button the original data to be restored is
|
||||
// For "hide" button the original data to be restored is
|
||||
// kept in the jQuery data element 'original_data' inside the <td>.
|
||||
// Looping through all columns or rows, to find the required data and then storing it in an array.
|
||||
|
||||
@ -840,7 +840,7 @@ $(document).ready(function() {
|
||||
*/
|
||||
var relation_fields = {};
|
||||
/**
|
||||
* @var relational_display string 'K' if relational key, 'D' if relational display column
|
||||
* @var relational_display string 'K' if relational key, 'D' if relational display column
|
||||
*/
|
||||
var relational_display = $("#relational_display_K").attr('checked') ? 'K' : 'D';
|
||||
/**
|
||||
@ -858,7 +858,7 @@ $(document).ready(function() {
|
||||
var sql_query = 'UPDATE `' + window.parent.table + '` SET ';
|
||||
|
||||
var need_to_post = false;
|
||||
|
||||
|
||||
var new_clause = '';
|
||||
var prev_index = -1;
|
||||
|
||||
@ -930,7 +930,7 @@ $(document).ready(function() {
|
||||
}
|
||||
})
|
||||
|
||||
/*
|
||||
/*
|
||||
* update the where_clause, remove the last appended ' AND '
|
||||
* */
|
||||
|
||||
@ -1004,10 +1004,10 @@ $(document).ready(function() {
|
||||
|
||||
|
||||
/**
|
||||
* Visually put back the row in the state it was before entering Inline edit
|
||||
* Visually put back the row in the state it was before entering Inline edit
|
||||
*
|
||||
* (when called in the situation where no posting was done, the data
|
||||
* parameter is empty)
|
||||
* parameter is empty)
|
||||
*/
|
||||
function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings, data, disp_mode) {
|
||||
|
||||
|
||||
@ -39,6 +39,8 @@ if (isset($GLOBALS['db'])) {
|
||||
$params['db'] = $GLOBALS['db'];
|
||||
}
|
||||
$GLOBALS['js_include'][] = 'messages.php' . PMA_generate_common_url($params);
|
||||
$GLOBALS['js_include'][] = 'codemirror/lib/codemirror.js';
|
||||
$GLOBALS['js_include'][] = 'codemirror/mode/mysql/mysql.js';
|
||||
|
||||
/**
|
||||
* Here we add a timestamp when loading the file, so that users who
|
||||
|
||||
@ -95,7 +95,7 @@ $is_backup = ($action != 'tbl_create.php' && $action != 'tbl_addfield.php');
|
||||
$header_cells = array();
|
||||
$content_cells = array();
|
||||
|
||||
$header_cells[] = __('Column');
|
||||
$header_cells[] = __('Name');
|
||||
$header_cells[] = __('Type')
|
||||
. ($GLOBALS['cfg']['ReplaceHelpImg']
|
||||
? PMA_showMySQLDocu('SQL-Syntax', 'data-types')
|
||||
|
||||
38
po/af.po
38
po/af.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-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"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -132,9 +132,8 @@ msgstr "Tabel kommentaar"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -637,8 +636,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -881,8 +880,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1794,8 +1793,8 @@ msgstr "Welkom by %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4532,8 +4531,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
@ -4749,8 +4749,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5429,8 +5429,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7803,8 +7803,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
50
po/ar.po
50
po/ar.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
|
||||
"Last-Translator: <u4504712@anu.edu.au>\n"
|
||||
"Language-Team: arabic <ar@li.org>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
@ -135,9 +135,8 @@ msgstr "تعليقات على الجدول"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -351,8 +350,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage has been deactivated. To find out why "
|
||||
"click %shere%s."
|
||||
msgstr ""
|
||||
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
|
||||
"%s."
|
||||
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
|
||||
"s."
|
||||
|
||||
#: db_operations.php:600
|
||||
#, fuzzy
|
||||
@ -641,8 +640,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -884,8 +883,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1811,8 +1810,8 @@ msgstr "أهلا بك في %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4560,8 +4559,9 @@ msgid "Events"
|
||||
msgstr "أحداث"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
@ -4781,8 +4781,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5466,8 +5466,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7142,8 +7142,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage is not completely configured, some "
|
||||
"extended features have been deactivated. To find out why click %shere%s."
|
||||
msgstr ""
|
||||
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
|
||||
"%s."
|
||||
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
|
||||
"s."
|
||||
|
||||
#: main.php:314
|
||||
msgid ""
|
||||
@ -7897,8 +7897,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
|
||||
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
|
||||
@ -10063,8 +10063,8 @@ msgstr "أعد تسمية العرض الـ"
|
||||
#~ "The additional features for working with linked tables have been "
|
||||
#~ "deactivated. To find out why click %shere%s."
|
||||
#~ msgstr ""
|
||||
#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
|
||||
#~ "%sهنا%s."
|
||||
#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
|
||||
#~ "sهنا%s."
|
||||
|
||||
#~ msgid "Execute bookmarked query"
|
||||
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
|
||||
|
||||
38
po/az.po
38
po/az.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: azerbaijani <az@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -129,9 +129,8 @@ msgstr "Cedvel haqqında qısa izahat"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -634,8 +633,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -881,8 +880,8 @@ msgstr "Sxem %s faylına qeyd edildi."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1812,8 +1811,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4582,8 +4581,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
@ -4803,8 +4803,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5492,8 +5492,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7962,8 +7962,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
|
||||
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
|
||||
|
||||
46
po/be.po
46
po/be.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-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"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -134,9 +134,8 @@ msgstr "Камэнтар да табліцы"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -635,11 +634,11 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
|
||||
"%sдакумэнтацыі%s."
|
||||
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
|
||||
"sдакумэнтацыі%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -889,8 +888,8 @@ msgstr "Дамп захаваны ў файл %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
|
||||
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
|
||||
@ -909,8 +908,8 @@ msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
"for it is not implemented or disabled by your configuration."
|
||||
msgstr ""
|
||||
"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
|
||||
"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
|
||||
"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
|
||||
"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
|
||||
"канфігурацыі."
|
||||
|
||||
#: import.php:336
|
||||
@ -1852,8 +1851,8 @@ msgstr "Запрашаем у %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
|
||||
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
|
||||
@ -4670,8 +4669,9 @@ msgid "Events"
|
||||
msgstr "Падзеі"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Назва"
|
||||
|
||||
@ -4902,8 +4902,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
|
||||
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
|
||||
@ -5662,8 +5662,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8200,8 +8200,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
|
||||
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
|
||||
|
||||
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-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"
|
||||
"Language: be@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Language: be@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -136,9 +136,8 @@ msgstr "Kamentar da tablicy"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -641,11 +640,11 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
|
||||
"%sdakumentacyi%s."
|
||||
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
|
||||
"sdakumentacyi%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -886,8 +885,8 @@ msgstr "Damp zachavany ŭ fajł %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
|
||||
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
|
||||
@ -906,8 +905,8 @@ msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
"for it is not implemented or disabled by your configuration."
|
||||
msgstr ""
|
||||
"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
|
||||
"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
|
||||
"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
|
||||
"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
|
||||
"kanfihuracyi."
|
||||
|
||||
#: import.php:336
|
||||
@ -1857,8 +1856,8 @@ msgstr "Zaprašajem u %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
|
||||
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
|
||||
@ -4644,8 +4643,9 @@ msgid "Events"
|
||||
msgstr "Padziei"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nazva"
|
||||
|
||||
@ -4875,8 +4875,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
|
||||
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
|
||||
@ -5640,8 +5640,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6894,8 +6894,8 @@ msgid ""
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
|
||||
"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
|
||||
"%sdakumentacyi%s."
|
||||
"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
|
||||
"sdakumentacyi%s."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
msgid "Table seems to be empty!"
|
||||
@ -7103,8 +7103,8 @@ msgstr ""
|
||||
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
|
||||
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
|
||||
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
|
||||
"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
|
||||
"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
|
||||
"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
|
||||
"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
|
||||
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
|
||||
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
|
||||
|
||||
@ -8175,8 +8175,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
|
||||
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
|
||||
|
||||
46
po/bg.po
46
po/bg.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-28 14:02+0200\n"
|
||||
"Last-Translator: <stoyanster@gmail.com>\n"
|
||||
"Language-Team: bulgarian <bg@li.org>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Коментари към таблицата"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kолона"
|
||||
@ -614,8 +613,8 @@ msgstr "Проследяването е неактивно."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s"
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -852,8 +851,8 @@ msgstr "Схемата беше записана във файл %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
|
||||
"към %sdдокументацията%s за да намерите начин да избегнете това ограничение."
|
||||
@ -1708,8 +1707,8 @@ msgstr "Добре дошли в %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4370,8 +4369,9 @@ msgid "Events"
|
||||
msgstr "Събития"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
@ -4572,8 +4572,8 @@ msgstr ", @TABLE@ ще стане името на таблицата"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5223,8 +5223,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6407,8 +6407,8 @@ msgid ""
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
|
||||
"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
|
||||
"%s."
|
||||
"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%"
|
||||
"s."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
msgid "Table seems to be empty!"
|
||||
@ -7542,8 +7542,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Забележка: phpMyAdmin взема потребителските права директно от таблицата с "
|
||||
"правата на MySQL. Съдържанието на тази таблица може да се различава от "
|
||||
@ -9593,8 +9593,8 @@ msgid ""
|
||||
"No themes support; please check your configuration and/or your themes in "
|
||||
"directory %s."
|
||||
msgstr ""
|
||||
"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка "
|
||||
"%s."
|
||||
"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %"
|
||||
"s."
|
||||
|
||||
#: themes.php:41
|
||||
msgid "Get more themes!"
|
||||
|
||||
50
po/bn.po
50
po/bn.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
|
||||
"Last-Translator: Nobin নবীন <nobin@cyberbogra.com>\n"
|
||||
"Language-Team: bangla <bn@li.org>\n"
|
||||
"Language: bn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -133,9 +133,8 @@ msgstr "টেবিলের মন্তব্য সমূহ"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "কলামের"
|
||||
@ -632,8 +631,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -881,11 +880,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1832,8 +1831,8 @@ msgstr "Welcome to %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
|
||||
"করে একটি তৈরী করতে পারেন "
|
||||
@ -4639,8 +4638,9 @@ msgid "Events"
|
||||
msgstr "Sent"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "নাম"
|
||||
|
||||
@ -4867,12 +4867,12 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5589,8 +5589,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8107,13 +8107,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
|
||||
38
po/bs.po
38
po/bs.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: bosnian <bs@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -132,9 +132,8 @@ msgstr "Komentari tabele"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -636,8 +635,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -883,8 +882,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1806,8 +1805,8 @@ msgstr "Dobrodošli na %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4571,8 +4570,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
@ -4792,8 +4792,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5480,8 +5480,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7944,8 +7944,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
|
||||
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
|
||||
|
||||
58
po/ca.po
58
po/ca.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
|
||||
"Last-Translator: Xavier Navarro <xvnavarro@gmail.com>\n"
|
||||
"Language-Team: catalan <ca@li.org>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Comentaris de la taula"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Columna"
|
||||
@ -614,8 +613,8 @@ msgstr "El seguiment no està actiu."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
|
||||
|
||||
@ -858,11 +857,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
|
||||
"%sdocumentació%s per trobar formes de modificar aquest límit."
|
||||
"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
|
||||
"sdocumentació%s per trobar formes de modificar aquest límit."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1736,8 +1735,8 @@ msgstr "Benvingut a %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
|
||||
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
|
||||
@ -4613,8 +4612,9 @@ msgid "Events"
|
||||
msgstr "Esdeveniments"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
@ -4818,12 +4818,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
|
||||
"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
|
||||
"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
|
||||
"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
|
||||
"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
|
||||
"per a més detalls."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5556,8 +5556,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
|
||||
"principal de %sPrimeBase XT%s."
|
||||
@ -6793,8 +6793,8 @@ msgid ""
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
|
||||
"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
|
||||
"%sdocumentació%s."
|
||||
"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
|
||||
"sdocumentació%s."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
msgid "Table seems to be empty!"
|
||||
@ -7975,8 +7975,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
|
||||
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
|
||||
@ -9478,8 +9478,8 @@ msgid ""
|
||||
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
|
||||
"cookie validity%s must be set to a value less or equal to it."
|
||||
msgstr ""
|
||||
"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
|
||||
"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
|
||||
"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
|
||||
"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
|
||||
"igual a ell."
|
||||
|
||||
#: setup/lib/index.lib.php:266
|
||||
@ -9507,8 +9507,8 @@ msgstr ""
|
||||
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
|
||||
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
|
||||
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
|
||||
"phpMyAdmin pot accedir al teu panel directament. Estableix el "
|
||||
"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
|
||||
"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
|
||||
"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
|
||||
|
||||
#: setup/lib/index.lib.php:270
|
||||
#, php-format
|
||||
|
||||
58
po/cs.po
58
po/cs.po
@ -6,14 +6,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-06-02 10:34+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: czech <cs@li.org>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -137,9 +137,8 @@ msgstr "Komentář k tabulce"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Pole"
|
||||
@ -619,8 +618,8 @@ msgstr "Sledování není zapnuté."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
|
||||
|
||||
@ -857,8 +856,8 @@ msgstr "Výpis byl uložen do souboru %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
|
||||
"prosím %sdokumentaci%s, jak toto omezení obejít."
|
||||
@ -1715,8 +1714,8 @@ msgstr "Vítejte v %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
|
||||
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
|
||||
@ -4538,8 +4537,9 @@ msgid "Events"
|
||||
msgstr "Události"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
@ -4740,8 +4740,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
|
||||
"libovolné řetězce pro formátování data a času. Dále budou provedena "
|
||||
@ -5467,8 +5467,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
|
||||
"XT%s."
|
||||
@ -6738,8 +6738,8 @@ msgid ""
|
||||
"For a list of available transformation options and their MIME type "
|
||||
"transformations, click on %stransformation descriptions%s"
|
||||
msgstr ""
|
||||
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
|
||||
"%spopisy transformací%s"
|
||||
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
|
||||
"spopisy transformací%s"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:143
|
||||
msgid "Transformation options"
|
||||
@ -6790,8 +6790,8 @@ msgid ""
|
||||
"No description is available for this transformation.<br />Please ask the "
|
||||
"author what %s does."
|
||||
msgstr ""
|
||||
"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co "
|
||||
"%s dělá."
|
||||
"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co %"
|
||||
"s dělá."
|
||||
|
||||
#: libraries/tbl_properties.inc.php:625 tbl_structure.php:636
|
||||
#, php-format
|
||||
@ -7410,8 +7410,8 @@ msgid ""
|
||||
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
|
||||
"script%s."
|
||||
msgstr ""
|
||||
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
|
||||
"%sNastavovacího skriptu%s."
|
||||
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
|
||||
"sNastavovacího skriptu%s."
|
||||
|
||||
#: prefs_manage.php:302
|
||||
msgid "Save to browser's storage"
|
||||
@ -7859,8 +7859,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
|
||||
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
|
||||
@ -9328,8 +9328,8 @@ msgid ""
|
||||
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
|
||||
"cookie validity%s must be set to a value less or equal to it."
|
||||
msgstr ""
|
||||
"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
|
||||
"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
|
||||
"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
|
||||
"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
|
||||
"hodnotu než je tato."
|
||||
|
||||
#: setup/lib/index.lib.php:266
|
||||
@ -9340,8 +9340,8 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
|
||||
"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
|
||||
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
|
||||
"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
|
||||
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
|
||||
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
|
||||
|
||||
|
||||
42
po/cy.po
42
po/cy.po
@ -6,14 +6,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
|
||||
"Last-Translator: <ardavies@tiscali.co.uk>\n"
|
||||
"Language-Team: Welsh <cy@li.org>\n"
|
||||
"Language: cy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -138,9 +138,8 @@ msgstr "Sylwadau tabl"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Colofn"
|
||||
@ -618,8 +617,8 @@ msgstr "Nid yw tracio'n weithredol"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
|
||||
|
||||
@ -858,8 +857,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
|
||||
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
|
||||
@ -1766,11 +1765,11 @@ msgstr "Croeso i %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
|
||||
"%1$sgript gosod%2$s er mwyn ei chreu."
|
||||
"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
|
||||
"$sgript gosod%2$s er mwyn ei chreu."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4526,8 +4525,9 @@ msgid "Events"
|
||||
msgstr "Digwyddiadau"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Enw"
|
||||
|
||||
@ -4747,8 +4747,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5436,8 +5436,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7759,8 +7759,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
46
po/da.po
46
po/da.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
|
||||
"Last-Translator: <hjortholm@gmail.com>\n"
|
||||
"Language-Team: danish <da@li.org>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -133,9 +133,8 @@ msgstr "Tabel kommentarer"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kolonnenavn"
|
||||
@ -621,8 +620,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -862,11 +861,11 @@ msgstr "Dump er blevet gemt i filen %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
|
||||
"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
|
||||
"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
|
||||
"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
|
||||
"begrænsning."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1826,8 +1825,8 @@ msgstr "Velkommen til %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
|
||||
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
|
||||
@ -4594,8 +4593,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
@ -4822,8 +4822,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
|
||||
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
|
||||
@ -5542,8 +5542,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8053,14 +8053,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
|
||||
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
|
||||
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
|
||||
"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
|
||||
"%s før du fortsætter."
|
||||
"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
|
||||
"s før du fortsætter."
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
|
||||
58
po/de.po
58
po/de.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
|
||||
"Last-Translator: Dominik Geyer <dominik.geyer@gmx.de>\n"
|
||||
"Language-Team: german <de@li.org>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Tabellen-Kommentar"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Spalte"
|
||||
@ -346,8 +345,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage has been deactivated. To find out why "
|
||||
"click %shere%s."
|
||||
msgstr ""
|
||||
"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
|
||||
"%s um herauszufinden warum."
|
||||
"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
|
||||
"s um herauszufinden warum."
|
||||
|
||||
#: db_operations.php:600
|
||||
msgid "Edit or export relational schema"
|
||||
@ -614,11 +613,11 @@ msgstr "Tracking ist nicht aktiviert."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die "
|
||||
"%sDokumentation%s."
|
||||
"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %"
|
||||
"sDokumentation%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -859,11 +858,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
|
||||
"%sDokumentation%s zur Lösung diese Problems."
|
||||
"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
|
||||
"sDokumentation%s zur Lösung diese Problems."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1739,8 +1738,8 @@ msgstr "Willkommen bei %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
|
||||
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
|
||||
@ -4612,8 +4611,9 @@ msgid "Events"
|
||||
msgstr "Ereignisse"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
@ -4818,8 +4818,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
|
||||
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
|
||||
@ -5551,8 +5551,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
|
||||
"XT-Website%s verfügbar."
|
||||
@ -6900,8 +6900,8 @@ msgid ""
|
||||
"author what %s does."
|
||||
msgstr ""
|
||||
"Für diese Umwandlung ist keine Beschreibung verfügbar.<br />Für weitere "
|
||||
"Informationen wenden Sie sich bitte an den Autoren der Funktion ""
|
||||
"%s"."
|
||||
"Informationen wenden Sie sich bitte an den Autoren der Funktion "%"
|
||||
"s"."
|
||||
|
||||
#: libraries/tbl_properties.inc.php:625 tbl_structure.php:636
|
||||
#, php-format
|
||||
@ -7998,8 +7998,8 @@ msgstr "Die gleichnamigen Datenbanken löschen."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-"
|
||||
"Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, "
|
||||
@ -9552,8 +9552,8 @@ msgstr ""
|
||||
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
|
||||
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
|
||||
"Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder "
|
||||
"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
|
||||
"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
|
||||
"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %"
|
||||
"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
|
||||
|
||||
#: setup/lib/index.lib.php:270
|
||||
#, php-format
|
||||
|
||||
62
po/el.po
62
po/el.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 13:51+0200\n"
|
||||
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
|
||||
"Language-Team: greek <el@li.org>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Σχόλια Πίνακα"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Στήλη"
|
||||
@ -614,11 +613,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
|
||||
"%sτεκμηρίωση%s."
|
||||
"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
|
||||
"sτεκμηρίωση%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -854,11 +853,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
|
||||
"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
|
||||
"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
|
||||
"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1722,8 +1721,8 @@ msgstr "Καλωσήρθατε στο %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
|
||||
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
|
||||
@ -4624,8 +4623,9 @@ msgid "Events"
|
||||
msgstr "Συμβάντα"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Όνομα"
|
||||
|
||||
@ -4824,8 +4824,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
|
||||
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
|
||||
@ -5398,8 +5398,8 @@ msgid ""
|
||||
"Documentation and further information about PBMS can be found on %sThe "
|
||||
"PrimeBase Media Streaming home page%s."
|
||||
msgstr ""
|
||||
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην "
|
||||
"%sΙστοσελίδα του PrimeBase Media Streaming%s."
|
||||
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %"
|
||||
"sΙστοσελίδα του PrimeBase Media Streaming%s."
|
||||
|
||||
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
|
||||
msgid "Related Links"
|
||||
@ -5568,11 +5568,11 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην "
|
||||
"%sΙστοσελίδα του PrimeBase XT%s."
|
||||
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %"
|
||||
"sΙστοσελίδα του PrimeBase XT%s."
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
msgid "The PrimeBase XT Blog by Paul McCullagh"
|
||||
@ -7250,8 +7250,8 @@ msgid ""
|
||||
"extended features have been deactivated. To find out why click %shere%s."
|
||||
msgstr ""
|
||||
"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά "
|
||||
"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε "
|
||||
"%sεδώ%s."
|
||||
"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %"
|
||||
"sεδώ%s."
|
||||
|
||||
#: main.php:314
|
||||
msgid ""
|
||||
@ -7999,8 +7999,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
|
||||
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
|
||||
@ -9528,8 +9528,8 @@ msgid ""
|
||||
"(currently %d)."
|
||||
msgstr ""
|
||||
"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα "
|
||||
"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
|
||||
"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
|
||||
"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%"
|
||||
"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
|
||||
|
||||
#: setup/lib/index.lib.php:262
|
||||
#, php-format
|
||||
|
||||
62
po/en_GB.po
62
po/en_GB.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-31 19:28+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: english-gb <en_GB@li.org>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Table comments"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Column"
|
||||
@ -614,11 +613,11 @@ msgstr "Tracking is not active."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -852,11 +851,11 @@ msgstr "Dump has been saved to file %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1707,11 +1706,11 @@ msgstr "Welcome to %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4529,8 +4528,9 @@ msgid "Events"
|
||||
msgstr "Events"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
@ -4729,12 +4729,12 @@ msgstr ", @TABLE@ will become the table name"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5456,11 +5456,11 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
msgid "The PrimeBase XT Blog by Paul McCullagh"
|
||||
@ -7851,13 +7851,13 @@ msgstr "Drop the databases that have the same names as the users."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
|
||||
46
po/es.po
46
po/es.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 19:01+0200\n"
|
||||
"Last-Translator: Matías Bellone <matiasbellone@gmail.com>\n"
|
||||
"Language-Team: spanish <es@li.org>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Comentarios de la tabla"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Columna"
|
||||
@ -618,11 +617,11 @@ msgstr "El seguimiento no está activo."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Esta vista tiene al menos este número de filas. Por favor refiérase a la "
|
||||
"%sdocumentation%s."
|
||||
"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
|
||||
"sdocumentation%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -858,8 +857,8 @@ msgstr "El volcado ha sido guardado al archivo %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
|
||||
"refiérase a %sla documentation%s para hallar modos de superar esta "
|
||||
@ -1729,8 +1728,8 @@ msgstr "Bienvenido a %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"La razón más probable es que usted no haya creado un archivo de "
|
||||
"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
|
||||
@ -4645,8 +4644,9 @@ msgid "Events"
|
||||
msgstr "Eventos"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
@ -4849,8 +4849,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar "
|
||||
"cadenas para formatear el tiempo. Además sucederán las siguientes "
|
||||
@ -5601,8 +5601,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Se puede encontrar documentación y más información sobre PBXT en la %spágina "
|
||||
"inicial de PrimeBase XT%s."
|
||||
@ -7297,8 +7297,8 @@ msgid ""
|
||||
"extended features have been deactivated. To find out why click %shere%s."
|
||||
msgstr ""
|
||||
"El almacenamiento de configuración phpMyAdmin no está completamente "
|
||||
"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
|
||||
"%sPulsa aquí para averiguar por qué%s."
|
||||
"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
|
||||
"sPulsa aquí para averiguar por qué%s."
|
||||
|
||||
#: main.php:314
|
||||
msgid ""
|
||||
@ -8053,8 +8053,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
|
||||
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "
|
||||
|
||||
38
po/et.po
38
po/et.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: estonian <et@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -132,9 +132,8 @@ msgstr "Tabeli kommentaarid"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -633,8 +632,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -883,8 +882,8 @@ msgstr "Väljavõte salvestati faili %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
|
||||
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
|
||||
@ -1835,8 +1834,8 @@ msgstr "Tere tulemast %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid "
|
||||
"kasutada %1$ssetup script%2$s et seadistada."
|
||||
@ -4641,8 +4640,9 @@ msgid "Events"
|
||||
msgstr "Saadetud"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
@ -4869,8 +4869,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada "
|
||||
"sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. "
|
||||
@ -5590,8 +5590,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8101,8 +8101,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges "
|
||||
"tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda "
|
||||
|
||||
38
po/eu.po
38
po/eu.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: basque <eu@li.org>\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -133,9 +133,8 @@ msgstr "Taularen iruzkinak"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -637,8 +636,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -884,8 +883,8 @@ msgstr "Iraulketa %s fitxategian gorde da."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1810,8 +1809,8 @@ msgstr "Ongietorriak %s(e)ra"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4578,8 +4577,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Izena"
|
||||
|
||||
@ -4799,8 +4799,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5487,8 +5487,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7970,8 +7970,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren "
|
||||
"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz "
|
||||
|
||||
54
po/fa.po
54
po/fa.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
|
||||
"Last-Translator: <ahmad_usa2007@yahoo.com>\n"
|
||||
"Language-Team: persian <fa@li.org>\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -132,9 +132,8 @@ msgstr "توضيحات جدول"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "ستون"
|
||||
@ -613,8 +612,8 @@ msgstr "پیگردی فعال نمی باشد."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه "
|
||||
"نمایید."
|
||||
@ -858,8 +857,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1774,8 +1773,8 @@ msgstr "به %s خوشآمديد"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4513,8 +4512,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "اسم"
|
||||
|
||||
@ -4732,8 +4732,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5408,8 +5408,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6658,9 +6658,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
|
||||
"استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت مميز "
|
||||
"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
|
||||
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
|
||||
"يا 'a\\'b')"
|
||||
"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
|
||||
"، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' يا 'a"
|
||||
"\\'b')"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:105
|
||||
msgid ""
|
||||
@ -6695,9 +6695,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
|
||||
"استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت مميز "
|
||||
"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
|
||||
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
|
||||
"يا 'a\\'b')"
|
||||
"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
|
||||
"، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' يا 'a"
|
||||
"\\'b')"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:371
|
||||
msgid "ENUM or SET data too long?"
|
||||
@ -6967,8 +6967,8 @@ msgid ""
|
||||
"this security hole by setting a password for user 'root'."
|
||||
msgstr ""
|
||||
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
|
||||
"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز "
|
||||
"ميشود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
|
||||
"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز ميشود "
|
||||
"، و شما بايد اين حفره امنيتي را ذرست كنيد."
|
||||
|
||||
#: main.php:251
|
||||
msgid ""
|
||||
@ -7768,8 +7768,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
52
po/fi.po
52
po/fi.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
|
||||
"Last-Translator: <asdfsdf@asdfasdfasdf.com>\n"
|
||||
"Language-Team: finnish <fi@li.org>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Taulun kommentit"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Sarake"
|
||||
@ -614,11 +613,11 @@ msgstr "Seuranta ei ole käytössä."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
|
||||
"%sohjeista%s."
|
||||
"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
|
||||
"sohjeista%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -859,8 +858,8 @@ msgstr "Vedos tallennettiin tiedostoon %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
|
||||
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
|
||||
@ -1738,11 +1737,11 @@ msgstr "Tervetuloa, toivottaa %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
|
||||
"%1$sasetusskriptillä%2$s."
|
||||
"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
|
||||
"$sasetusskriptillä%2$s."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4701,8 +4700,9 @@ msgid "Events"
|
||||
msgstr "Tapahtumat"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
@ -4937,8 +4937,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
|
||||
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
|
||||
@ -5699,8 +5699,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8263,8 +8263,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen "
|
||||
"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen "
|
||||
@ -9852,9 +9852,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
65
po/fr.po
65
po/fr.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-31 17:18+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: french <fr@li.org>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -136,9 +136,8 @@ msgstr "Commentaires sur la table"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Colonne"
|
||||
@ -615,11 +614,11 @@ msgstr "Le suivi n'est pas activé."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
|
||||
"%sdocumentation%s."
|
||||
"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %"
|
||||
"sdocumentation%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -856,8 +855,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
|
||||
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
|
||||
@ -1727,8 +1726,8 @@ msgstr "Bienvenue sur %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
|
||||
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
|
||||
@ -4604,8 +4603,9 @@ msgid "Events"
|
||||
msgstr "Événements"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
@ -4807,8 +4807,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
|
||||
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
|
||||
@ -5550,8 +5550,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"La documentation de PBXT et des informations additionnelles sont disponibles "
|
||||
"sur %sle site de PrimeBase XT%s."
|
||||
@ -5702,8 +5702,7 @@ msgstr ""
|
||||
|
||||
#: libraries/export/sql.php:35
|
||||
msgid "Additional custom header comment (\\n splits lines):"
|
||||
msgstr ""
|
||||
"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
|
||||
msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
|
||||
|
||||
#: libraries/export/sql.php:37
|
||||
msgid ""
|
||||
@ -6787,8 +6786,8 @@ msgid ""
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions "
|
||||
"PHP nécessaires ont bien été installées tel que décrit dans la "
|
||||
"%sdocumentation%s."
|
||||
"PHP nécessaires ont bien été installées tel que décrit dans la %"
|
||||
"sdocumentation%s."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
msgid "Table seems to be empty!"
|
||||
@ -7989,8 +7988,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Note: phpMyAdmin obtient la liste des privilèges directement à partir des "
|
||||
"tables MySQL. Le contenu de ces tables peut être différent des privilèges "
|
||||
@ -9421,8 +9420,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant "
|
||||
"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez "
|
||||
"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
|
||||
"%s."
|
||||
"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%"
|
||||
"s."
|
||||
|
||||
#: setup/lib/index.lib.php:252
|
||||
msgid ""
|
||||
@ -9474,8 +9473,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 "
|
||||
"secondes peut causer des interruptions de la session de travail si le "
|
||||
"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
|
||||
"%d)."
|
||||
"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %"
|
||||
"d)."
|
||||
|
||||
#: setup/lib/index.lib.php:262
|
||||
#, php-format
|
||||
@ -9494,8 +9493,8 @@ msgid ""
|
||||
"cookie validity%s must be set to a value less or equal to it."
|
||||
msgstr ""
|
||||
"Si vous utilisez l'authentification cookie et que le paramètre %sLogin "
|
||||
"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity"
|
||||
"%s doit avoir une valeur plus petite ou égale à celui-ci."
|
||||
"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%"
|
||||
"s doit avoir une valeur plus petite ou égale à celui-ci."
|
||||
|
||||
#: setup/lib/index.lib.php:266
|
||||
#, php-format
|
||||
@ -9505,8 +9504,8 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Si vous l'estimez nécessaire, utilisez des paramètres de protection - "
|
||||
"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
|
||||
"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
|
||||
"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
|
||||
"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP "
|
||||
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
|
||||
"compris, sont connectés."
|
||||
|
||||
56
po/gl.po
56
po/gl.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: galician <gl@li.org>\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -136,9 +136,8 @@ msgstr "Comentarios da táboa"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -638,11 +637,11 @@ msgstr "O seguemento non está activado."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
|
||||
"%s."
|
||||
"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
|
||||
"s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -883,11 +882,11 @@ msgstr "Gardouse o volcado no ficheiro %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
|
||||
"%sdocumentación%s para averiguar como evitar este límite."
|
||||
"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
|
||||
"sdocumentación%s para averiguar como evitar este límite."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1861,8 +1860,8 @@ msgstr "Reciba a benvida a %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
|
||||
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
|
||||
@ -4892,8 +4891,9 @@ msgid "Events"
|
||||
msgstr "Acontecementos"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@ -5126,8 +5126,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
|
||||
"utilizar cadeas de formato de hora. Produciranse transformacións en "
|
||||
@ -5896,8 +5896,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7703,8 +7703,8 @@ msgid ""
|
||||
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
|
||||
"%sdocumentation%s."
|
||||
"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
|
||||
"sdocumentation%s."
|
||||
|
||||
#: navigation.php:207 server_databases.php:281 server_synchronize.php:1206
|
||||
msgid "No databases"
|
||||
@ -8459,8 +8459,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas "
|
||||
"de privilexios do MySQL. O contido destas táboas pode diferir dos "
|
||||
@ -10056,9 +10056,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
38
po/he.po
38
po/he.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
|
||||
"Last-Translator: <zippoxer@gmail.com>\n"
|
||||
"Language-Team: hebrew <he@li.org>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -130,9 +130,8 @@ msgstr "הערות טבלה"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -629,8 +628,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -874,8 +873,8 @@ msgstr "הוצאה נשמרה אל קובץ %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1806,8 +1805,8 @@ msgstr "ברוך הבא אל %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4574,8 +4573,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
@ -4797,8 +4797,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5482,8 +5482,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7884,8 +7884,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של "
|
||||
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
|
||||
|
||||
46
po/hi.po
46
po/hi.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-06 09:13+0200\n"
|
||||
"Last-Translator: <manojonemail@gmail.com>\n"
|
||||
"Language-Team: hindi <hi@li.org>\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -134,9 +134,8 @@ msgstr " टेबल टिप्पणि:"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "कोलम"
|
||||
@ -345,8 +344,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage has been deactivated. To find out why "
|
||||
"click %shere%s."
|
||||
msgstr ""
|
||||
"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए "
|
||||
"%shere%s पर क्लिक करें."
|
||||
"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %"
|
||||
"shere%s पर क्लिक करें."
|
||||
|
||||
#: db_operations.php:600
|
||||
msgid "Edit or export relational schema"
|
||||
@ -613,8 +612,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -855,8 +854,8 @@ msgstr "डंप को %s फाइल में सेव किया गय
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
|
||||
"दोकुमेंताशन%s पढ़ें."
|
||||
@ -1719,11 +1718,11 @@ msgstr " %s मे स्वागत है"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
|
||||
"%2$s का उपयोग करें."
|
||||
"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
|
||||
"$s का उपयोग करें."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4442,8 +4441,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "नाम"
|
||||
|
||||
@ -4643,8 +4643,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5300,8 +5300,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7641,8 +7641,8 @@ msgstr "Drop the databases that have the same names as the users."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
50
po/hr.po
50
po/hr.po
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: croatian <hr@li.org>\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -136,9 +136,8 @@ msgstr "Komentari tablice"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -637,8 +636,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
|
||||
|
||||
@ -888,11 +887,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
|
||||
"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
|
||||
"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
|
||||
"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1849,8 +1848,8 @@ msgstr "Dobro došli u %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete "
|
||||
"upotrijebiti naredbu %1$ssetup script%2$s"
|
||||
@ -4656,8 +4655,9 @@ msgid "Events"
|
||||
msgstr "Događaji"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
@ -4887,8 +4887,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
|
||||
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
|
||||
@ -5646,8 +5646,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8169,8 +8169,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL "
|
||||
"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica "
|
||||
@ -10593,8 +10593,8 @@ msgstr "Preimenuj prikaz u"
|
||||
#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
|
||||
#~ "extension. Please check your PHP configuration."
|
||||
#~ msgstr ""
|
||||
#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
|
||||
#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
|
||||
#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
|
||||
#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Couldn't load the iconv or recode extension needed for charset "
|
||||
|
||||
64
po/hu.po
64
po/hu.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
|
||||
"Last-Translator: <slygyor@gmail.com>\n"
|
||||
"Language-Team: hungarian <hu@li.org>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Tábla megjegyzése"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Oszlop"
|
||||
@ -614,11 +613,11 @@ msgstr "Nyomkövetés inaktív."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
|
||||
"%sdokumentációban%s."
|
||||
"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
|
||||
"sdokumentációban%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -854,11 +853,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a "
|
||||
"%sdokumentációban%s a korlátozás feloldása végett."
|
||||
"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
|
||||
"sdokumentációban%s a korlátozás feloldása végett."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1728,11 +1727,11 @@ msgstr "Üdvözli a %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
|
||||
"%1$stelepítőszkripttel%2$s el tudja készíteni."
|
||||
"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
|
||||
"$stelepítőszkripttel%2$s el tudja készíteni."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4601,8 +4600,9 @@ msgid "Events"
|
||||
msgstr "Események"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
@ -4809,8 +4809,8 @@ msgstr ", @TABLE@ lesz a tábla neve"
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, "
|
||||
"vagyis időformázó karakterláncokat használhat. A következő átalakításokra "
|
||||
@ -5554,8 +5554,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6814,8 +6814,8 @@ msgid ""
|
||||
"The SQL validator could not be initialized. Please check if you have "
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
|
||||
"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
|
||||
"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
|
||||
"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
|
||||
"kiterjesztést."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
@ -8120,13 +8120,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL "
|
||||
"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által "
|
||||
"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben "
|
||||
"%stöltse be újra a jogokat%s a folytatás előtt."
|
||||
"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %"
|
||||
"stöltse be újra a jogokat%s a folytatás előtt."
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
@ -9675,9 +9675,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
46
po/id.po
46
po/id.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
|
||||
"Last-Translator: <aris_feryanto@yahoo.com>\n"
|
||||
"Language-Team: indonesian <id@li.org>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Komentar tabel"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kolom"
|
||||
@ -611,11 +610,11 @@ msgstr "Pelacakan tidak aktif."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat "
|
||||
"%sdokumentasi%s"
|
||||
"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %"
|
||||
"sdokumentasi%s"
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -854,11 +853,11 @@ msgstr "Dump (Skema) disimpan pada file %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat "
|
||||
"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
|
||||
"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
|
||||
"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1731,8 +1730,8 @@ msgstr "Selamat Datang di %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup "
|
||||
"script%2$s untuk membuatnya."
|
||||
@ -4499,8 +4498,9 @@ msgid "Events"
|
||||
msgstr "Kejadian"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
@ -4727,8 +4727,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5433,8 +5433,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7950,8 +7950,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari "
|
||||
"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil "
|
||||
|
||||
54
po/it.po
54
po/it.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-25 22:43+0200\n"
|
||||
"Last-Translator: Rouslan Placella <rouslan@placella.com>\n"
|
||||
"Language-Team: italian <it@li.org>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -136,9 +136,8 @@ msgstr "Commenti alla tabella"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Campo"
|
||||
@ -615,8 +614,8 @@ msgstr "Il tracking non è attivo."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Questa vista ha, come minimo, questo numero di righe. Per informazioni "
|
||||
"controlla la %sdocumentazione%s."
|
||||
@ -855,8 +854,8 @@ msgstr "Il dump è stato salvato nel file %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Stai probabilmente cercando di caricare sul server un file troppo grande. "
|
||||
"Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare "
|
||||
@ -1724,8 +1723,8 @@ msgstr "Benvenuto in %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"La ragione di questo è che probabilmente non hai creato alcun file di "
|
||||
"configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno."
|
||||
@ -4627,8 +4626,9 @@ msgid "Events"
|
||||
msgstr "Eventi"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@ -4830,8 +4830,8 @@ msgstr ", il nome della tabella diventerá @TABLE@"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
|
||||
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
|
||||
@ -5571,8 +5571,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile "
|
||||
"su %sPrimeBase XT Home Page%s."
|
||||
@ -7282,8 +7282,8 @@ msgid ""
|
||||
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Sul server è in esecuzione Suhosin. Controlla la documentazione: "
|
||||
"%sdocumentation%s per possibili problemi."
|
||||
"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
|
||||
"sdocumentation%s per possibili problemi."
|
||||
|
||||
#: navigation.php:207 server_databases.php:281 server_synchronize.php:1206
|
||||
msgid "No databases"
|
||||
@ -7996,8 +7996,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella "
|
||||
"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai "
|
||||
@ -9530,10 +9530,10 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - "
|
||||
"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia"
|
||||
"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se "
|
||||
"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
|
||||
"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %"
|
||||
"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. "
|
||||
"Comunque, la protezione a base di IP potrebbe non essere affidabile se il "
|
||||
"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
|
||||
"connessi."
|
||||
|
||||
#: setup/lib/index.lib.php:268
|
||||
@ -9548,8 +9548,8 @@ msgstr ""
|
||||
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
|
||||
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
|
||||
"gli host in uso live. Chiunque che conosce o indovina il tuo URL di "
|
||||
"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
|
||||
"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
|
||||
"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %"
|
||||
"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
|
||||
|
||||
#: setup/lib/index.lib.php:270
|
||||
#, php-format
|
||||
|
||||
51
po/ja.po
51
po/ja.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-31 12:04+0200\n"
|
||||
"Last-Translator: Yuichiro <yuichiro@pop07.odn.ne.jp>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "テーブルのコメント"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "カラム"
|
||||
@ -611,8 +610,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -850,8 +849,8 @@ msgstr "ダンプをファイル %s に保存しました"
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
|
||||
"メント%s をご覧ください"
|
||||
@ -1712,11 +1711,11 @@ msgstr "%s へようこそ"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
|
||||
"ト%2$s を利用して設定ファイルを作成してください"
|
||||
"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
|
||||
"$s を利用して設定ファイルを作成してください"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4556,8 +4555,9 @@ msgid "Events"
|
||||
msgstr "イベント"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "名前"
|
||||
|
||||
@ -4757,8 +4757,8 @@ msgstr "、@TABLE@ はテーブル名に"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用"
|
||||
"することができます。また、埋め込み変数変換も行われます(%3$s変換されま"
|
||||
@ -5483,8 +5483,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ"
|
||||
"ト%sにあります。"
|
||||
@ -7869,8 +7869,8 @@ msgstr "ユーザと同名のデータベースを削除する"
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手"
|
||||
"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの"
|
||||
@ -9349,11 +9349,10 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定"
|
||||
"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ"
|
||||
"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい"
|
||||
"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま"
|
||||
"せん。"
|
||||
"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%"
|
||||
"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し"
|
||||
"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続"
|
||||
"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
|
||||
|
||||
#: setup/lib/index.lib.php:268
|
||||
#, php-format
|
||||
|
||||
64
po/ka.po
64
po/ka.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: georgian <ka@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -134,9 +134,8 @@ msgstr "ცხრილის კომენტარები"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -635,11 +634,11 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -886,11 +885,11 @@ msgstr "Dump has been saved to file %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1859,11 +1858,11 @@ msgstr "მოგესალმებათ %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4835,8 +4834,9 @@ msgid "Events"
|
||||
msgstr "მოვლენები"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
@ -5066,12 +5066,12 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5821,8 +5821,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8377,13 +8377,13 @@ msgstr "Drop the databases that have the same names as the users."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
@ -9913,9 +9913,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
46
po/ko.po
46
po/ko.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
|
||||
"Last-Translator: <cihar@nvyu.net>\n"
|
||||
"Language-Team: korean <ko@li.org>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -134,9 +134,8 @@ msgstr "테이블 설명"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "컬럼명"
|
||||
@ -351,8 +350,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage has been deactivated. To find out why "
|
||||
"click %shere%s."
|
||||
msgstr ""
|
||||
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
|
||||
"%s여기를 클릭%s하십시오."
|
||||
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
|
||||
"s여기를 클릭%s하십시오."
|
||||
|
||||
#: db_operations.php:600
|
||||
msgid "Edit or export relational schema"
|
||||
@ -621,8 +620,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -867,8 +866,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1753,8 +1752,8 @@ msgstr "%s에 오셨습니다"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
|
||||
"일을 생성할 수 있습니다."
|
||||
@ -4519,8 +4518,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
@ -4739,8 +4739,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5422,8 +5422,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7030,8 +7030,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage is not completely configured, some "
|
||||
"extended features have been deactivated. To find out why click %shere%s."
|
||||
msgstr ""
|
||||
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
|
||||
"%s여기를 클릭%s하십시오."
|
||||
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
|
||||
"s여기를 클릭%s하십시오."
|
||||
|
||||
#: main.php:314
|
||||
msgid ""
|
||||
@ -7792,8 +7792,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
56
po/lt.po
56
po/lt.po
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
|
||||
"Last-Translator: Kęstutis <forkik@gmail.com>\n"
|
||||
"Language-Team: lithuanian <lt@li.org>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
|
||||
"100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -135,9 +135,8 @@ msgstr "Lentelės komentarai"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Stulpelis"
|
||||
@ -616,11 +615,11 @@ msgstr "Sekimas yra neaktyvus."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
|
||||
"%sdokumentacijoje%s."
|
||||
"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %"
|
||||
"sdokumentacijoje%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -861,11 +860,11 @@ msgstr "Atvaizdis įrašytas faile %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti "
|
||||
"%sdokumentaciją%s būdams kaip apeiti šį apribojimą."
|
||||
"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
|
||||
"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1735,8 +1734,8 @@ msgstr "Jūs naudojate %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
|
||||
"skriptu%2$s, kad sukurtumėte failą."
|
||||
@ -4531,8 +4530,9 @@ msgid "Events"
|
||||
msgstr "Įvykiai"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Pavadinimas"
|
||||
|
||||
@ -4733,8 +4733,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite "
|
||||
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
|
||||
@ -5421,8 +5421,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7881,8 +7881,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
|
||||
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
|
||||
@ -9311,9 +9311,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
42
po/lv.po
42
po/lv.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: latvian <lv@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -132,9 +132,8 @@ msgstr "Komentārs tabulai"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -633,8 +632,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -880,8 +879,8 @@ msgstr "Damps tika saglabāts failā %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1814,8 +1813,8 @@ msgstr "Laipni lūgti %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4583,8 +4582,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nosaukums"
|
||||
|
||||
@ -4806,8 +4806,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5494,8 +5494,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7977,13 +7977,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL "
|
||||
"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko "
|
||||
"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams "
|
||||
"%spārlādēt privilēģijas%s pirms Jūs turpināt."
|
||||
"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %"
|
||||
"spārlādēt privilēģijas%s pirms Jūs turpināt."
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
|
||||
38
po/mk.po
38
po/mk.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
|
||||
"Last-Translator: <sjanevski@gmail.com>\n"
|
||||
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -133,9 +133,8 @@ msgstr "Коментар на табелата"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -634,8 +633,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -881,8 +880,8 @@ msgstr "Содржината на базата на податоци е сочу
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1815,8 +1814,8 @@ msgstr "%s Добредојдовте"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4598,8 +4597,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
@ -4823,8 +4823,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5531,8 +5531,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8044,8 +8044,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
|
||||
"табелата на привилегии. Содржината на оваа табела табела може да се "
|
||||
|
||||
38
po/ml.po
38
po/ml.po
@ -5,14 +5,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Malayalam <ml@li.org>\n"
|
||||
"Language: ml\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ml\n"
|
||||
"X-Generator: Translate Toolkit 1.7.0\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -131,9 +131,8 @@ msgstr ""
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
@ -608,8 +607,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -843,8 +842,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1674,8 +1673,8 @@ msgstr ""
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4314,8 +4313,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
@ -4512,8 +4512,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5163,8 +5163,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7395,8 +7395,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
50
po/mn.po
50
po/mn.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: mongolian <mn@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -131,9 +131,8 @@ msgstr "Хүснэгтийн тайлбар"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -633,8 +632,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -873,8 +872,8 @@ msgstr "Асгалт %s файлд хадгалагдсан."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1818,11 +1817,11 @@ msgstr "%s-д тавтай морилно уу"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
|
||||
"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
|
||||
"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
|
||||
"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4579,8 +4578,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Нэр"
|
||||
|
||||
@ -4806,12 +4806,12 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
|
||||
"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
|
||||
"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
|
||||
"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
|
||||
"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5521,8 +5521,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7998,8 +7998,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
|
||||
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
|
||||
@ -10220,8 +10220,8 @@ msgstr ""
|
||||
#~ "The additional features for working with linked tables have been "
|
||||
#~ "deactivated. To find out why click %shere%s."
|
||||
#~ msgstr ""
|
||||
#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд"
|
||||
#~ "%s дарж шалгах."
|
||||
#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%"
|
||||
#~ "s дарж шалгах."
|
||||
|
||||
#~ msgid "Ignore duplicate rows"
|
||||
#~ msgstr "Давхардсан мөрүүдийг алгасах"
|
||||
|
||||
38
po/ms.po
38
po/ms.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: malay <ms@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -130,9 +130,8 @@ msgstr "Komen jadual"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -634,8 +633,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -878,8 +877,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1797,8 +1796,8 @@ msgstr "Selamat Datang ke %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4540,8 +4539,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
@ -4760,8 +4760,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5445,8 +5445,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7831,8 +7831,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
52
po/nb.po
52
po/nb.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: norwegian <no@li.org>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -134,9 +134,8 @@ msgstr "Tabellkommentarer"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kolonne"
|
||||
@ -612,8 +611,8 @@ msgstr "Overvåkning er ikke aktiv."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -856,8 +855,8 @@ msgstr "Dump har blitt lagret til fila %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
|
||||
"%s for måter å omgå denne begrensningen."
|
||||
@ -1731,8 +1730,8 @@ msgstr "Velkommen til %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
|
||||
"kanskje bruke %1$ssetup script%2$s for å opprette en."
|
||||
@ -4579,8 +4578,9 @@ msgid "Events"
|
||||
msgstr "Hendelser"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
@ -4784,8 +4784,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
|
||||
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
|
||||
@ -5528,8 +5528,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6815,8 +6815,8 @@ msgid ""
|
||||
"For a list of available transformation options and their MIME type "
|
||||
"transformations, click on %stransformation descriptions%s"
|
||||
msgstr ""
|
||||
"For en liste over tilgjengelige transformasjonsvalg, klikk på "
|
||||
"%stransformasjonsbeskrivelser%s"
|
||||
"For en liste over tilgjengelige transformasjonsvalg, klikk på %"
|
||||
"stransformasjonsbeskrivelser%s"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:143
|
||||
msgid "Transformation options"
|
||||
@ -7994,8 +7994,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL "
|
||||
"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de "
|
||||
@ -9537,8 +9537,8 @@ msgid ""
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Hvis du føler at dette er nødvending, så bruk ekstra "
|
||||
"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id="
|
||||
"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
|
||||
"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1"
|
||||
"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
|
||||
"page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
|
||||
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
|
||||
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
|
||||
@ -9549,9 +9549,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
50
po/nl.po
50
po/nl.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-03-16 20:18+0200\n"
|
||||
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
|
||||
"Language-Team: dutch <nl@li.org>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -134,9 +134,8 @@ msgstr "Tabelopmerkingen"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kolom"
|
||||
@ -613,8 +612,8 @@ msgstr "Tracking is niet actief."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
|
||||
|
||||
@ -859,11 +858,11 @@ msgstr "Dump is bewaard als %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
|
||||
"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
|
||||
"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
|
||||
"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1744,8 +1743,8 @@ msgstr "Welkom op %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
|
||||
"%1$ssetup script%2$s gebruiken om een te maken."
|
||||
@ -4630,8 +4629,9 @@ msgid "Events"
|
||||
msgstr "Gebeurtenissen"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
@ -4837,13 +4837,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
|
||||
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
|
||||
"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ"
|
||||
"%5$s voor meer details."
|
||||
"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5"
|
||||
"$s voor meer details."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5579,11 +5579,11 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Documentatie en meer informatie over PBXT kan gevonden worden op de "
|
||||
"%sPrimeBase XT home pagina%s."
|
||||
"Documentatie en meer informatie over PBXT kan gevonden worden op de %"
|
||||
"sPrimeBase XT home pagina%s."
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
msgid "The PrimeBase XT Blog by Paul McCullagh"
|
||||
@ -8015,8 +8015,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL "
|
||||
"privileges tabel. De content van deze tabel kan verschillen met de rechten "
|
||||
|
||||
@ -8,11 +8,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-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"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@ -134,9 +133,8 @@ msgstr ""
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
@ -611,8 +609,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, possible-php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -846,8 +844,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, possible-php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1677,8 +1675,8 @@ msgstr ""
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, possible-php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4317,8 +4315,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
@ -4515,8 +4514,8 @@ msgstr ""
|
||||
#, possible-php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5166,8 +5165,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, possible-php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7398,8 +7397,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
64
po/pl.po
64
po/pl.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: polish <pl@li.org>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
@ -136,9 +136,8 @@ msgstr "Komentarze tabeli"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kolumna"
|
||||
@ -623,11 +622,11 @@ msgstr "Monitorowanie nie jest aktywne."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
|
||||
"%sdocumentation%s."
|
||||
"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %"
|
||||
"sdocumentation%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -868,8 +867,8 @@ msgstr "Zrzut został zapisany do pliku %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
|
||||
"limitu, proszę zapoznać się z %sdokumenacją%s."
|
||||
@ -1777,8 +1776,8 @@ msgstr "Witamy w %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego "
|
||||
"stworzenia można użyć %1$sskryptu instalacyjnego%2$s."
|
||||
@ -4696,8 +4695,9 @@ msgid "Events"
|
||||
msgstr "Zdarzenia"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
@ -4930,8 +4930,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć "
|
||||
"jej napisów formatujących. Dodatkowo zostaną zastosowane następujące "
|
||||
@ -5695,8 +5695,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6965,8 +6965,8 @@ msgid ""
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
|
||||
"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
|
||||
"%sdokumentacji%s."
|
||||
"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
|
||||
"sdokumentacji%s."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
msgid "Table seems to be empty!"
|
||||
@ -7020,8 +7020,8 @@ msgid ""
|
||||
"For a list of available transformation options and their MIME type "
|
||||
"transformations, click on %stransformation descriptions%s"
|
||||
msgstr ""
|
||||
"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
|
||||
"%sopisy transformacji%s"
|
||||
"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
|
||||
"sopisy transformacji%s"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:143
|
||||
msgid "Transformation options"
|
||||
@ -7505,8 +7505,8 @@ msgid ""
|
||||
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
|
||||
"issues."
|
||||
msgstr ""
|
||||
"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
|
||||
"%s."
|
||||
"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
|
||||
"s."
|
||||
|
||||
#: navigation.php:207 server_databases.php:281 server_synchronize.php:1206
|
||||
msgid "No databases"
|
||||
@ -8258,8 +8258,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień "
|
||||
"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, "
|
||||
@ -9813,8 +9813,8 @@ msgid ""
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień "
|
||||
"bezpieczeństwa — [a@?page=servers&mode=edit&id="
|
||||
"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
|
||||
"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1"
|
||||
"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
|
||||
"page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/"
|
||||
"a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli "
|
||||
"używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników."
|
||||
@ -9825,9 +9825,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
46
po/pt.po
46
po/pt.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
|
||||
"Last-Translator: <efgpinto@gmail.com>\n"
|
||||
"Language-Team: portuguese <pt@li.org>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -134,9 +134,8 @@ msgstr "Comentários da tabela"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Coluna"
|
||||
@ -613,11 +612,11 @@ msgstr "Detecção de Alterações está desactivada."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Esta vista tem número de linhas aproximado. Por favor, consulte a "
|
||||
"%sdocumentação%s."
|
||||
"Esta vista tem número de linhas aproximado. Por favor, consulte a %"
|
||||
"sdocumentação%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -858,8 +857,8 @@ msgstr "O Dump foi gravado para o ficheiro %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por "
|
||||
"favor reveja a %sdocumentação%s para encontrar formas de contornar este "
|
||||
@ -1787,11 +1786,11 @@ msgstr "Bemvindo ao %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script"
|
||||
"%2$s pode ser utilizado para criar um."
|
||||
"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%"
|
||||
"2$s pode ser utilizado para criar um."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4566,8 +4565,9 @@ msgid "Events"
|
||||
msgstr "Enviado"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@ -4788,8 +4788,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5476,8 +5476,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7899,8 +7899,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da "
|
||||
"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos "
|
||||
|
||||
42
po/pt_BR.po
42
po/pt_BR.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-14 17:44+0200\n"
|
||||
"Last-Translator: <vitorpc.18@gmail.com>\n"
|
||||
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Comentários da tabela"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Coluna"
|
||||
@ -616,11 +615,11 @@ msgstr "Rastreamento não está ativo."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a "
|
||||
"%sdocumentação%s."
|
||||
"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %"
|
||||
"sdocumentação%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
|
||||
@ -860,8 +859,8 @@ msgstr "Dump foi salvo no arquivo %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
|
||||
"na %sdocumentation%s para burlar esses limites."
|
||||
@ -1769,8 +1768,8 @@ msgstr "Bem vindo ao %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"A provável razão para isso é que você não criou o arquivo de configuração. "
|
||||
"Você deve usar o %1$ssetup script%2$s para criar um."
|
||||
@ -4544,8 +4543,9 @@ msgid "Events"
|
||||
msgstr "Eventos"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@ -4768,8 +4768,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
|
||||
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
|
||||
@ -5491,8 +5491,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8018,8 +8018,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela "
|
||||
"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos "
|
||||
|
||||
46
po/ro.po
46
po/ro.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: romanian <ro@li.org>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2);;\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
@ -136,9 +136,8 @@ msgstr "Comentarii tabel"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -637,8 +636,8 @@ msgstr "Monitorizarea nu este activată"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
|
||||
|
||||
@ -888,11 +887,11 @@ msgstr "Copia a fost salvată în fișierul %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la "
|
||||
"%sdocumentație%s pentru căi de ocolire a acestei limite."
|
||||
"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
|
||||
"sdocumentație%s pentru căi de ocolire a acestei limite."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1841,8 +1840,8 @@ msgstr "Bine ați venit la %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
|
||||
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
|
||||
@ -4658,8 +4657,9 @@ msgid "Events"
|
||||
msgstr "Evenimente"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
@ -4888,12 +4888,12 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5644,8 +5644,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8177,8 +8177,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de "
|
||||
"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. "
|
||||
|
||||
54
po/ru.po
54
po/ru.po
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-06-01 22:34+0200\n"
|
||||
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
|
||||
"Language-Team: russian <ru@li.org>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -136,9 +136,8 @@ msgstr "Комментарий к таблице"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Поле"
|
||||
@ -619,8 +618,8 @@ msgstr "Слежение выключено."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Данное представление имеет, по меньшей мере, указанное количество строк. "
|
||||
"Пожалуйста, обратитесь к %sдокументации%s."
|
||||
@ -858,8 +857,8 @@ msgstr "Дамп был сохранен в файл %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
|
||||
"ограничения описаны в %sдокументации%s."
|
||||
@ -1722,8 +1721,8 @@ msgstr "Добро пожаловать в %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
|
||||
"можете воспользоваться %1$sсценарием установки%2$s."
|
||||
@ -4600,8 +4599,9 @@ msgid "Events"
|
||||
msgstr "События"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Имя"
|
||||
|
||||
@ -4805,8 +4805,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
|
||||
"вставка текущей даты и времени. Дополнительно могут быть использованы "
|
||||
@ -5541,8 +5541,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице "
|
||||
"PrimeBase XT%s."
|
||||
@ -7955,8 +7955,8 @@ msgstr "Удалить базы данных, имена которых совп
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях "
|
||||
"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может "
|
||||
@ -9071,8 +9071,8 @@ msgid ""
|
||||
"<b>Query statistics</b>: Since its startup, %s queries have been sent to the "
|
||||
"server."
|
||||
msgstr ""
|
||||
"Статистика запросов: со времени запуска, на сервер было отослано запросов - "
|
||||
"%s."
|
||||
"Статистика запросов: со времени запуска, на сервер было отослано запросов - %"
|
||||
"s."
|
||||
|
||||
#: server_status.php:626
|
||||
msgid "per minute"
|
||||
@ -9491,8 +9491,8 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"При необходимости используйте дополнительные настройки безопасности - "
|
||||
"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
|
||||
"При необходимости используйте дополнительные настройки безопасности - %"
|
||||
"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
|
||||
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
|
||||
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
|
||||
|
||||
@ -10251,8 +10251,8 @@ msgid ""
|
||||
"No themes support; please check your configuration and/or your themes in "
|
||||
"directory %s."
|
||||
msgstr ""
|
||||
"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге "
|
||||
"%s."
|
||||
"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %"
|
||||
"s."
|
||||
|
||||
#: themes.php:41
|
||||
msgid "Get more themes!"
|
||||
|
||||
50
po/si.po
50
po/si.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-13 17:05+0200\n"
|
||||
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
|
||||
"Language-Team: sinhala <si@li.org>\n"
|
||||
"Language: si\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: si\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -132,9 +132,8 @@ msgstr "වගු විස්තර"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "තීර"
|
||||
@ -611,8 +610,8 @@ msgstr "අවධානය අක්රීයයි."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න."
|
||||
|
||||
@ -854,11 +853,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1726,8 +1725,8 @@ msgstr "%s වෙත ආයුබෝවන්"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Probably reason of this is that you did not create configuration file. You "
|
||||
"might want to use %1$ssetup script%2$s to create one."
|
||||
@ -4427,8 +4426,9 @@ msgid "Events"
|
||||
msgstr "සිද්ධි"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "නම"
|
||||
|
||||
@ -4637,12 +4637,12 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5336,8 +5336,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6864,8 +6864,8 @@ msgid ""
|
||||
"Your preferences will be saved for current session only. Storing them "
|
||||
"permanently requires %sphpMyAdmin configuration storage%s."
|
||||
msgstr ""
|
||||
"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා "
|
||||
"%sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
|
||||
"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %"
|
||||
"sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
|
||||
|
||||
#: libraries/user_preferences.lib.php:142
|
||||
msgid "Could not save configuration"
|
||||
@ -7758,8 +7758,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම්
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්රසාද ලබාගනුයේ MySQL හි වරප්රසාද වගුවෙනි. "
|
||||
"සේවාදායකයේ වරප්රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්රසාද වලට "
|
||||
|
||||
50
po/sk.po
50
po/sk.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-30 13:03+0200\n"
|
||||
"Last-Translator: Martin Lacina <martin@whistler.sk>\n"
|
||||
"Language-Team: slovak <sk@li.org>\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Komentár k tabuľke"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Stĺpce"
|
||||
@ -618,8 +617,8 @@ msgstr "Sledovanie nie je aktívne."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
|
||||
|
||||
@ -856,8 +855,8 @@ msgstr "Výpis bol uložený do súboru %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
|
||||
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
|
||||
@ -1724,8 +1723,8 @@ msgstr "Vitajte v %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
|
||||
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
|
||||
@ -4540,8 +4539,9 @@ msgid "Events"
|
||||
msgstr "Udalosti"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Názov"
|
||||
|
||||
@ -4741,8 +4741,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
|
||||
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
|
||||
@ -5425,8 +5425,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6618,8 +6618,8 @@ msgid ""
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
|
||||
"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
|
||||
"%sdocumentation%s."
|
||||
"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
|
||||
"sdocumentation%s."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
msgid "Table seems to be empty!"
|
||||
@ -7768,13 +7768,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. "
|
||||
"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli "
|
||||
"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať "
|
||||
"%sznovunačítanie práv%s predtým ako budete pokračovať."
|
||||
"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %"
|
||||
"sznovunačítanie práv%s predtým ako budete pokračovať."
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
@ -10095,8 +10095,8 @@ msgstr "Premenovať pohľad na"
|
||||
|
||||
#~ msgid "Imported file compression will be automatically detected from: %s"
|
||||
#~ msgstr ""
|
||||
#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: "
|
||||
#~ "%s"
|
||||
#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %"
|
||||
#~ "s"
|
||||
|
||||
#~ msgid "Add into comments"
|
||||
#~ msgstr "Pridať do komentárov"
|
||||
|
||||
38
po/sl.po
38
po/sl.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-06-01 23:43+0200\n"
|
||||
"Last-Translator: Domen <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"
|
||||
"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.5\n"
|
||||
@ -135,9 +135,8 @@ msgstr "Pripomba tabele"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Stolpec"
|
||||
@ -620,8 +619,8 @@ msgstr "Sledenje ni aktivno."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -857,8 +856,8 @@ msgstr "Dump je shranjen v datoteko %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
|
||||
"%sdokumentacijo%s za načine, kako obiti to omejitev."
|
||||
@ -1720,8 +1719,8 @@ msgstr "Dobrodošli v %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
|
||||
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
|
||||
@ -4565,8 +4564,9 @@ msgid "Events"
|
||||
msgstr "Dogodki"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
@ -4768,8 +4768,8 @@ msgstr ", @TABLE@ bo postalo ime tabele"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
|
||||
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
|
||||
@ -5500,8 +5500,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači "
|
||||
"strani PrimeBase XT%s."
|
||||
@ -7909,8 +7909,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel "
|
||||
"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki "
|
||||
|
||||
38
po/sq.po
38
po/sq.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: albanian <sq@li.org>\n"
|
||||
"Language: sq\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -133,9 +133,8 @@ msgstr "Komentet e tabelës"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -634,8 +633,8 @@ msgstr "Gjurmimi nuk është aktiv."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -882,8 +881,8 @@ msgstr "Dump u ruajt tek file %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1815,8 +1814,8 @@ msgstr "Mirësevini tek %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4586,8 +4585,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Emri"
|
||||
|
||||
@ -4807,8 +4807,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5495,8 +5495,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7988,8 +7988,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e "
|
||||
"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të "
|
||||
|
||||
46
po/sr.po
46
po/sr.po
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
|
||||
"Last-Translator: <theranchcowboy@googlemail.com>\n"
|
||||
"Language-Team: serbian_cyrillic <sr@li.org>\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -134,9 +134,8 @@ msgstr "Коментари табеле"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Колона"
|
||||
@ -631,8 +630,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -881,11 +880,11 @@ msgstr "Садржај базе је сачуван у датотеку %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
|
||||
"%sдокументацију%s за начине превазилажења овог ограничења."
|
||||
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
|
||||
"sдокументацију%s за начине превазилажења овог ограничења."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1836,8 +1835,8 @@ msgstr "Добродошли на %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
|
||||
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
|
||||
@ -4642,8 +4641,9 @@ msgid "Events"
|
||||
msgstr "Догађаји"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
@ -4873,8 +4873,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
|
||||
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
|
||||
@ -5596,8 +5596,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8111,8 +8111,8 @@ msgstr "Одбаци базе које се зову исто као корис
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела "
|
||||
"привилегија. Садржај ове табеле може се разликовати од привилегија које "
|
||||
|
||||
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
|
||||
"Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n"
|
||||
"Language-Team: serbian_latin <sr@latin@li.org>\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -136,9 +136,8 @@ msgstr "Komentari tabele"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kolona"
|
||||
@ -625,8 +624,8 @@ msgstr "Praćenje nije aktivno."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -875,11 +874,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
|
||||
"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
|
||||
"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
|
||||
"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1830,8 +1829,8 @@ msgstr "Dobrodošli na %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
|
||||
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
|
||||
@ -4635,8 +4634,9 @@ msgid "Events"
|
||||
msgstr "Događaji"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
@ -4866,8 +4866,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
|
||||
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
|
||||
@ -5589,8 +5589,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8100,8 +8100,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
|
||||
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
|
||||
|
||||
54
po/sv.po
54
po/sv.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-30 20:24+0200\n"
|
||||
"Last-Translator: <stefan@inkopsforum.se>\n"
|
||||
"Language-Team: swedish <sv@li.org>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Tabellkommentarer"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Kolumn"
|
||||
@ -613,8 +612,8 @@ msgstr "Spårning är inte aktiv."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -850,8 +849,8 @@ msgstr "SQL-satserna har sparats till filen %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
|
||||
"för att gå runt denna begränsning."
|
||||
@ -1711,11 +1710,11 @@ msgstr "Välkommen till %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda "
|
||||
"%1$suppsättningsskript%2$s för att skapa denna."
|
||||
"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1"
|
||||
"$suppsättningsskript%2$s för att skapa denna."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4554,8 +4553,9 @@ msgid "Events"
|
||||
msgstr "Händelser"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
@ -4754,8 +4754,8 @@ msgstr ", @TABLE@ blir tabellnamnet"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med "
|
||||
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
|
||||
@ -5480,11 +5480,11 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page"
|
||||
"%s."
|
||||
"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%"
|
||||
"s."
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
msgid "The PrimeBase XT Blog by Paul McCullagh"
|
||||
@ -7167,8 +7167,8 @@ msgid ""
|
||||
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
|
||||
"This may cause unpredictable behavior."
|
||||
msgstr ""
|
||||
"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version "
|
||||
"%s. Detta kan orsaka oförutsägbara beteenden."
|
||||
"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
|
||||
"s. Detta kan orsaka oförutsägbara beteenden."
|
||||
|
||||
#: main.php:341
|
||||
#, php-format
|
||||
@ -7884,8 +7884,8 @@ msgstr "Ta bort databaserna med samma namn som användarna."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s "
|
||||
"privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från "
|
||||
@ -9379,8 +9379,8 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - "
|
||||
"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
|
||||
"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %"
|
||||
"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
|
||||
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
|
||||
"tusentals användare, inklusive dig, är anslutna till"
|
||||
|
||||
|
||||
38
po/ta.po
38
po/ta.po
@ -6,14 +6,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-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"
|
||||
"Language: ta\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -133,9 +133,8 @@ msgstr ""
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
@ -614,8 +613,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -851,8 +850,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1732,8 +1731,8 @@ msgstr ""
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s "
|
||||
"பயன்படுத்தலாம்"
|
||||
@ -4389,8 +4388,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
@ -4587,8 +4587,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5240,8 +5240,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7487,8 +7487,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
38
po/te.po
38
po/te.po
@ -6,14 +6,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
|
||||
"Last-Translator: <veeven@gmail.com>\n"
|
||||
"Language-Team: Telugu <te@li.org>\n"
|
||||
"Language: te\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: te\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "పట్టిక వ్యాఖ్యలు"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Command"
|
||||
@ -622,8 +621,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
@ -863,8 +862,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1731,8 +1730,8 @@ msgstr "%sకి స్వాగతం"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4408,8 +4407,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "పేరు"
|
||||
|
||||
@ -4612,8 +4612,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5273,8 +5273,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7568,8 +7568,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
42
po/th.po
42
po/th.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: thai <th@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: \n"
|
||||
"X-Generator: Translate Toolkit 1.5.3\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -131,9 +131,8 @@ msgstr "หมายเหตุของตาราง"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -620,8 +619,8 @@ msgstr "หยุดการติดตามแล้ว"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -860,8 +859,8 @@ msgstr ""
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1789,8 +1788,8 @@ msgstr "%s ยินดีต้อนรับ"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4551,8 +4550,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "ชื่อ"
|
||||
|
||||
@ -4771,8 +4771,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5460,8 +5460,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7868,8 +7868,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
@ -10035,8 +10035,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
|
||||
#~ "The additional features for working with linked tables have been "
|
||||
#~ "deactivated. To find out why click %shere%s."
|
||||
#~ msgstr ""
|
||||
#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere"
|
||||
#~ "%s"
|
||||
#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%"
|
||||
#~ "s"
|
||||
|
||||
#~ msgid "No tables"
|
||||
#~ msgstr "ไม่มีตาราง"
|
||||
|
||||
52
po/tr.po
52
po/tr.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 21:59+0200\n"
|
||||
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
|
||||
"Language-Team: turkish <tr@li.org>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Tablo yorumları"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Sütun"
|
||||
@ -611,8 +610,8 @@ msgstr "İzleme aktif değil."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
|
||||
|
||||
@ -849,8 +848,8 @@ msgstr "Döküm, %s dosyasına kaydedildi."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
|
||||
"bulmak için %sbelgeden%s yararlanın."
|
||||
@ -1224,8 +1223,8 @@ msgid ""
|
||||
"A newer version of phpMyAdmin is available and you should consider "
|
||||
"upgrading. The newest version is %s, released on %s."
|
||||
msgstr ""
|
||||
"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
|
||||
"%s, %s tarihinde yayınlandı."
|
||||
"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
|
||||
"s, %s tarihinde yayınlandı."
|
||||
|
||||
#. l10n: Latest available phpMyAdmin version
|
||||
#: js/messages.php:128
|
||||
@ -1711,8 +1710,8 @@ msgstr "%s'e Hoş Geldiniz"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
|
||||
"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz."
|
||||
@ -4586,8 +4585,9 @@ msgid "Events"
|
||||
msgstr "Olaylar"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
@ -4789,8 +4789,8 @@ msgstr ", @TABLE@ tablo adı olacaktır"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
|
||||
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler "
|
||||
@ -5523,8 +5523,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
"%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi "
|
||||
"bulunabilir."
|
||||
@ -7937,8 +7937,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki "
|
||||
"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse "
|
||||
@ -9437,9 +9437,9 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- "
|
||||
"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi"
|
||||
"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
|
||||
"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %"
|
||||
"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. "
|
||||
"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
|
||||
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
|
||||
|
||||
#: setup/lib/index.lib.php:268
|
||||
@ -9454,8 +9454,8 @@ msgstr ""
|
||||
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
|
||||
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
|
||||
"anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya "
|
||||
"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. "
|
||||
"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
|
||||
"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %"
|
||||
"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
|
||||
"kbd] olarak ayarlayın."
|
||||
|
||||
#: setup/lib/index.lib.php:270
|
||||
|
||||
42
po/tt.po
42
po/tt.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: tatarish <tt@li.org>\n"
|
||||
"Language: tt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tt\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -133,9 +133,8 @@ msgstr "Tüşämä açıqlaması"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -631,8 +630,8 @@ msgstr ""
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -882,8 +881,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1820,8 +1819,8 @@ msgstr "%s siña İsäñme di"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4617,8 +4616,9 @@ msgid "Events"
|
||||
msgstr "Cibärelde"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
@ -4842,8 +4842,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5549,8 +5549,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6798,8 +6798,8 @@ msgid ""
|
||||
"The SQL validator could not be initialized. Please check if you have "
|
||||
"installed the necessary PHP extensions as described in the %sdocumentation%s."
|
||||
msgstr ""
|
||||
"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
|
||||
"%squllanmada%s uqıp bula."
|
||||
"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %"
|
||||
"squllanmada%s uqıp bula."
|
||||
|
||||
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
|
||||
msgid "Table seems to be empty!"
|
||||
@ -8036,8 +8036,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server "
|
||||
"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege "
|
||||
|
||||
50
po/ug.po
50
po/ug.po
@ -6,14 +6,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
|
||||
"Last-Translator: <gheni@yahoo.cn>\n"
|
||||
"Language-Team: Uyghur <ug@li.org>\n"
|
||||
"Language: ug\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ug\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "جەدۋەل ئىزاھى"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "سۆزلەم"
|
||||
@ -346,8 +345,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage has been deactivated. To find out why "
|
||||
"click %shere%s."
|
||||
msgstr ""
|
||||
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
|
||||
"%sبۇ يەرنى كۆرۈڭ%s."
|
||||
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
|
||||
"sبۇ يەرنى كۆرۈڭ%s."
|
||||
|
||||
#: db_operations.php:600
|
||||
#, fuzzy
|
||||
@ -616,8 +615,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -855,8 +854,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
|
||||
"چارىسىنى كۆرۈڭ."
|
||||
@ -1748,11 +1747,11 @@ msgstr "%s خۇش كەلدىڭىز"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
msgid ""
|
||||
@ -4449,8 +4448,9 @@ msgid "Events"
|
||||
msgstr "ھادىسە"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "ئىسمى"
|
||||
|
||||
@ -4670,8 +4670,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5351,8 +5351,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6929,8 +6929,8 @@ msgid ""
|
||||
"The phpMyAdmin configuration storage is not completely configured, some "
|
||||
"extended features have been deactivated. To find out why click %shere%s."
|
||||
msgstr ""
|
||||
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
|
||||
"%sبۇ يەرنى كۆرۈڭ%s."
|
||||
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
|
||||
"sبۇ يەرنى كۆرۈڭ%s."
|
||||
|
||||
#: main.php:314
|
||||
msgid ""
|
||||
@ -7666,8 +7666,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
46
po/uk.po
46
po/uk.po
@ -3,16 +3,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-12-28 22:26+0200\n"
|
||||
"Last-Translator: Olexiy Zagorskyi <zalex_ua@i.ua>\n"
|
||||
"Language-Team: ukrainian <uk@li.org>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -134,9 +134,8 @@ msgstr "Коментар до таблиці"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "Стовпчик"
|
||||
@ -616,8 +615,8 @@ msgstr "Трекінг не активний."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -857,8 +856,8 @@ msgstr "Dump збережено у файл %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1700,8 +1699,8 @@ msgstr "Ласкаво просимо до %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:115
|
||||
@ -4363,8 +4362,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Назва"
|
||||
|
||||
@ -4563,8 +4563,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5238,8 +5238,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -6519,8 +6519,8 @@ msgid ""
|
||||
"For a list of available transformation options and their MIME type "
|
||||
"transformations, click on %stransformation descriptions%s"
|
||||
msgstr ""
|
||||
"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
|
||||
"%sописи перетворень%s"
|
||||
"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
|
||||
"sописи перетворень%s"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:143
|
||||
msgid "Transformation options"
|
||||
@ -7666,8 +7666,8 @@ msgstr "Усунути бази даних, які мають такі ж наз
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав "
|
||||
"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
|
||||
|
||||
50
po/ur.po
50
po/ur.po
@ -6,14 +6,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
|
||||
"Last-Translator: Mehbooob Khan <mehboobbugti@gmail.com>\n"
|
||||
"Language-Team: Urdu <ur@li.org>\n"
|
||||
"Language: ur\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ur\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -138,9 +138,8 @@ msgstr "جدول تبصرے"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Command"
|
||||
@ -620,8 +619,8 @@ msgstr "کھوج غیر فعال ہے۔"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
|
||||
|
||||
@ -862,11 +861,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔"
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
|
||||
"%sdocumentation%s دیکھیں۔"
|
||||
"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
|
||||
"sdocumentation%s دیکھیں۔"
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1242,8 +1241,8 @@ msgid ""
|
||||
"A newer version of phpMyAdmin is available and you should consider "
|
||||
"upgrading. The newest version is %s, released on %s."
|
||||
msgstr ""
|
||||
"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ "
|
||||
"%s, جاری کیا گیا %s."
|
||||
"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %"
|
||||
"s, جاری کیا گیا %s."
|
||||
|
||||
#. l10n: Latest available phpMyAdmin version
|
||||
#: js/messages.php:128
|
||||
@ -1732,8 +1731,8 @@ msgstr "%s میں خوش آمدید"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو "
|
||||
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
|
||||
@ -1953,8 +1952,8 @@ msgstr ""
|
||||
"phpMyAdmin آپ کی تشکیل مسل مطالعہ نہیں کرسکا!<br />یہ اس لیے بھی ہوسکتا ہے "
|
||||
"اگر PHP کو کوئی تجزیاتی نقص ملا یا PHP کو مسل نہیں ملا۔<br />نیچے دیے گئے "
|
||||
"ربط سے تشکیل مسل کوبراہ راست استعمال کریں اور وصول ہونے والے PHP نقص "
|
||||
"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا ہے۔"
|
||||
"<br />اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔"
|
||||
"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا "
|
||||
"ہے۔<br />اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔"
|
||||
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
@ -4492,8 +4491,9 @@ msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
@ -4702,8 +4702,8 @@ msgstr ""
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
@ -5361,8 +5361,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7654,8 +7654,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
|
||||
#: server_privileges.php:1764
|
||||
|
||||
64
po/uz.po
64
po/uz.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: uzbek_cyrillic <uz@li.org>\n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: uz\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -134,9 +134,8 @@ msgstr "Жадвал изоҳи"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -636,8 +635,8 @@ msgstr "Кузатиш фаол эмас."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
|
||||
"учун %sдокументацияга%s қаранг."
|
||||
@ -881,11 +880,11 @@ msgstr "Дамп \"%s\" файлида сақланди."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
|
||||
"%sдокументацияда%s келтирилган."
|
||||
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
|
||||
"sдокументацияда%s келтирилган."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
@ -1864,8 +1863,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
|
||||
"сценарийсидан%2$s фойдаланишингиз мумкин."
|
||||
@ -4173,8 +4172,8 @@ msgstr "\"config\" аутентификация усули пароли"
|
||||
msgid ""
|
||||
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
|
||||
msgstr ""
|
||||
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
|
||||
"[kbd]\"pma_pdf_pages\"[/kbd]"
|
||||
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
|
||||
"\"pma_pdf_pages\"[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:402
|
||||
msgid "PDF schema: pages table"
|
||||
@ -4282,8 +4281,8 @@ msgstr "SSL уланишдан фойдаланиш"
|
||||
msgid ""
|
||||
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
|
||||
msgstr ""
|
||||
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
|
||||
"[kbd]\"pma_table_coords\"[/kbd]"
|
||||
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
|
||||
"\"pma_table_coords\"[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:421
|
||||
msgid "PDF schema: table coordinates"
|
||||
@ -4890,8 +4889,9 @@ msgid "Events"
|
||||
msgstr "Ҳодисалар"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Номи"
|
||||
|
||||
@ -5127,12 +5127,12 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
|
||||
"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
|
||||
"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
|
||||
"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
|
||||
"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
@ -5893,8 +5893,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8482,8 +8482,8 @@ msgstr "Фойдаланувчилар номлари билан аталган
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни "
|
||||
"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги "
|
||||
@ -9244,8 +9244,8 @@ msgstr "Очиқ файллар сони."
|
||||
#: server_status.php:121
|
||||
msgid "The number of streams that are open (used mainly for logging)."
|
||||
msgstr ""
|
||||
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб \"fopen"
|
||||
"()\" функцияси ёрдамида очилган файлга айтилади."
|
||||
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб \"fopen()"
|
||||
"\" функцияси ёрдамида очилган файлга айтилади."
|
||||
|
||||
#: server_status.php:122
|
||||
msgid "The number of tables that are open."
|
||||
@ -10074,9 +10074,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
|
||||
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
|
||||
"Language: uz@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: uz@latin\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.1\n"
|
||||
|
||||
@ -135,9 +135,8 @@ msgstr "Jadval izohi"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
#, fuzzy
|
||||
#| msgid "Column names"
|
||||
@ -638,8 +637,8 @@ msgstr "Kuzatish faol emas."
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr ""
|
||||
"Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
|
||||
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
|
||||
@ -883,8 +882,8 @@ msgstr "Damp \"%s\" faylida saqlandi."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
|
||||
"usullari %sdokumentatsiyada%s keltirilgan."
|
||||
@ -1870,8 +1869,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish "
|
||||
"ssenariysidan%2$s foydalanishingiz mumkin."
|
||||
@ -4096,9 +4095,9 @@ msgid ""
|
||||
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
|
||||
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
|
||||
msgstr ""
|
||||
"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
|
||||
"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
|
||||
"com/19588]\"MySQL Bugs\"[/a]larga qarang"
|
||||
"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
|
||||
"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
|
||||
"larga qarang"
|
||||
|
||||
#: libraries/config/messages.inc.php:385
|
||||
msgid "Disable use of INFORMATION_SCHEMA"
|
||||
@ -4188,8 +4187,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
|
||||
msgid ""
|
||||
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
|
||||
msgstr ""
|
||||
"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
|
||||
"[kbd]\"pma_pdf_pages\"[/kbd]"
|
||||
"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]"
|
||||
"\"pma_pdf_pages\"[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:402
|
||||
msgid "PDF schema: pages table"
|
||||
@ -4203,8 +4202,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. "
|
||||
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
|
||||
"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
|
||||
"[kbd]\"phpmyadmin\"[/kbd]"
|
||||
"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]"
|
||||
"\"phpmyadmin\"[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:404
|
||||
#, fuzzy
|
||||
@ -4297,8 +4296,8 @@ msgstr "SSL ulanishdan foydalanish"
|
||||
msgid ""
|
||||
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
|
||||
msgstr ""
|
||||
"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
|
||||
"[kbd]\"pma_table_coords\"[/kbd]"
|
||||
"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
|
||||
"\"pma_table_coords\"[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:421
|
||||
msgid "PDF schema: table coordinates"
|
||||
@ -4911,8 +4910,9 @@ msgid "Events"
|
||||
msgstr "Hodisalar"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "Nomi"
|
||||
|
||||
@ -4953,8 +4953,8 @@ msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr ""
|
||||
"Taxminiy bo‘lishi mumkin. [a@./Documentation."
|
||||
"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
|
||||
"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
|
||||
"\"FAQ 3.11\"[/a]ga qarang"
|
||||
|
||||
#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
|
||||
msgid "Connection for controluser as defined in your configuration failed."
|
||||
@ -5148,8 +5148,8 @@ msgstr ""
|
||||
#| "happen: %3$s. Other text will be kept as is."
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
|
||||
"hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar "
|
||||
@ -5919,8 +5919,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -8526,8 +8526,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
|
||||
"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
|
||||
@ -10136,9 +10136,9 @@ msgstr ""
|
||||
#| "You set the [kbd]config[/kbd] authentication type and included username "
|
||||
#| "and password for auto-login, which is not a desirable option for live "
|
||||
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
|
||||
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
|
||||
#| "[/kbd]."
|
||||
#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
|
||||
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
|
||||
#| "kbd]."
|
||||
msgid ""
|
||||
"You set the [kbd]config[/kbd] authentication type and included username and "
|
||||
"password for auto-login, which is not a desirable option for live hosts. "
|
||||
@ -10152,9 +10152,9 @@ msgstr ""
|
||||
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
|
||||
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
|
||||
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
|
||||
"oshirishi mumkin. Server [a@?page=servers&mode=edit&id="
|
||||
"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
|
||||
"[/kbd] deb belgilash tavsiya etiladi."
|
||||
"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1"
|
||||
"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
|
||||
"kbd] deb belgilash tavsiya etiladi."
|
||||
|
||||
#: setup/lib/index.lib.php:270
|
||||
#, fuzzy, php-format
|
||||
@ -10333,8 +10333,8 @@ msgid ""
|
||||
"The result of this query can't be used for a chart. See [a@./Documentation."
|
||||
"html#faq6_29@Documentation]FAQ 6.29[/a]"
|
||||
msgstr ""
|
||||
"Taxminiy bo‘lishi mumkin. [a@./Documentation."
|
||||
"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
|
||||
"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
|
||||
"\"FAQ 3.11\"[/a]ga qarang"
|
||||
|
||||
#: tbl_chart.php:90
|
||||
msgid "Width"
|
||||
|
||||
42
po/zh_CN.po
42
po/zh_CN.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-30 05:47+0200\n"
|
||||
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
|
||||
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -132,9 +132,8 @@ msgstr "表注释"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "字段"
|
||||
@ -606,8 +605,8 @@ msgstr "追踪已禁用。"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "该视图最少包含的行数,参见%s文档%s。"
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -841,8 +840,8 @@ msgstr "转存已经保存到文件 %s 中。"
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1684,8 +1683,8 @@ msgstr "欢迎使用 %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
|
||||
|
||||
@ -4425,8 +4424,9 @@ msgid "Events"
|
||||
msgstr "事件"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "名字"
|
||||
|
||||
@ -4624,8 +4624,8 @@ msgstr ",@TABLE@ 将变成数据表名"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
|
||||
"列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。"
|
||||
@ -5309,8 +5309,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。"
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7624,12 +7624,12 @@ msgstr "删除与用户同名的数据库。"
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容"
|
||||
"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权"
|
||||
"限%s。"
|
||||
"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
|
||||
"s。"
|
||||
|
||||
#: server_privileges.php:1764
|
||||
msgid "The selected user was not found in the privilege table."
|
||||
|
||||
38
po/zh_TW.po
38
po/zh_TW.po
@ -2,14 +2,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:48+0200\n"
|
||||
"POT-Creation-Date: 2011-06-02 11:25-0400\n"
|
||||
"PO-Revision-Date: 2011-05-30 04:51+0200\n"
|
||||
"Last-Translator: <joehorn@gmail.com>\n"
|
||||
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -130,9 +130,8 @@ msgstr "表註釋"
|
||||
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
|
||||
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
|
||||
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
|
||||
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187
|
||||
#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112
|
||||
#: tbl_tracking.php:266 tbl_tracking.php:317
|
||||
msgid "Column"
|
||||
msgstr "欄位"
|
||||
@ -604,8 +603,8 @@ msgstr "追蹤已停用"
|
||||
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。"
|
||||
|
||||
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
|
||||
@ -839,8 +838,8 @@ msgstr "備份資料已儲存至檔案 %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制."
|
||||
|
||||
#: import.php:278 import.php:331 libraries/File.class.php:501
|
||||
@ -1684,8 +1683,8 @@ msgstr "歡迎使用 %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案"
|
||||
|
||||
@ -4450,8 +4449,9 @@ msgid "Events"
|
||||
msgstr "事件"
|
||||
|
||||
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
|
||||
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125
|
||||
#: libraries/display_create_table.lib.php:51
|
||||
#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26
|
||||
#: setup/frames/index.inc.php:125 tbl_structure.php:198
|
||||
msgid "Name"
|
||||
msgstr "名字"
|
||||
|
||||
@ -4651,8 +4651,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下"
|
||||
"列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s"
|
||||
@ -5358,8 +5358,8 @@ msgstr ""
|
||||
#: libraries/engines/pbxt.lib.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Documentation and further information about PBXT can be found on the "
|
||||
"%sPrimeBase XT Home Page%s."
|
||||
"Documentation and further information about PBXT can be found on the %"
|
||||
"sPrimeBase XT Home Page%s."
|
||||
msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s"
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
@ -7694,8 +7694,8 @@ msgstr "刪除與使用者同名的資料庫"
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表"
|
||||
"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入"
|
||||
|
||||
@ -44,7 +44,8 @@ CREATE TABLE IF NOT EXISTS `pma_bookmark` (
|
||||
`query` text NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Bookmarks';
|
||||
ENGINE=MyISAM COMMENT='Bookmarks'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -64,7 +65,8 @@ CREATE TABLE IF NOT EXISTS `pma_column_info` (
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Column information for phpMyAdmin';
|
||||
ENGINE=MyISAM COMMENT='Column information for phpMyAdmin'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -82,7 +84,8 @@ CREATE TABLE IF NOT EXISTS `pma_history` (
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `username` (`username`,`db`,`table`,`timevalue`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='SQL history for phpMyAdmin';
|
||||
ENGINE=MyISAM COMMENT='SQL history for phpMyAdmin'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -97,7 +100,8 @@ CREATE TABLE IF NOT EXISTS `pma_pdf_pages` (
|
||||
PRIMARY KEY (`page_nr`),
|
||||
KEY `db_name` (`db_name`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='PDF relation pages for phpMyAdmin';
|
||||
ENGINE=MyISAM COMMENT='PDF relation pages for phpMyAdmin'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -110,7 +114,8 @@ CREATE TABLE IF NOT EXISTS `pma_recent` (
|
||||
`tables` text NOT NULL,
|
||||
PRIMARY KEY (`username`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Recently accessed tables';
|
||||
ENGINE=MyISAM COMMENT='Recently accessed tables'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -125,7 +130,8 @@ CREATE TABLE IF NOT EXISTS `pma_table_uiprefs` (
|
||||
`prefs` text NOT NULL,
|
||||
PRIMARY KEY (`username`,`db_name`,`table_name`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Tables'' UI preferences';
|
||||
ENGINE=MyISAM COMMENT='Tables'' UI preferences'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -143,7 +149,8 @@ CREATE TABLE IF NOT EXISTS `pma_relation` (
|
||||
PRIMARY KEY (`master_db`,`master_table`,`master_field`),
|
||||
KEY `foreign_field` (`foreign_db`,`foreign_table`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Relation table';
|
||||
ENGINE=MyISAM COMMENT='Relation table'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -159,7 +166,8 @@ CREATE TABLE IF NOT EXISTS `pma_table_coords` (
|
||||
`y` float unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`db_name`,`table_name`,`pdf_page_number`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Table coordinates for phpMyAdmin PDF output';
|
||||
ENGINE=MyISAM COMMENT='Table coordinates for phpMyAdmin PDF output'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -173,7 +181,8 @@ CREATE TABLE IF NOT EXISTS `pma_table_info` (
|
||||
`display_field` varchar(64) NOT NULL default '',
|
||||
PRIMARY KEY (`db_name`,`table_name`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Table information for phpMyAdmin';
|
||||
ENGINE=MyISAM COMMENT='Table information for phpMyAdmin'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -190,7 +199,8 @@ CREATE TABLE IF NOT EXISTS `pma_designer_coords` (
|
||||
`h` TINYINT,
|
||||
PRIMARY KEY (`db_name`,`table_name`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='Table coordinates for Designer';
|
||||
ENGINE=MyISAM COMMENT='Table coordinates for Designer'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -211,7 +221,8 @@ CREATE TABLE IF NOT EXISTS `pma_tracking` (
|
||||
`tracking_active` int(1) unsigned NOT NULL default '1',
|
||||
PRIMARY KEY (`db_name`,`table_name`,`version`)
|
||||
)
|
||||
ENGINE=MyISAM ROW_FORMAT=COMPACT COMMENT='Database changes tracking for phpMyAdmin';
|
||||
ENGINE=MyISAM ROW_FORMAT=COMPACT COMMENT='Database changes tracking for phpMyAdmin'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
@ -225,4 +236,5 @@ CREATE TABLE IF NOT EXISTS `pma_userconfig` (
|
||||
`config_data` text NOT NULL,
|
||||
PRIMARY KEY (`username`)
|
||||
)
|
||||
ENGINE=MyISAM COMMENT='User preferences storage for phpMyAdmin';
|
||||
ENGINE=MyISAM COMMENT='User preferences storage for phpMyAdmin'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
@ -195,7 +195,7 @@ $i = 0;
|
||||
<tr>
|
||||
<th id="th<?php echo ++$i; ?>"></th>
|
||||
<th id="th<?php echo ++$i; ?>">#</th>
|
||||
<th id="th<?php echo ++$i; ?>" class="column"><?php echo __('Column'); ?></th>
|
||||
<th id="th<?php echo ++$i; ?>" class="column"><?php echo __('Name'); ?></th>
|
||||
<th id="th<?php echo ++$i; ?>" class="type"><?php echo __('Type'); ?></th>
|
||||
<th id="th<?php echo ++$i; ?>" class="collation"><?php echo __('Collation'); ?></th>
|
||||
<th id="th<?php echo ++$i; ?>" class="attributes"><?php echo __('Attributes'); ?></th>
|
||||
|
||||
@ -833,6 +833,7 @@ div#tablestatistics {
|
||||
|
||||
div#tablestatistics table {
|
||||
float: <?php echo $left; ?>;
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
margin-<?php echo $right; ?>: 0.5em;
|
||||
}
|
||||
@ -1771,3 +1772,102 @@ fieldset .disabled-field td {
|
||||
-webkit-box-sizing: border-box;
|
||||
}
|
||||
|
||||
.CodeMirror {
|
||||
line-height: 1em;
|
||||
font-family: monospace;
|
||||
background: white;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.CodeMirror-scroll {
|
||||
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.CodeMirror-gutter {
|
||||
position: absolute; left: 0; top: 0;
|
||||
background-color: #f7f7f7;
|
||||
border-right: 1px solid #eee;
|
||||
min-width: 2em;
|
||||
height: 100%;
|
||||
}
|
||||
.CodeMirror-gutter-text {
|
||||
color: #aaa;
|
||||
text-align: right;
|
||||
padding: .4em .2em .4em .4em;
|
||||
}
|
||||
.CodeMirror-lines {
|
||||
padding: .4em;
|
||||
}
|
||||
|
||||
.CodeMirror pre {
|
||||
-moz-border-radius: 0;
|
||||
-webkit-border-radius: 0;
|
||||
-o-border-radius: 0;
|
||||
border-radius: 0;
|
||||
border-width: 0; margin: 0; padding: 0; background: transparent;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
padding: 0; margin: 0;
|
||||
}
|
||||
|
||||
.CodeMirror textarea {
|
||||
font-family: inherit !important;
|
||||
font-size: inherit !important;
|
||||
}
|
||||
|
||||
.CodeMirror-cursor {
|
||||
z-index: 10;
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
border-left: 1px solid black !important;
|
||||
}
|
||||
.CodeMirror-focused .CodeMirror-cursor {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
span.CodeMirror-selected {
|
||||
background: #ccc !important;
|
||||
color: HighlightText !important;
|
||||
}
|
||||
.CodeMirror-focused span.CodeMirror-selected {
|
||||
background: Highlight !important;
|
||||
}
|
||||
|
||||
.CodeMirror-matchingbracket {color: #0f0 !important;}
|
||||
.CodeMirror-nonmatchingbracket {color: #f22 !important;}
|
||||
|
||||
|
||||
span.mysql-keyword {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_reservedWord']; ?>;
|
||||
}
|
||||
span.mysql-var {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_identifier']; ?>;
|
||||
}
|
||||
span.mysql-comment {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['comment']; ?>;
|
||||
}
|
||||
span.mysql-string {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['quote']; ?>;
|
||||
}
|
||||
span.mysql-operator {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
|
||||
}
|
||||
span.mysql-word {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha']; ?>;
|
||||
}
|
||||
span.mysql-function {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_functionName']; ?>;
|
||||
}
|
||||
span.mysql-type {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnType']; ?>;
|
||||
}
|
||||
span.mysql-attribute {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnAttrib']; ?>;
|
||||
}
|
||||
span.mysql-separator {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
|
||||
}
|
||||
span.mysql-number {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['digit_integer']; ?>;
|
||||
}
|
||||
|
||||
@ -1022,22 +1022,13 @@ form.clock {
|
||||
|
||||
|
||||
/* table stats */
|
||||
div#tablestatistics {
|
||||
border-bottom: 0.1em solid #669999;
|
||||
margin-bottom: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
div#tablestatistics table {
|
||||
float: <?php echo $left; ?>;
|
||||
margin-bottom: 0.5em;
|
||||
margin-<?php echo $right; ?>: 0.5em;
|
||||
width:99%;
|
||||
margin-<?php echo $right; ?>: 1.5em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
div#tablestatistics table caption {
|
||||
margin-<?php echo $right; ?>: 0.5em;
|
||||
}
|
||||
/* END table stats */
|
||||
|
||||
|
||||
@ -2128,3 +2119,102 @@ fieldset .disabled-field td {
|
||||
margin: 0 6px;
|
||||
}
|
||||
|
||||
.CodeMirror {
|
||||
line-height: 1em;
|
||||
font-family: monospace;
|
||||
background: white;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.CodeMirror-scroll {
|
||||
overflow: auto;
|
||||
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
|
||||
}
|
||||
|
||||
.CodeMirror-gutter {
|
||||
position: absolute; left: 0; top: 0;
|
||||
background-color: #f7f7f7;
|
||||
border-right: 1px solid #eee;
|
||||
min-width: 2em;
|
||||
height: 100%;
|
||||
}
|
||||
.CodeMirror-gutter-text {
|
||||
color: #aaa;
|
||||
text-align: right;
|
||||
padding: .4em .2em .4em .4em;
|
||||
}
|
||||
.CodeMirror-lines {
|
||||
padding: .4em;
|
||||
}
|
||||
|
||||
.CodeMirror pre {
|
||||
-moz-border-radius: 0;
|
||||
-webkit-border-radius: 0;
|
||||
-o-border-radius: 0;
|
||||
border-radius: 0;
|
||||
border-width: 0; margin: 0; padding: 0; background: transparent;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
padding: 0; margin: 0;
|
||||
}
|
||||
|
||||
.CodeMirror textarea {
|
||||
font-family: inherit !important;
|
||||
font-size: inherit !important;
|
||||
}
|
||||
|
||||
.CodeMirror-cursor {
|
||||
z-index: 10;
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
border-left: 1px solid black !important;
|
||||
}
|
||||
.CodeMirror-focused .CodeMirror-cursor {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
span.CodeMirror-selected {
|
||||
background: #ccc !important;
|
||||
color: HighlightText !important;
|
||||
}
|
||||
.CodeMirror-focused span.CodeMirror-selected {
|
||||
background: Highlight !important;
|
||||
}
|
||||
|
||||
.CodeMirror-matchingbracket {color: #0f0 !important;}
|
||||
.CodeMirror-nonmatchingbracket {color: #f22 !important;}
|
||||
|
||||
|
||||
span.mysql-keyword {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_reservedWord']; ?>;
|
||||
}
|
||||
span.mysql-var {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_identifier']; ?>;
|
||||
}
|
||||
span.mysql-comment {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['comment']; ?>;
|
||||
}
|
||||
span.mysql-string {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['quote']; ?>;
|
||||
}
|
||||
span.mysql-operator {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
|
||||
}
|
||||
span.mysql-word {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha']; ?>;
|
||||
}
|
||||
span.mysql-function {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_functionName']; ?>;
|
||||
}
|
||||
span.mysql-type {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnType']; ?>;
|
||||
}
|
||||
span.mysql-attribute {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['alpha_columnAttrib']; ?>;
|
||||
}
|
||||
span.mysql-separator {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['punct']; ?>;
|
||||
}
|
||||
span.mysql-number {
|
||||
color: <?php echo $GLOBALS['cfg']['SQP']['fmtColor']['digit_integer']; ?>;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user