From bf5f51bee29584c22a75ed0ec4fec7a9564b92a7 Mon Sep 17 00:00:00 2001 From: "J.M" Date: Tue, 4 Sep 2012 21:40:30 +0200 Subject: [PATCH 01/51] add support for Solaris and FreeBSD system load and memory display in server status --- ChangeLog | 1 + libraries/Advisor.class.php | 2 +- libraries/sysinfo.lib.php | 84 +++++++++++++++++++++++++++++++++---- server_status.php | 6 +-- 4 files changed, 82 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index a69b5c5ab9..562f093e4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,7 @@ phpMyAdmin - ChangeLog - bug #3559925 [privileges] Incorrect updating of the list of users - bug #3561224 [edit] cell edit date field with empty date fills in current date - bug #3559955 [edit] current_date from function drop down fails on update +- add support for Solaris and FreeBSD system load and memory display in server status 3.5.2.2 (2012-08-12) - [security] Fixed XSS vulnerabilities, see PMASA-2012-4 diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php index 62ba645d51..0c031405ba 100644 --- a/libraries/Advisor.class.php +++ b/libraries/Advisor.class.php @@ -33,7 +33,7 @@ class Advisor } // Add total memory to variables as well include_once 'libraries/sysinfo.lib.php'; - $sysinfo = getSysInfo(); + $sysinfo = PMA_getSysInfo(); $memory = $sysinfo->memory(); $this->variables['system_memory'] = $memory['MemTotal']; diff --git a/libraries/sysinfo.lib.php b/libraries/sysinfo.lib.php index c6408ff631..e825540e29 100644 --- a/libraries/sysinfo.lib.php +++ b/libraries/sysinfo.lib.php @@ -9,24 +9,43 @@ * @package PhpMyAdmin */ +/** + * Wrap the PHP_OS constant + * + * @return string + */ +function PMA_getSysInfoOs() +{ + $php_os = PHP_OS; + + // look for common UNIX-like systems + $unix_like = array('FreeBSD'); + if (in_array($php_os, $unix_like)) { + $php_os = 'Linux'; + } + + return ucfirst($php_os); +} + /** * @return array */ -function getSysInfo() +function PMA_getSysInfo() { - $supported = array('Linux', 'WINNT'); + $php_os = PMA_getSysInfoOs(); + $supported = array('Linux', 'WINNT', 'SunOS'); $sysinfo = array(); - if (in_array(PHP_OS, $supported)) { - return eval("return new ".PHP_OS."();"); + if (in_array($php_os, $supported)) { + return eval("return new PMA_sysinfo".$php_os."();"); } - return $sysinfo; + return new PMA_Sysinfo_Default; } -class WINNT +class PMA_sysinfoWinnt { private $_wmi; @@ -104,7 +123,7 @@ class WINNT } } -class Linux +class PMA_sysinfoLinux { public $os = 'Linux'; @@ -127,3 +146,54 @@ class Linux return $mem; } } + +class PMA_sysinfoSunos +{ + public $os = 'SunOS'; + + private function _kstat($key) + { + if ($m = shell_exec('kstat -p d '.$key)) { + list($key, $value) = preg_split("/\t/", trim($m), 2); + return $value; + } else { + return ''; + } + } + + public function loadavg() { + $load1 = $this->_kstat('unix:0:system_misc:avenrun_1min'); + + return array('loadavg' => $load1); + } + + public function memory() { + preg_match_all('/^(MemTotal|MemFree|Cached|Buffers|SwapCached|SwapTotal|SwapFree):\s+(.*)\s*kB/im', file_get_contents('/proc/meminfo'), $matches); + + $pagesize = $this->_kstat('unix:0:seg_cache:slab_size'); + $mem['MemTotal'] = $this->_kstat('unix:0:system_pages:pagestotal') * $pagesize; + $mem['MemUsed'] = $this->_kstat('unix:0:system_pages:pageslocked') * $pagesize; + $mem['MemFree'] = $this->_kstat('unix:0:system_pages:pagesfree') * $pagesize; + $mem['SwapTotal'] = $this->_kstat('unix:0:vminfo:swap_avail') * $pagesize; + $mem['SwapUsed'] = $this->_kstat('unix:0:vminfo:swap_alloc') * $pagesize; + $mem['SwapFree'] = $this->_kstat('unix:0:vminfo:swap_free') * $pagesize; + + foreach ($mem as $idx=>$value) + $mem[$idx] = intval($value); + + return $mem; + } +} + +class PMA_sysinfoDefault +{ + public $os = PHP_OS; + + public function loadavg() { + return array('loadavg' => 0); + } + + public function memory() { + return array(); + } +} diff --git a/server_status.php b/server_status.php index 0ebf32d7ec..fe701064a7 100644 --- a/server_status.php +++ b/server_status.php @@ -137,13 +137,13 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) { case 'cpu': if (!$sysinfo) { include_once 'libraries/sysinfo.lib.php'; - $sysinfo = getSysInfo(); + $sysinfo = PMA_getSysInfo(); } if (!$cpuload) { $cpuload = $sysinfo->loadavg(); } - if (PHP_OS == 'Linux') { + if (PMA_getSysInfoOs() == 'Linux') { $ret[$chart_id][$node_id][$point_id]['idle'] = $cpuload['idle']; $ret[$chart_id][$node_id][$point_id]['busy'] = $cpuload['busy']; } else @@ -154,7 +154,7 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) { case 'memory': if (!$sysinfo) { include_once 'libraries/sysinfo.lib.php'; - $sysinfo = getSysInfo(); + $sysinfo = PMA_getSysInfo(); } if (!$memory) { $memory = $sysinfo->memory(); From 60de108cbdf2aa08ab404f63a0968c39857d5b41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D9=85=D8=AA=D8=B1=D8=AC=D9=85=20=D8=AD=D8=B1=D9=91?= Date: Tue, 4 Sep 2012 16:55:53 +0200 Subject: [PATCH 02/51] Translated using Weblate. --- po/ar.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ar.po b/po/ar.po index 2dd5f55cee..a0aeeb6d38 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-03 16:34+0200\n" +"PO-Revision-Date: 2012-09-04 16:55+0200\n" "Last-Translator: مترجم حرّ \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -1150,7 +1150,7 @@ msgstr "إضافة مستخدم" #: js/messages.php:60 msgid "Reloading Privileges" -msgstr "" +msgstr "إعادة تحميل الإمتيازات" #: js/messages.php:61 msgid "Removing Selected Users" @@ -1929,7 +1929,7 @@ msgstr "إختر عمودين مختلفين" #: js/messages.php:314 #| msgid "SQL result" msgid "Query results" -msgstr "" +msgstr "نتائج الاستعلام" #: js/messages.php:315 #| msgid "Table of contents" From 3c69bc07f00fdbfade36778fc5cde27b56de57bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojislav=20Pavi=C4=87?= Date: Tue, 4 Sep 2012 21:23:14 +0200 Subject: [PATCH 03/51] Translated using Weblate. --- po/sr@latin.po | 762 +++++++++++++++++++++++++------------------------ 1 file changed, 391 insertions(+), 371 deletions(-) diff --git a/po/sr@latin.po b/po/sr@latin.po index 0d4350b556..9fd921555b 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-04 09:20+0200\n" +"PO-Revision-Date: 2012-09-04 21:23+0200\n" "Last-Translator: Vojislav Pavić \n" "Language-Team: Serbian (latin) " "\n" @@ -1204,7 +1204,7 @@ msgstr "Grafikon trenutnog saobraćaja" #: js/messages.php:67 server_status.php:819 msgid "Live conn./process chart" -msgstr "" +msgstr "Živi grafikon veze/procesi" #: js/messages.php:68 server_status.php:841 msgid "Live query chart" @@ -1212,7 +1212,7 @@ msgstr "Grafikon upita" #: js/messages.php:70 msgid "Static data" -msgstr "" +msgstr "Statički podaci" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:46 @@ -1225,7 +1225,7 @@ msgstr "Ukupno" #. l10n: Other, small valued, queries #: js/messages.php:74 server_status.php:612 server_status.php:1039 msgid "Other" -msgstr "" +msgstr "Ostalo" #. l10n: Thousands separator #: js/messages.php:76 libraries/common.lib.php:1452 @@ -1239,11 +1239,11 @@ msgstr "." #: js/messages.php:80 msgid "KiB sent since last refresh" -msgstr "" +msgstr "KB poslato od poslednjeg osvežavanja" #: js/messages.php:81 msgid "KiB received since last refresh" -msgstr "" +msgstr "KB primljeno od poslednjeg osvežavanja" #: js/messages.php:82 #| msgid "Server Choice" @@ -1252,7 +1252,7 @@ msgstr "Količina saobraćaja na serveru (u KiB)" #: js/messages.php:83 msgid "Connections since last refresh" -msgstr "" +msgstr "Veze od poslednjeg osvežavanja" #: js/messages.php:84 js/messages.php:122 server_status.php:1252 msgid "Processes" @@ -1266,12 +1266,12 @@ msgstr "Veze / Procesi" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:87 msgid "Questions since last refresh" -msgstr "" +msgstr "Pitanja od poslednjeg osvežavanja" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:89 msgid "Questions (executed statements by the server)" -msgstr "" +msgstr "Pitanja (izvršeni iskazi od strane servera)" #: js/messages.php:91 server_status.php:794 msgid "Query statistics" @@ -1280,7 +1280,7 @@ msgstr "Statistika upita" #: js/messages.php:94 #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" -msgstr "Konfiguracija lokalnog nadgledanja nije kompatibilna" +msgstr "Konfiguracija lokalnog monitoringa nije kompatibilna" #: js/messages.php:95 msgid "" @@ -1289,6 +1289,11 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"Konfiguracija uređenja grafikona u lokalnom skladištu vašeg pretraživača " +"nije kompatibilna više sa novom verzijom monitoring prozora. Vrlo je " +"verovatno da vaša tekuća konfiguracija neće više raditi. Molimo vas da " +"resetujete konfiguraciju na početbe vrednosti u opciji menija " +"Podešavanja." #: js/messages.php:97 #| msgid "Query cache" @@ -1307,15 +1312,15 @@ msgstr "Iskorišćeno query cache-a" #: js/messages.php:101 msgid "System CPU Usage" -msgstr "" +msgstr "Zauzetost sistemskog procesora" #: js/messages.php:102 msgid "System memory" -msgstr "" +msgstr "Sistemska memorija" #: js/messages.php:103 msgid "System swap" -msgstr "" +msgstr "Sistemski svop" #. l10n: shortcuts for Megabyte #: js/messages.php:104 js/messages.php:127 libraries/common.lib.php:1402 @@ -1331,7 +1336,7 @@ msgstr "KB" #: js/messages.php:107 msgid "Average load" -msgstr "" +msgstr "Prosečno opterećenje" #: js/messages.php:108 #| msgid "Total" @@ -1340,7 +1345,7 @@ msgstr "Ukupno memorije" #: js/messages.php:109 msgid "Cached memory" -msgstr "" +msgstr "Keširana memorija" #: js/messages.php:110 #| msgid "Buffer Pool" @@ -1362,11 +1367,11 @@ msgstr "Ukupno Swap" #: js/messages.php:115 msgid "Cached Swap" -msgstr "" +msgstr "Keširani svop" #: js/messages.php:116 msgid "Used Swap" -msgstr "" +msgstr "Iskorišćeni svop" #: js/messages.php:117 #| msgid "Free pages" @@ -1440,7 +1445,7 @@ msgstr "Ukloni grafikon" #: js/messages.php:139 msgid "Edit title and labels" -msgstr "" +msgstr "Uredi naslov i opise" #: js/messages.php:140 #| msgid "Snap to grid" @@ -1449,7 +1454,7 @@ msgstr "Dodaj grafikon na grid" #: js/messages.php:142 msgid "Please add at least one variable to the series" -msgstr "" +msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" #: js/messages.php:143 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1093 @@ -1461,35 +1466,35 @@ msgstr "nema" #: js/messages.php:144 msgid "Resume monitor" -msgstr "" +msgstr "Nastavi praćenje" #: js/messages.php:145 msgid "Pause monitor" -msgstr "" +msgstr "Zaustavi praćenje" #: js/messages.php:147 msgid "general_log and slow_query_log are enabled." -msgstr "" +msgstr "general_log i slow_query_log su omogućeni." #: js/messages.php:148 msgid "general_log is enabled." -msgstr "" +msgstr "general_log je omogućen." #: js/messages.php:149 msgid "slow_query_log is enabled." -msgstr "" +msgstr "slow_query_log je omogućen." #: js/messages.php:150 msgid "slow_query_log and general_log are disabled." -msgstr "" +msgstr "slow_query_log i general_log su isključeni." #: js/messages.php:151 msgid "log_output is not set to TABLE." -msgstr "" +msgstr "log_output nije postavljen na TABLE." #: js/messages.php:152 msgid "log_output is set to TABLE." -msgstr "" +msgstr "log_output je postavljen na TABLE." #: js/messages.php:153 #, php-format @@ -1498,17 +1503,22 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" +"slow_query_log je omogućen, ali server upisuje u dnevnik samo upite koji se " +"izvršavaju više od %d sekundi. Preporučljivo je da podesite long_query_time " +"na 0-2 sekunde, u zavisnosti od vašeg sistema." #: js/messages.php:154 #, php-format msgid "long_query_time is set to %d second(s)." -msgstr "" +msgstr "long_query_time je postavljeno na %d sekund(i)." #: js/messages.php:155 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" +"Sledeća podešavanja će biti globalno primenjena i resetovana na " +"podrazumevane vrednosti kad server bude restartovan:" #. l10n: %s is FILE or TABLE #: js/messages.php:157 @@ -1535,13 +1545,15 @@ msgstr "Onemogući %s" #: js/messages.php:163 #, php-format msgid "Set long_query_time to %ds" -msgstr "" +msgstr "Postavi long_query_time na %ds" #: js/messages.php:164 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" +"Nemate prava da promenite ove promenljive. Molimo vas da se prijavite kao " +"root ili kontaktirajte vašeg administratora baze." #: js/messages.php:165 #| msgid "General relation features" @@ -1561,24 +1573,24 @@ msgstr "Naslov grafikona" #. l10n: As in differential values #: js/messages.php:170 msgid "Differential" -msgstr "" +msgstr "Diferencijalni" #: js/messages.php:171 #, php-format msgid "Divided by %s" -msgstr "" +msgstr "Podeljeno sa %s" #: js/messages.php:172 msgid "Unit" -msgstr "" +msgstr "Jedinica" #: js/messages.php:174 msgid "From slow log" -msgstr "" +msgstr "Iz dnevnika sporih upita" #: js/messages.php:175 msgid "From general log" -msgstr "" +msgstr "Iz glavnog dnevnika" #: js/messages.php:176 msgid "Analysing logs" @@ -1586,7 +1598,7 @@ msgstr "Analiziranje logova" #: js/messages.php:177 msgid "Analysing & loading logs. This may take a while." -msgstr "" +msgstr "Analiziranje i učitavanje dnevnika. Ovo može da potraje neko vreme." #: js/messages.php:178 #| msgid "Read requests" @@ -1599,6 +1611,9 @@ msgid "" "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" +"Ova kolona prikazuje broj identičnih upita koji su grupisani zajedno. " +"Međutim samo sam SQL upit je iskorišćen kao kriterijum za grupisanje, tako " +"da ostali atributi upita, kao što je vreme pokretanja, mogu da se razlikuju." #: js/messages.php:180 msgid "" @@ -1606,10 +1621,12 @@ msgid "" "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" +"Pošto je grupisanje INSERT upita izabrano, INSERT upiti u istu tabelu su " +"takođe grupisani zajedno, bez obzira na umetnute podatke." #: js/messages.php:181 msgid "Log data loaded. Queries executed in this time span:" -msgstr "" +msgstr "Podaci iz dnevnika učitani. Upiti izvršeni u ovom vremenskom razmaku:" #: js/messages.php:183 msgid "Jump to Log table" @@ -1622,11 +1639,11 @@ msgstr "Nema podataka" #: js/messages.php:185 msgid "Log analysed, but no data found in this time span." -msgstr "" +msgstr "Dnevnik analiziran, ali ništa nije pronađeno u ovom vremenskom razmaku." #: js/messages.php:187 msgid "Analyzing..." -msgstr "" +msgstr "Aniliziram..." #: js/messages.php:188 #| msgid "Explain SQL" @@ -1680,11 +1697,11 @@ msgstr "Filter" #: js/messages.php:202 msgid "Filter queries by word/regexp:" -msgstr "" +msgstr "Filtriraj upite po word/regexp:" #: js/messages.php:203 msgid "Group queries, ignoring variable data in WHERE clauses" -msgstr "" +msgstr "Grupisanje upita, ignoriši promenljive vrednosti u WHERE klauzulama" #: js/messages.php:204 msgid "Sum of grouped rows:" @@ -1701,7 +1718,7 @@ msgstr "Učitavanje logova" #: js/messages.php:208 msgid "Monitor refresh failed" -msgstr "" +msgstr "Osvežavanje monitoringa neuspešno" #: js/messages.php:209 msgid "" @@ -1709,6 +1726,9 @@ msgid "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" +"U toku zahteva za novim podacima za grafikon server je vratio pogrešan " +"odgovor. To se najverovatnije desilo jer je sesija istekla. Osvežavanje " +"stranice i ponovno prijavljivanje trebalo bi da pomogne." #: js/messages.php:210 #| msgid "Reload" @@ -1717,17 +1737,21 @@ msgstr "Ponovo učitaj stranu" #: js/messages.php:212 msgid "Affected rows:" -msgstr "" +msgstr "Zahvaćeni redovi:" #: js/messages.php:214 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" +"Neuspelo analiziranje konfiguracione datoteke. Izgleda da sadržaj nije u " +"validnom JSON formatu." #: js/messages.php:215 msgid "" "Failed building chart grid with imported config. Resetting to default " "config..." msgstr "" +"Neuspelo formiranje grafikona sa uvezenom konfiguracijom. Resetujem na " +"podrazumevanu konfiguraciju..." #: js/messages.php:216 libraries/config/messages.inc.php:172 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 @@ -1753,15 +1777,15 @@ msgstr "Analiza upita" #: js/messages.php:224 msgid "Advisor system" -msgstr "" +msgstr "Sistem za savete" #: js/messages.php:225 msgid "Possible performance issues" -msgstr "" +msgstr "Mogući problemi sa performansama" #: js/messages.php:226 msgid "Issue" -msgstr "" +msgstr "Pitanje" #: js/messages.php:227 #| msgid "Documentation" @@ -1770,7 +1794,7 @@ msgstr "Preporuka" #: js/messages.php:228 msgid "Rule details" -msgstr "" +msgstr "Detalji pravila" #: js/messages.php:229 #| msgid "Documentation" @@ -1779,11 +1803,11 @@ msgstr "Opravdanje" #: js/messages.php:230 msgid "Used variable / formula" -msgstr "" +msgstr "Korišćene promenljiva/formula" #: js/messages.php:231 msgid "Test" -msgstr "" +msgstr "Test" #: js/messages.php:236 pmd_general.php:382 pmd_general.php:419 #: pmd_general.php:539 pmd_general.php:587 pmd_general.php:663 @@ -1802,15 +1826,15 @@ msgstr "Obrada zahteva" #: js/messages.php:241 libraries/rte/rte_export.lib.php:39 msgid "Error in Processing Request" -msgstr "" +msgstr "Greška kod obrade zahteva" #: js/messages.php:242 msgid "Dropping Column" -msgstr "" +msgstr "Brisanje kolone" #: js/messages.php:243 msgid "Adding Primary Key" -msgstr "" +msgstr "Dodavanje primarnog ključa" #: js/messages.php:244 libraries/relation.lib.php:80 pmd_general.php:380 #: pmd_general.php:537 pmd_general.php:585 pmd_general.php:661 @@ -1820,7 +1844,7 @@ msgstr "U redu" #: js/messages.php:245 msgid "Click to dismiss this notification" -msgstr "" +msgstr "Kliknite da bi ste zatvorili ovo obaveštenje" #: js/messages.php:248 #| msgid "Rename database to" @@ -1887,7 +1911,7 @@ msgstr "Brisanje" #: js/messages.php:269 msgid "The definition of a stored function must contain a RETURN statement!" -msgstr "" +msgstr "Definicija uskladištene funkcije mora imati RETURN iskaz!" #: js/messages.php:276 #, php-format @@ -1898,6 +1922,8 @@ msgstr "Dodaj %d vrednost(i)" msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" +"Imajte u vidu: Ako datoteka sadrži više tabela, one će biti kombinovane u " +"jednu" #: js/messages.php:282 msgid "Hide query box" @@ -1919,7 +1945,7 @@ msgstr "Promeni" #: js/messages.php:287 msgid "Query execution time" -msgstr "" +msgstr "Vreme izvršavanja upita" #: js/messages.php:288 libraries/display_tbl.lib.php:423 #, php-format @@ -1949,27 +1975,30 @@ msgstr "Uvećaj polje za pretragu" #: js/messages.php:300 msgid "Each point represents a data row." -msgstr "" +msgstr "Svaka tačka pretsavlja jedan red podataka." #: js/messages.php:302 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "Ako zadržite kursor miša iznad tačke biće prikazan opis." #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "" +msgstr "Da bi ste uvećali prikaz, izaberite deo prikaza sa mišem." #: js/messages.php:306 msgid "Click reset zoom link to come back to original state." -msgstr "" +msgstr "Kliknite na link reset zumiranja da bi ste vratili originalno stanje." #: js/messages.php:308 msgid "Click a data point to view and possibly edit the data row." msgstr "" +"Klikni na tačku sa podacima da bi video ili eventualno izmenio red podataka." #: js/messages.php:310 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" +"Veličina prikaza može da se promeni ako ga uhvatite i povučete mišem u " +"donjem desnom uglu." #: js/messages.php:312 #| msgid "Add/Delete columns" @@ -1978,7 +2007,7 @@ msgstr "Izaberi dve kolone" #: js/messages.php:313 msgid "Select two different columns" -msgstr "" +msgstr "Izaberite dve različite kolone" #: js/messages.php:314 #| msgid "Query results operations" @@ -1997,7 +2026,7 @@ msgstr "Ignoriši" #: js/messages.php:319 libraries/display_tbl.lib.php:1391 msgid "Copy" -msgstr "" +msgstr "Kopiraj" #: js/messages.php:334 #| msgid "Add %s field(s)" @@ -2026,47 +2055,56 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" +"Niste snimili izmene u raspored. Biće izgubljene ako ih ne snimite. Da li " +"želite da nastavite?" #: js/messages.php:344 msgid "Add an option for column " -msgstr "" +msgstr "Dodaj opciju za kolonu " #: js/messages.php:347 msgid "Press escape to cancel editing" -msgstr "" +msgstr "Prtisni escape da otkažeš uređivanje" #: js/messages.php:348 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" +"Izmenili ste neke podatke i izmene nisu sačuvane. Da li ste sigurni da " +"želite da napustite ovu stranu pre nego što snimite podatke?" #: js/messages.php:349 msgid "Drag to reorder" -msgstr "" +msgstr "Povucite da bi ste promenili redosled" #: js/messages.php:350 msgid "Click to sort" -msgstr "" +msgstr "Kliknite da bi ste sortirali" #: js/messages.php:351 msgid "Click to mark/unmark" -msgstr "" +msgstr "Kliknite da postavite/skinete oznaku" #: js/messages.php:352 msgid "Click the drop-down arrow
to toggle column's visibility" -msgstr "" +msgstr "Kliknite strelici na dole
da bi ste izmenili vidljivost kolone" #: js/messages.php:354 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" +"Ova tabela ne sadrži jedinstvenu kolonu. Karakteristike koje se odnose na " +"izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " +"rade nakon snimanja." #: js/messages.php:355 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" +"Možete izmeniti većinu kolona
tako što kliknete direktno na njen " +"sadržaj." #: js/messages.php:356 msgid "Go to link" @@ -2097,6 +2135,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" +"Nova verzija phpMyAdmin-a je dostupna i trebalo bi da razmislite o " +"nadogradnji. Najnovije verzija je %s, objavljena %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:369 @@ -2559,8 +2599,9 @@ msgstr "Greška" #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d red zahvaćen." +msgstr[1] "%1$d redova zahvaćeno." +msgstr[2] "%1$d redova zahvaćeno." #: libraries/Message.class.php:257 #, php-format @@ -2643,7 +2684,7 @@ msgstr "Tabeli %s promenjeno ime u %s" #: libraries/Table.class.php:1385 msgid "Could not save table UI preferences" -msgstr "" +msgstr "Nije bilo moguće saćuvati podešavanja korisničkog interfejsa tabele" #: libraries/Table.class.php:1408 #, php-format @@ -2651,6 +2692,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" +"Neuspelo brisanje podešavanja korisničkog interfejsa tabele (pogledajte " +"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1534 #, php-format @@ -2659,6 +2702,9 @@ msgid "" "after you refresh this page. Please check if the table structure has been " "changed." msgstr "" +"Nemoguće snimiti svojstvo korisničkog interfejsa \"%s\". Napravljene izmene " +"neće biti trajne nakon osveženja ove strane. Molimo vas da proverite da li " +"je struktura tabele izmenjena." #: libraries/Theme.class.php:145 #, php-format @@ -2690,7 +2736,7 @@ msgstr "Nije pronađena putanja do teme za temu %s!" #: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" -msgstr "" +msgstr "Tema" #: libraries/auth/config.auth.lib.php:71 msgid "Cannot connect: invalid settings." @@ -2725,7 +2771,7 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:35 msgid "Failed to use Blowfish from mcrypt!" -msgstr "" +msgstr "Pokušaj upotrebe Blowfish algoritma iz mcrypt nije uspela!" #: libraries/auth/cookie.auth.lib.php:197 msgid "Log in" @@ -2742,7 +2788,7 @@ msgstr "phpMyAdmin dokumentacija" #: libraries/auth/cookie.auth.lib.php:211 #: libraries/auth/cookie.auth.lib.php:212 msgid "You can enter hostname/IP address and port separated by space." -msgstr "" +msgstr "Možete uneti ime servera/IP adresu i port odvojene blanko znakom." #: libraries/auth/cookie.auth.lib.php:211 msgid "Server:" @@ -2769,6 +2815,8 @@ msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" +"Prijava bez lozinke je zabranjena u konfiguraciji (pogledajte " +"AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:572 #: libraries/auth/signon.auth.lib.php:239 @@ -2788,29 +2836,29 @@ msgstr "Pogrešno korisničko ime/lozinka. Pristup odbijen." #: libraries/auth/signon.auth.lib.php:88 msgid "Can not find signon authentication script:" -msgstr "" +msgstr "Ne mogu da nađem signon skript za autentikaciju:" #: libraries/auth/swekey/swekey.auth.lib.php:116 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "Datoteka %s ne sadrži ni jedan identifikator ključa" #: libraries/auth/swekey/swekey.auth.lib.php:156 #: libraries/auth/swekey/swekey.auth.lib.php:176 msgid "Hardware authentication failed" -msgstr "" +msgstr "Hardverska autentikacija nije uspela" #: libraries/auth/swekey/swekey.auth.lib.php:163 msgid "No valid authentication key plugged" -msgstr "" +msgstr "Ni jedan validan autentikacioni ključ nije ubačen" #: libraries/auth/swekey/swekey.auth.lib.php:195 msgid "Authenticating..." -msgstr "" +msgstr "Autentikacija..." #: libraries/blobstreaming.lib.php:272 msgid "PBMS error" -msgstr "" +msgstr "Greška u PBMS-u" #: libraries/blobstreaming.lib.php:306 #| msgid "MySQL connection collation" @@ -2819,36 +2867,36 @@ msgstr "PBMS veza neuspešna:" #: libraries/blobstreaming.lib.php:361 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "PBMS operacija vrati BLOB informaciije je neuspešna:" #: libraries/blobstreaming.lib.php:373 msgid "PBMS get BLOB Content-Type failed" -msgstr "" +msgstr "PBMS operacija vrati BLOB Content-Type je neuspešna" #: libraries/blobstreaming.lib.php:401 msgid "View image" -msgstr "" +msgstr "Prikaži sliku" #: libraries/blobstreaming.lib.php:408 msgid "Play audio" -msgstr "" +msgstr "Pusti zvuk" #: libraries/blobstreaming.lib.php:417 msgid "View video" -msgstr "" +msgstr "Pogledaj video" #: libraries/blobstreaming.lib.php:423 msgid "Download file" -msgstr "" +msgstr "Preuzmite datoteku" #: libraries/blobstreaming.lib.php:494 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Ne mogu da otvorim datoteku: %s" #: libraries/bookmark.lib.php:73 msgid "shared" -msgstr "" +msgstr "Deljeno" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:185 libraries/export/xml.php:51 @@ -2880,7 +2928,7 @@ msgstr "Idi na bazu" #: libraries/build_html_for_db.lib.php:131 msgid "Not replicated" -msgstr "" +msgstr "Nije replikovano" #: libraries/build_html_for_db.lib.php:137 #| msgid "Replication" @@ -2898,11 +2946,11 @@ msgstr "Proveri privilegije" #: libraries/common.inc.php:151 msgid "possible exploit" -msgstr "" +msgstr "moguća zloupotreba" #: libraries/common.inc.php:160 msgid "numeric key detected" -msgstr "" +msgstr "otkriven numerički ključ" #: libraries/common.inc.php:624 #| msgid "Could not load default configuration from: \"%1$s\"" @@ -2914,6 +2962,8 @@ msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" +"Ovo obično znači da postoji sintaksna greška, molimo vas pogledajte greške " +"prikazane ispod." #: libraries/common.inc.php:632 #, php-format @@ -3010,7 +3060,7 @@ msgstr "MySQL reče: " #: libraries/common.lib.php:1130 msgid "Failed to connect to SQL validator!" -msgstr "" +msgstr "Neuspelo povezivanje na SQL validator!" #: libraries/common.lib.php:1171 libraries/config/messages.inc.php:485 msgid "Explain SQL" @@ -3043,7 +3093,7 @@ msgstr "Proveri SQL" #: libraries/common.lib.php:1305 msgid "Inline edit of this query" -msgstr "" +msgstr "Uredi ovaj upit na licu mesta" #: libraries/common.lib.php:1307 #| msgid "Engines" @@ -3119,7 +3169,7 @@ msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" #: libraries/common.lib.php:2753 msgid "Click to toggle" -msgstr "" +msgstr "Kliknite da biste zamenili" #: libraries/common.lib.php:3127 libraries/common.lib.php:3134 #: libraries/common.lib.php:3349 libraries/config/setup.forms.php:296 @@ -3157,7 +3207,7 @@ msgstr "Operacije" #: libraries/common.lib.php:3281 libraries/sql_query_form.lib.php:443 #: prefs_manage.php:239 msgid "Browse your computer:" -msgstr "" +msgstr "Pretražite vaš kompjuter:" #: libraries/common.lib.php:3300 #, php-format @@ -3172,11 +3222,11 @@ msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" #: libraries/common.lib.php:3330 msgid "There are no files to upload" -msgstr "" +msgstr "Nema datoteka za otpremanje" #: libraries/common.lib.php:3358 libraries/common.lib.php:3359 msgid "Execute" -msgstr "" +msgstr "Izvrši" #: libraries/common.lib.php:3839 msgid "Print" @@ -3185,23 +3235,23 @@ msgstr "Štampaj" #: libraries/config.values.php:45 libraries/config.values.php:47 #: libraries/config.values.php:51 msgid "Both" -msgstr "" +msgstr "Oba" #: libraries/config.values.php:47 msgid "Nowhere" -msgstr "" +msgstr "Nigde" #: libraries/config.values.php:47 msgid "Left" -msgstr "" +msgstr "Levo" #: libraries/config.values.php:47 msgid "Right" -msgstr "" +msgstr "Desno" #: libraries/config.values.php:76 msgid "Open" -msgstr "" +msgstr "Otvori" #: libraries/config.values.php:77 #| msgid "Unclosed quote" @@ -3224,7 +3274,7 @@ msgstr "Struktura" #: libraries/export/latex.php:42 libraries/export/odt.php:34 #: libraries/export/sql.php:130 libraries/export/texytext.php:24 msgid "data" -msgstr "" +msgstr "podatak" #: libraries/config.values.php:101 libraries/export/htmlword.php:25 #: libraries/export/latex.php:42 libraries/export/odt.php:34 @@ -3235,15 +3285,15 @@ msgstr "Struktura i podaci" #: libraries/config.values.php:103 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "Brzo - prikazuje samo minimum opcija za konfigurisanje" #: libraries/config.values.php:104 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "Prilagođeno - prikazuje sve moguće opcije za konfigurisanje" #: libraries/config.values.php:105 msgid "Custom - like above, but without the quick/custom choice" -msgstr "" +msgstr "Prilagođeno - kao iznad, ali bez izbora brzo/prilagođeno" #: libraries/config.values.php:123 #| msgid "Complete inserts" @@ -3257,43 +3307,43 @@ msgstr "Prošireni INSERT" #: libraries/config.values.php:125 msgid "both of the above" -msgstr "" +msgstr "oba gore navedena" #: libraries/config.values.php:126 msgid "neither of the above" -msgstr "" +msgstr "nijedan od gore navedenih" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:438 msgid "Not a positive number" -msgstr "" +msgstr "Nije pozitivan broj" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:450 msgid "Not a non-negative number" -msgstr "" +msgstr "Nije nenegativan broj" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:426 msgid "Not a valid port number" -msgstr "" +msgstr "Nije ispravan broj porta" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:547 #: libraries/config/validate.lib.php:378 libraries/config/validate.lib.php:465 msgid "Incorrect value" -msgstr "" +msgstr "Neispravna vrednost" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:479 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Vrednost mora biti jednaka ili manja od %s" #: libraries/config/FormDisplay.class.php:511 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "Nedostaju podaci za %s" #: libraries/config/FormDisplay.class.php:708 #: libraries/config/FormDisplay.class.php:712 @@ -3305,21 +3355,21 @@ msgstr "Nedostupno" #: libraries/config/FormDisplay.class.php:713 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" zahteva %s proširenje" #: libraries/config/FormDisplay.class.php:727 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "uvoz neće raditi, nedostaje funkcija (%s)" #: libraries/config/FormDisplay.class.php:731 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "izvoz neće raditi, nedostaje funkcija (%s)" #: libraries/config/FormDisplay.class.php:738 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL validator je isključen" #: libraries/config/FormDisplay.class.php:745 msgid "SOAP extension not found" @@ -3328,29 +3378,30 @@ msgstr "SOAP ekstenzija nije pronađena" #: libraries/config/FormDisplay.class.php:753 #, php-format msgid "maximum %s" -msgstr "" +msgstr "maksimalno %s" #: libraries/config/FormDisplay.tpl.php:141 main.php:238 msgid "Wiki" -msgstr "" +msgstr "Wiki" #: libraries/config/FormDisplay.tpl.php:199 msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" +"Ova postavka je onemogućena, ona neće biti primenjena na vašu konfiguraciju" #: libraries/config/FormDisplay.tpl.php:274 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Postavi vrednost: %s" #: libraries/config/FormDisplay.tpl.php:279 #: libraries/config/messages.inc.php:358 msgid "Restore default value" -msgstr "" +msgstr "Vrati podrazumevanu vrednost" #: libraries/config/FormDisplay.tpl.php:295 msgid "Allow users to customize this value" -msgstr "" +msgstr "Dozvoli korisnicima da prilagode ovu vrednost" #: libraries/config/FormDisplay.tpl.php:356 #: libraries/schema/User_Schema.class.php:508 prefs_manage.php:318 @@ -3360,7 +3411,7 @@ msgstr "Poništi" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Povećava efikasnost osvežavanja ekrana" #: libraries/config/messages.inc.php:18 #| msgid "Enabled" @@ -3371,6 +3422,8 @@ msgstr "Omogući Ajax" msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" +"Ako je omogućeno korisnik može uneti bilo koji MySQL server u login formu za " +"autentikaciju iz pomoć kukija" #: libraries/config/messages.inc.php:20 msgid "Allow login to any MySQL server" @@ -3382,6 +3435,10 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Omogućavanje ovoga dozvoljava da stranica koja se nalazi na drugom domenu " +"pozove phpMyAdmin unutar frame-a, i predstavlja potencijalni " +"[strong]bezbednosni problem[/strong] dozvoljavajući cross-frame scripting " +"napade" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -3389,43 +3446,47 @@ msgstr "" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "" +msgstr "Prikaži "Drop database" link običnim korisnicima" #: libraries/config/messages.inc.php:24 msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" +"Tajna fraza koja se koristi za enkripciju kukija u [kbd]cookie[/kbd] " +"autentikaciji" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Blowfish tajni ključ" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Istakni izabrane redove" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Oznaka reda" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Istakni red na koji pokazuje kursor miša" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Pokazivač isticanja" #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Omogući [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] za operacije uvoza i " +"izvoza" #: libraries/config/messages.inc.php:31 msgid "Bzip2" -msgstr "" +msgstr "Bzip2" #: libraries/config/messages.inc.php:32 msgid "" @@ -3433,16 +3494,21 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" +"Definiše koji tip kontrola za uređivanje bi trebalo koristiti za CHAR i " +"VARCHAR kolone, [kbd]input[/kbd] - dozvoljava ograničavanje dužine ulaza, " +"[kbd]textarea[/kbd] - dozvoljava znak za novu liniju u kolonama" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Uređenje CHAR kolona" #: libraries/config/messages.inc.php:34 msgid "" "Defines the minimum size for input fields generated for CHAR and VARCHAR " "columns" msgstr "" +"Definiše minimalnu veličinu polja za unos generisanih za CHAR i VARCHAR " +"kolone" #: libraries/config/messages.inc.php:35 msgid "Minimum size for input field" @@ -3453,6 +3519,8 @@ msgid "" "Defines the maximum size for input fields generated for CHAR and VARCHAR " "columns" msgstr "" +"Definiše maksimalnu veličinu polja za unos generisanih za CHAR i VARCHAR " +"kolone" #: libraries/config/messages.inc.php:37 #| msgid "Maximum size for temporary sort files" @@ -3461,38 +3529,41 @@ msgstr "Maksimalna veličina za input polje" #: libraries/config/messages.inc.php:38 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Broj kolona za CHAR/VARCHAR textarea polja" #: libraries/config/messages.inc.php:39 msgid "CHAR textarea columns" -msgstr "" +msgstr "CHAR textarea kolone" #: libraries/config/messages.inc.php:40 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Broj redova za CHAR/VARCHAR textarea polja" #: libraries/config/messages.inc.php:41 msgid "CHAR textarea rows" -msgstr "" +msgstr "CHAR textarea redovi" #: libraries/config/messages.inc.php:42 msgid "Check config file permissions" -msgstr "" +msgstr "Proveri prava pristupa knfiguracione datoteke" #: libraries/config/messages.inc.php:43 msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" +"Kompresuje izvezene podatke sa gzip/bzip2 u letu bez potrebe za previše " +"memorije, ako naiđete na probleme sa kreiranim gzip/bzip2 datotekama " +"isključite ovu opciju" #: libraries/config/messages.inc.php:44 msgid "Compress on the fly" -msgstr "" +msgstr "Kompresija u letu" #: libraries/config/messages.inc.php:45 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:167 msgid "Configuration file" -msgstr "" +msgstr "Konfiguraciona datoteka" #: libraries/config/messages.inc.php:46 msgid "" @@ -3502,11 +3573,11 @@ msgstr "" #: libraries/config/messages.inc.php:47 msgid "Confirm DROP queries" -msgstr "" +msgstr "Potvrdi DROP upite" #: libraries/config/messages.inc.php:48 msgid "Debug SQL" -msgstr "" +msgstr "Debagovanje SQL-a" #: libraries/config/messages.inc.php:49 msgid "Default display direction" @@ -3514,7 +3585,7 @@ msgstr "Podrazumevani pravac prikaza" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a database" -msgstr "" +msgstr "Kartica koja se prikazuje kada se ulazi u bazu" #: libraries/config/messages.inc.php:51 msgid "Default database tab" @@ -3522,7 +3593,7 @@ msgstr "Podrazumevana kartica baze" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a server" -msgstr "" +msgstr "Kartica koja se prikazuje kada se ulazi u server" #: libraries/config/messages.inc.php:53 msgid "Default server tab" @@ -3530,7 +3601,7 @@ msgstr "Podrazumevana kartica servera" #: libraries/config/messages.inc.php:54 msgid "Tab that is displayed when entering a table" -msgstr "" +msgstr "Kartica koja se prikazuje kada se ulazi u tabelu" #: libraries/config/messages.inc.php:55 msgid "Default table tab" @@ -3538,33 +3609,35 @@ msgstr "Podrazumevana kartica tabele" #: libraries/config/messages.inc.php:56 msgid "Show binary contents as HEX by default" -msgstr "" +msgstr "Prikaži binarni sadržaj kao HEX vrednosti podrazumevano" #: libraries/config/messages.inc.php:57 libraries/display_tbl.lib.php:679 msgid "Show binary contents as HEX" -msgstr "" +msgstr "Prikaži binarni sadržaj kao HEX vrednosti" #: libraries/config/messages.inc.php:58 msgid "Show database listing as a list instead of a drop down" -msgstr "" +msgstr "Prikaži spisak baza u običnoj listi umesto u padajućoj" #: libraries/config/messages.inc.php:59 msgid "Display databases as a list" -msgstr "" +msgstr "Prikaži baze u obliku liste" #: libraries/config/messages.inc.php:60 msgid "Show server listing as a list instead of a drop down" -msgstr "" +msgstr "Prikaži spisak servera u običnoj listi umesto u padajućoj" #: libraries/config/messages.inc.php:61 msgid "Display servers as a list" -msgstr "" +msgstr "Prikaži servere u obliku liste" #: libraries/config/messages.inc.php:62 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Isključi masovne operacije održavanja tabela, kao što su optimizacija ili " +"popravljanje izabranih tabela iz baze." #: libraries/config/messages.inc.php:63 #| msgid "Table maintenance" @@ -3573,7 +3646,7 @@ msgstr "Isključi multi-tabelarno održavanje" #: libraries/config/messages.inc.php:64 msgid "Edit SQL queries in popup window" -msgstr "" +msgstr "Uredi SQL upite u iskačućem prozoru" #: libraries/config/messages.inc.php:65 #| msgid "Edit next row" @@ -3587,11 +3660,11 @@ msgstr "Prikaži greške" #: libraries/config/messages.inc.php:67 msgid "Gather errors" -msgstr "" +msgstr "Prikupljanje grešaka" #: libraries/config/messages.inc.php:68 msgid "Show icons for warning, error and information messages" -msgstr "" +msgstr "Prikaži ikonicu za poruke upozorenja, greške i informacije" #: libraries/config/messages.inc.php:69 msgid "Iconic errors" @@ -3602,10 +3675,12 @@ msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" +"Postavi broj sekundi koliko je dozvoljeno da se skript izvršava " +"([kbd]0[/kbd] za neograničeno)" #: libraries/config/messages.inc.php:71 msgid "Maximum execution time" -msgstr "" +msgstr "Maksimalno vreme izvršavanja" #: libraries/config/messages.inc.php:72 prefs_manage.php:297 msgid "Save as file" @@ -3660,7 +3735,7 @@ msgstr "Zameni NULL sa" #: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:86 msgid "Remove CRLF characters within columns" -msgstr "" +msgstr "Izbaci CRLF znakove u kolonama" #: libraries/config/messages.inc.php:81 libraries/config/messages.inc.php:247 #: libraries/config/messages.inc.php:255 libraries/import/csv.php:63 @@ -3736,7 +3811,7 @@ msgstr "Način izvoza" #: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:118 msgid "Save on server" -msgstr "" +msgstr "Snimi na server" #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:119 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 @@ -3759,7 +3834,7 @@ msgstr "Mod SQL kompatibilnosti" #: libraries/config/messages.inc.php:124 libraries/export/sql.php:190 msgid "CREATE TABLE options:" -msgstr "" +msgstr "CREATE TABLE opcije:" #: libraries/config/messages.inc.php:125 msgid "Creation/Update/Check dates" @@ -3783,7 +3858,7 @@ msgstr "Ignoriši duplikate pri umetanju" #: libraries/config/messages.inc.php:134 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "Sintaksa koja se koristi kod umetanja podataka" #: libraries/config/messages.inc.php:135 libraries/export/sql.php:285 msgid "Maximal length of created query" @@ -3803,11 +3878,11 @@ msgstr "Izvezi vreme u UTC" #: libraries/config/messages.inc.php:150 msgid "Force secured connection while using phpMyAdmin" -msgstr "" +msgstr "Obavezno uspostavite bezbednu vezu dok koristite phpMyAdmin" #: libraries/config/messages.inc.php:151 msgid "Force SSL connection" -msgstr "" +msgstr "Obavezno koristi SSL vezu" #: libraries/config/messages.inc.php:152 msgid "" @@ -3817,23 +3892,23 @@ msgstr "" #: libraries/config/messages.inc.php:153 msgid "Foreign key dropdown order" -msgstr "" +msgstr "Redosled stranih ključeva u padajućoj listi" #: libraries/config/messages.inc.php:154 msgid "A dropdown will be used if fewer items are present" -msgstr "" +msgstr "Biće korišćena padajuća lista ako je manje stavki prisutno" #: libraries/config/messages.inc.php:155 msgid "Foreign key limit" -msgstr "" +msgstr "Ograničenje stranog ključa" #: libraries/config/messages.inc.php:156 msgid "Browse mode" -msgstr "" +msgstr "Režim pregleda" #: libraries/config/messages.inc.php:157 msgid "Customize browse mode" -msgstr "" +msgstr "Prilagodi režim pretraživanja" #: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:161 #: libraries/config/messages.inc.php:178 libraries/config/messages.inc.php:189 @@ -3852,19 +3927,19 @@ msgstr "CSV" #: libraries/config/messages.inc.php:162 msgid "Developer" -msgstr "" +msgstr "Programer" #: libraries/config/messages.inc.php:163 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Podešavanja za phpMyAdmin programere" #: libraries/config/messages.inc.php:164 msgid "Edit mode" -msgstr "" +msgstr "Režim uređenja" #: libraries/config/messages.inc.php:165 msgid "Customize edit mode" -msgstr "" +msgstr "Podešavanje režima uređenja" #: libraries/config/messages.inc.php:167 msgid "Export defaults" @@ -8280,7 +8355,6 @@ msgid "Displays a link to download this image." msgstr "Prikazuje link ka ovoj snimci (npr. direktno preuzimanje iz BLOB-a)." #: libraries/transformations/text_plain__dateformat.inc.php:10 -#, fuzzy #| msgid "" #| "ys a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as matted " #| "e. The first option is the offset (in hours) which will be ed to the " @@ -8299,18 +8373,16 @@ msgid "" "documentation for PHP's strftime() function and for \"utc\" it is done using " "gmdate() function." msgstr "" -"Prikazuje TIME, TIMESTAMP, DATETIME ili polje sa numeričkom juniks " -"vremenskom oznakom (timestamp) kao formatirani datum. Prva opcija je pomeraj " -"(u satima) koji se dodaje vremenskoj oznaci (podrazumevamo: 0). Drugu opciju " -"koristitte da odredite drugačiji string za formatiranje datuma/vremena. " -"Treća opcija određuje da li želite da vidite lokalni ili UTC datum " -"(koristite stringove \"local\" ili \"utc\" za to). U skladu sa tim, format " -"datuma ima različite vrednosti - za \"local\" pogledajte PHP-ovu " -"dokumentaciju za funkciju strftime() dok je za \"utc\" to urađeno " -"korišćenjem fukcije gmdate()." +"Prikazuje TIME, TIMESTAMP, DATETIME ili numeričku unix timestamp kolonu kao " +"formatiran datum. Prva opcija je razlika (u časovima) koja će biti dodata na " +"timestamp (Podrazumevano: 0). Druga opcija se koristi za zadavanje " +"različitog datum/vreme format stringa. Treća opcija određuje da li želiš da " +"vidiš lokalno vreme ili UTC vreme (koristi \"local\" ili \"utc\" stringove). " +"Zbog toga, format datuma ima drugačiju vrednost - za \"local\" pogledaj " +"dokumentaciju za PHP funkciju strftime() a za \"utc\" se koristi funkcija " +"gmdate()." #: libraries/transformations/text_plain__external.inc.php:10 -#, fuzzy #| msgid "" #| "ONLY: Launches an external application and feeds it the field data ndard " #| "input. Returns the standard output of the application. The ault is y, to " @@ -8340,21 +8412,22 @@ msgstr "" "alate koje želite da koristite. Prva opcija je broj programa koje želite da " "koristite, a druga su parametri programa. Ako se treći parametar postavi na " "1 izlaz će biti konvertovan koristeći htmlspecialchars() (podrazumevano je " -"1). Ako je četvrti parametar postavljen na 1, NOWRAP će biti dodato ćeliji " -"sa sadržajem tako da će izlaz biti prikazan bez izmena. (podrazumevano 1)" +"1). Ako je četvrti parametar postavljen na 1, biće zagarantovano da se " +"redovi neće prelamati i da će izlaz biti prikazan u jednoj liniji. " +"(podrazumevano 1)." #: libraries/transformations/text_plain__formatted.inc.php:10 -#, fuzzy #| msgid "" #| "ys the contents of the field as-is, without running it through ecialchars" #| "(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." -msgstr "Čuva originalno formatiranje polja. Escaping se ne vrši." +msgstr "" +"Prikazuje sadžaj kolone kakva je, bez propuštanja kroz htmlspecialchars(). " +"T.j. podrazumeva se da kolona sadrži ispravan HTML." #: libraries/transformations/text_plain__imagelink.inc.php:10 -#, fuzzy #| msgid "" #| "ys an image and a link; the field contains the filename. The first ion " #| "isURL prefix like \"http://www.example.com/\". The second and rd options " @@ -8364,12 +8437,11 @@ msgid "" "option is a URL prefix like \"http://www.example.com/\". The second and " "third options are the width and the height in pixels." msgstr "" -"Prikazuje sliku i link, polje sadrži naziv datoteke; prva opcija je prefiks " -"kao \"http://domain.com/\", druga opcija je širina u pikselima, treća je " -"visina." +"Prikazuje sliku i link; kolona sadrži ime datoteke. Prva opcija je URL " +"prefiks kao \"http://www.example.com/\". Druga i treća opcija su širina i " +"dužina u pikselima." #: libraries/transformations/text_plain__link.inc.php:10 -#, fuzzy #| msgid "" #| "ys a link; the field contains the filename. The first option is a " #| "prefixke \"http://www.example.com/\". The second option is a title the " @@ -8379,8 +8451,8 @@ msgid "" "prefix like \"http://www.example.com/\". The second option is a title for " "the link." msgstr "" -"Prikazuje link, polje sadrži naziv datoteke; prva opcija je prefiks kao " -"\"http://domain.com/\", druga opcija je naslov za link." +"Prikazuje link; kolona sadrži ime datoteke. Prva opcija je URL prefiks kao " +"\"http://www.example.com/\". Druga opcija je naslov za link." #: libraries/transformations/text_plain__longToIpv4.inc.php:10 msgid "" @@ -8581,7 +8653,7 @@ msgid "" msgstr "" #: main.php:321 -#, fuzzy, php-format +#, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " #| "out why click %shere%s." @@ -8589,8 +8661,9 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " -"saznali zašto, kliknite %sovde%s." +"Skladište konfiguracije za phpMyAdmin nije kompletno konfigurisano, neke " +"dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde%" +"s." #: main.php:336 msgid "" @@ -9407,11 +9480,10 @@ msgid "Database for user" msgstr "Baza za korisnika" #: server_privileges.php:2221 -#, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" -msgstr "nema" +msgstr "Nijedna" #: server_privileges.php:2222 msgid "Create database with same name and grant all privileges" @@ -11238,63 +11310,56 @@ msgid "Line" msgstr "" #: tbl_chart.php:95 -#, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" -msgstr "Skladištenja" +msgstr "Kriva" #: tbl_chart.php:97 -#, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" -msgstr "PB" +msgstr "Kružni grafikon" #: tbl_chart.php:100 msgid "Stacked" msgstr "" #: tbl_chart.php:103 -#, fuzzy #| msgid "Report title" msgid "Chart title" -msgstr "Naslov izveštaja" +msgstr "Naslov grafikona" #: tbl_chart.php:109 msgid "X-Axis:" msgstr "" #: tbl_chart.php:124 -#, fuzzy msgid "Series:" -msgstr "SQL upit" +msgstr "Serije podataka:" #: tbl_chart.php:126 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "The remaining columns" -msgstr "Dodaj/obriši kolonu" +msgstr "Preostale kolone" #: tbl_chart.php:139 msgid "X-Axis label:" msgstr "" #: tbl_chart.php:141 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Vrednost" +msgstr "X vrednosti" #: tbl_chart.php:142 msgid "Y-Axis label:" msgstr "" #: tbl_chart.php:143 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Vrednost" +msgstr "Y vrednosti" #: tbl_create.php:31 #, php-format @@ -11302,9 +11367,9 @@ msgid "Table %s already exists!" msgstr "Tabela %s već postoji!" #: tbl_create.php:227 -#, fuzzy, php-format +#, php-format msgid "Table %1$s has been created." -msgstr "Tabela %s je odbačena" +msgstr "Tabela %1$s je kreirana." #: tbl_export.php:26 msgid "View dump (schema) of table" @@ -11323,36 +11388,32 @@ msgid "Height" msgstr "" #: tbl_gis_visualization.php:136 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" -msgstr "Dodaj/obriši kolonu" +msgstr "Označi kolonu" #: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" #: tbl_gis_visualization.php:151 -#, fuzzy #| msgid "Total" msgid "Spatial column" -msgstr "Ukupno" +msgstr "Prostorna kolona" #: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" #: tbl_gis_visualization.php:177 -#, fuzzy #| msgid "Save as file" msgid "Save to file" -msgstr "Sačuvaj kao datoteku" +msgstr "Sačuvaj u datoteku" #: tbl_gis_visualization.php:178 -#, fuzzy #| msgid "Table name" msgid "File name" -msgstr "Naziv tabele" +msgstr "Naziv datoteke" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -11371,10 +11432,9 @@ msgid "Add index" msgstr "" #: tbl_indexes.php:175 -#, fuzzy #| msgid "Print view" msgid "Edit index" -msgstr "Za štampu" +msgstr "Uredi indeks" #: tbl_indexes.php:187 msgid "Index name:" @@ -11458,30 +11518,26 @@ msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" #: tbl_operations.php:688 -#, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" -msgstr "Osveži tabelu (\"FLUSH\")" +msgstr "Snimi sve baferovane izmene nad tabelom (FLUSH)" #: tbl_operations.php:697 -#, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" -msgstr "Prikaz podataka tabele" +msgstr "Brisanje podataka ili tabele" #: tbl_operations.php:714 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:736 -#, fuzzy msgid "Delete the table (DROP)" -msgstr "Baza ne postoji" +msgstr "Brisanje tabele (DROP)" #: tbl_operations.php:758 -#, fuzzy msgid "Partition maintenance" -msgstr "Radnje na tabeli" +msgstr "Održavanje particija" #: tbl_operations.php:766 #, php-format @@ -11493,9 +11549,8 @@ msgid "Analyze" msgstr "" #: tbl_operations.php:770 -#, fuzzy msgid "Check" -msgstr "Češki" +msgstr "Provera" #: tbl_operations.php:771 msgid "Optimize" @@ -11518,10 +11573,9 @@ msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" #: tbl_printview.php:72 -#, fuzzy #| msgid "Show tables" msgid "Showing tables" -msgstr "Prikaži tabele" +msgstr "Prikazivanje tabela" #: tbl_printview.php:269 tbl_structure.php:780 msgid "Space usage" @@ -11561,10 +11615,9 @@ msgid "Error creating foreign key on %1$s (check data types)" msgstr "" #: tbl_relation.php:398 -#, fuzzy #| msgid "Internal relations" msgid "Internal relation" -msgstr "Unutrašnje relacije" +msgstr "Unutrašnja relacija" #: tbl_relation.php:400 msgid "" @@ -11581,10 +11634,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" #: tbl_select.php:180 -#, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" -msgstr "Izaberi polja (najmanje jedno)" +msgstr "Izaberi kolone (najmanje jednu):" #: tbl_select.php:198 msgid "Add search conditions (body of the \"where\" clause):" @@ -11623,17 +11675,16 @@ msgid "Add FULLTEXT index" msgstr "" #: tbl_structure.php:369 tbl_tracking.php:295 -#, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" -msgstr "nema" +msgstr "Ništa" #: tbl_structure.php:378 -#, fuzzy, php-format +#, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" -msgstr "Tabela %s je odbačena" +msgstr "Kolona %s je obrisana" #: tbl_structure.php:395 tbl_structure.php:492 #, php-format @@ -11648,16 +11699,14 @@ msgid "An index has been added on %s" msgstr "Ključ je upravo dodat %s" #: tbl_structure.php:480 -#, fuzzy #| msgid "Show PHP information" msgid "Show more actions" -msgstr "Prikaži informacije o PHP-u" +msgstr "Pikaži još akcija" #: tbl_structure.php:623 -#, fuzzy #| msgid "Print view" msgid "Edit view" -msgstr "Za štampu" +msgstr "Uredi pogled" #: tbl_structure.php:640 msgid "Relation view" @@ -11668,10 +11717,9 @@ msgid "Propose table structure" msgstr "Predloži strukturu tabele" #: tbl_structure.php:666 -#, fuzzy #| msgid "Add %s field(s)" msgid "Add column" -msgstr "Dodaj %s polja" +msgstr "Dodaj kolonu" #: tbl_structure.php:680 msgid "At End of Table" @@ -11687,10 +11735,10 @@ msgid "After %s" msgstr "Posle %s" #: tbl_structure.php:719 -#, fuzzy, php-format +#, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" -msgstr "Napravi ključ na %s kolona" +msgstr "Kreiraj indeks na  %s kolonama" #: tbl_structure.php:865 msgid "partitioned" @@ -11744,10 +11792,9 @@ msgid "Tracking data definition successfully deleted" msgstr "" #: tbl_tracking.php:390 tbl_tracking.php:407 -#, fuzzy #| msgid "Query type" msgid "Query error" -msgstr "Vrsta upita" +msgstr "Greška u upitu" #: tbl_tracking.php:405 msgid "Tracking data manipulation successfully deleted" @@ -11763,21 +11810,18 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" #: tbl_tracking.php:438 -#, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" -msgstr "Dozvoljava umetanje i zamenu podataka." +msgstr "Obriši red sa podacima o praćenju iz izveštaja" #: tbl_tracking.php:449 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "Baza ne postoji" +msgstr "Nema podataka" #: tbl_tracking.php:459 tbl_tracking.php:516 -#, fuzzy msgid "Date" -msgstr "Podaci" +msgstr "Datum" #: tbl_tracking.php:461 msgid "Data definition statement" @@ -11804,9 +11848,9 @@ msgid "SQL execution" msgstr "" #: tbl_tracking.php:578 -#, fuzzy, php-format +#, php-format msgid "Export as %s" -msgstr "Tip izvoza" +msgstr "Izvezi kao %s" #: tbl_tracking.php:618 msgid "Show versions" @@ -11844,20 +11888,17 @@ msgid "Track these data manipulation statements:" msgstr "" #: tbl_tracking.php:750 -#, fuzzy msgid "Create version" -msgstr "Napravi relaciju" +msgstr "Kreiraj verziju" #: tbl_zoom_select.php:142 -#, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" +msgstr "Napravi \"upit po primeru\" (džoker: \"%\") za dve različite kolone" #: tbl_zoom_select.php:152 -#, fuzzy msgid "Additional search criteria" -msgstr "SQL upit" +msgstr "Dodatni kreterijum za pretragu" #: tbl_zoom_select.php:283 msgid "Use this column to label each point" @@ -11872,15 +11913,13 @@ msgid "Browse/Edit the points" msgstr "" #: tbl_zoom_select.php:424 -#, fuzzy msgid "How to use" -msgstr "verzija PHP-a" +msgstr "Kako se koristi" #: tbl_zoom_select.php:431 -#, fuzzy #| msgid "Reset" msgid "Reset zoom" -msgstr "Poništi" +msgstr "Poništi zumiranje" #: themes.php:28 msgid "Get more themes!" @@ -11900,7 +11939,6 @@ msgid "Available transformations" msgstr "Dostupne transformacije" #: transformation_overview.php:47 -#, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" @@ -11919,9 +11957,8 @@ msgid "VIEW name" msgstr "naziv za VIEW" #: view_operations.php:91 -#, fuzzy msgid "Rename view to" -msgstr "Promeni ime tabele u " +msgstr "Preimenuj pogled u" #: po/advisory_rules.php:5 msgid "Uptime below one day" @@ -11943,9 +11980,8 @@ msgid "The uptime is only %s" msgstr "" #: po/advisory_rules.php:10 -#, fuzzy msgid "Questions below 1,000" -msgstr "Persijski" +msgstr "Pitanja ispod 1,000" #: po/advisory_rules.php:11 msgid "" @@ -11960,15 +11996,14 @@ msgid "" msgstr "" #: po/advisory_rules.php:13 -#, fuzzy, php-format +#, php-format #| msgid "max. concurrent connections" msgid "Current amount of Questions: %s" -msgstr "maks. istovremenih veza" +msgstr "Trenutna količina pitanja: %s" #: po/advisory_rules.php:15 -#, fuzzy msgid "Percentage of slow queries" -msgstr "Prikaži kompletne upite" +msgstr "Procenat sporih upita" #: po/advisory_rules.php:16 msgid "" @@ -11987,10 +12022,9 @@ msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" #: po/advisory_rules.php:20 -#, fuzzy #| msgid "Flush query cache" msgid "Slow query rate" -msgstr "Očisti keš upita" +msgstr "Stopa sporih upita" #: po/advisory_rules.php:21 msgid "" @@ -12005,9 +12039,8 @@ msgid "" msgstr "" #: po/advisory_rules.php:25 -#, fuzzy msgid "Long query time" -msgstr "SQL upit" +msgstr "Dugo vreme izvršavanja upita" #: po/advisory_rules.php:26 msgid "" @@ -12027,9 +12060,8 @@ msgid "long_query_time is currently set to %ds." msgstr "" #: po/advisory_rules.php:30 -#, fuzzy msgid "Slow query logging" -msgstr "SQL upit" +msgstr "Sporo upisivanje upita u log" #: po/advisory_rules.php:31 msgid "The slow query log is disabled." @@ -12046,10 +12078,9 @@ msgid "log_slow_queries is set to 'OFF'" msgstr "" #: po/advisory_rules.php:35 -#, fuzzy #| msgid "Select Tables" msgid "Release Series" -msgstr "Izaberi tabele" +msgstr "Oslobodi serije podataka" #: po/advisory_rules.php:36 msgid "The MySQL server version less than 5.1." @@ -12062,14 +12093,13 @@ msgid "" msgstr "" #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 -#, fuzzy, php-format +#, php-format msgid "Current version: %s" -msgstr "Napravi relaciju" +msgstr "Trenutna verzija: %s" #: po/advisory_rules.php:40 po/advisory_rules.php:45 -#, fuzzy msgid "Minor Version" -msgstr "Persijski" +msgstr "Manja verzija" #: po/advisory_rules.php:41 msgid "Version less than 5.1.30 (the first GA release of 5.1)." @@ -12086,16 +12116,14 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" #: po/advisory_rules.php:47 -#, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" -msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." +msgstr "Trebalo bi da pređete na stabilnu verziju MySQL-a 5.5" #: po/advisory_rules.php:50 po/advisory_rules.php:55 po/advisory_rules.php:60 -#, fuzzy #| msgid "Description" msgid "Distribution" -msgstr "Opis" +msgstr "Distribucija" #: po/advisory_rules.php:51 msgid "Version is compiled from source, not a MySQL official binary." @@ -12134,10 +12162,9 @@ msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" #: po/advisory_rules.php:65 -#, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" -msgstr "MySQL set karaktera" +msgstr "Arhitektura MySQL-a" #: po/advisory_rules.php:66 msgid "MySQL is not compiled as a 64-bit package." @@ -12156,16 +12183,14 @@ msgid "Available memory on this host: %s" msgstr "" #: po/advisory_rules.php:70 -#, fuzzy #| msgid "Query cache" msgid "Query cache disabled" -msgstr "Keš upita" +msgstr "Keš upita isključen" #: po/advisory_rules.php:71 -#, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." -msgstr "Server ne odgovara" +msgstr "Keš upita nije omogućen." #: po/advisory_rules.php:72 msgid "" @@ -12180,10 +12205,9 @@ msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" #: po/advisory_rules.php:75 -#, fuzzy #| msgid "Query cache" msgid "Query caching method" -msgstr "Keš upita" +msgstr "Način keširanja upita" #: po/advisory_rules.php:76 msgid "Suboptimal caching method." @@ -12205,10 +12229,10 @@ msgid "" msgstr "" #: po/advisory_rules.php:80 -#, fuzzy, php-format +#, php-format #| msgid "Query cache" msgid "Query cache efficiency (%%)" -msgstr "Keš upita" +msgstr "Efikasnost keša upita (%%)" #: po/advisory_rules.php:81 msgid "Query cache not running efficiently, it has a low hit rate." @@ -12224,9 +12248,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" #: po/advisory_rules.php:85 -#, fuzzy msgid "Query Cache usage" -msgstr "Keš upita" +msgstr "Upotreba keša upita" #: po/advisory_rules.php:86 #, php-format @@ -12247,10 +12270,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:90 -#, fuzzy #| msgid "Query cache" msgid "Query cache fragmentation" -msgstr "Keš upita" +msgstr "Fragmentacija keša upita" #: po/advisory_rules.php:91 msgid "The query cache is considerably fragmented." @@ -12281,12 +12303,11 @@ msgid "Query cache low memory prunes" msgstr "" #: po/advisory_rules.php:96 -#, fuzzy #| msgid "The amount of free memory for query cache." msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." -msgstr "Količina slobodne memorije za keš upita." +msgstr "Keširani upiti su uklonjeni iz keša zbog male količine keš memorije." #: po/advisory_rules.php:97 msgid "" @@ -12303,10 +12324,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:100 -#, fuzzy #| msgid "Query cache" msgid "Query cache max size" -msgstr "Keš upita" +msgstr "Maksimalna veličina keša upita" #: po/advisory_rules.php:101 msgid "" @@ -12326,10 +12346,9 @@ msgid "Current query cache size: %s" msgstr "" #: po/advisory_rules.php:105 -#, fuzzy #| msgid "Query results" msgid "Query cache min result size" -msgstr "Operacije na rezultatima upita" +msgstr "Minimalna veličina keša upita" #: po/advisory_rules.php:106 msgid "" @@ -12353,16 +12372,14 @@ msgid "query_cache_limit is set to 1 MiB" msgstr "" #: po/advisory_rules.php:110 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" -msgstr "Dozvoljava kreiranje privremenih tabela.." +msgstr "Procenat sortiranja koja dovode do kreiranja privremenih tabela" #: po/advisory_rules.php:111 po/advisory_rules.php:116 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." -msgstr "Dozvoljava kreiranje privremenih tabela.." +msgstr "Previše sortiranja dovodi do kreiranja privremenih tabela." #: po/advisory_rules.php:112 po/advisory_rules.php:117 msgid "" @@ -12378,10 +12395,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:115 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" -msgstr "Dozvoljava kreiranje privremenih tabela.." +msgstr "Stopa sortiranja koja dovode do kreiranja privremenih tabela" #: po/advisory_rules.php:118 #, php-format @@ -12390,10 +12406,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:120 -#, fuzzy #| msgid "Start" msgid "Sort rows" -msgstr "Sub" +msgstr "Redovi za sortiranje" #: po/advisory_rules.php:121 msgid "There are lots of rows being sorted." @@ -12413,14 +12428,12 @@ msgid "Sorted rows average: %s" msgstr "" #: po/advisory_rules.php:125 -#, fuzzy msgid "Rate of joins without indexes" -msgstr "Proveri tabelu" +msgstr "Stopa spajanja bez upotrebe indeksa" #: po/advisory_rules.php:126 -#, fuzzy msgid "There are too many joins without indexes." -msgstr "Proveri tabelu" +msgstr "Ima previše spajanja koja ne koriste indekse." #: po/advisory_rules.php:127 msgid "" @@ -12548,11 +12561,10 @@ msgid "" msgstr "" #: po/advisory_rules.php:155 -#, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" -msgstr "%s tabela" +msgstr "Stopa upotrebe privremenog diska" #: po/advisory_rules.php:157 msgid "" @@ -12573,10 +12585,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:160 -#, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" -msgstr "Veličina prihvatnika za sortiranje" +msgstr "Veličina bafera za MyISAM ključeve" #: po/advisory_rules.php:161 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." @@ -12593,16 +12604,16 @@ msgid "key_buffer_size is 0" msgstr "" #: po/advisory_rules.php:165 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" -msgstr "Veličina prihvatnika za sortiranje" +msgstr "Maksimalan %% MyISAM bafera za ključeve je ikad korišćeno" #: po/advisory_rules.php:166 po/advisory_rules.php:171 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "Veličina prihvatnika za sortiranje" +msgstr "Upotreba MyISAM bafer ključeva (keš indeksa) %% je niska." #: po/advisory_rules.php:167 po/advisory_rules.php:172 msgid "" @@ -12612,17 +12623,18 @@ msgid "" msgstr "" #: po/advisory_rules.php:168 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" -msgstr "Veličina prihvatnika za sortiranje" +msgstr "" +"Maksimalno %% MyISAM bafera ključeva je ikad korišćeno: %s%%, ova vrednost " +"bi trebala da bude iznad 95%%" #: po/advisory_rules.php:170 -#, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" -msgstr "Veličina prihvatnika za sortiranje" +msgstr "Procenat iskorišćenosti MyISAM bafera za ključeve" #: po/advisory_rules.php:173 #, php-format @@ -12648,16 +12660,14 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" #: po/advisory_rules.php:180 -#, fuzzy #| msgid "Create table" msgid "Rate of table open" -msgstr "Napravi tabelu" +msgstr "Stopa otvorenih tabela" #: po/advisory_rules.php:181 -#, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." -msgstr "Trenutni broj upisa na čekanju." +msgstr "Stopa otvaranja tabela je visoka." #: po/advisory_rules.php:182 msgid "" @@ -12671,10 +12681,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" #: po/advisory_rules.php:185 -#, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" -msgstr "Format datoteka za uvoz" +msgstr "Procenat iskorišćenosti limita otvorenih datoteka" #: po/advisory_rules.php:186 msgid "" @@ -12695,16 +12704,14 @@ msgid "" msgstr "" #: po/advisory_rules.php:190 -#, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" -msgstr "Format datoteka za uvoz" +msgstr "Stopa otvorenih datoteka" #: po/advisory_rules.php:191 -#, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." -msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." +msgstr "Stopa otvaranja datoteka je visoka." #: po/advisory_rules.php:193 #, php-format @@ -12712,115 +12719,128 @@ msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: po/advisory_rules.php:195 -#, fuzzy, php-format +#, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" -msgstr "Napravi novu tabelu u bazi %s" +msgstr "%% neposrednog zaključavanja tabela" #: po/advisory_rules.php:196 po/advisory_rules.php:201 -#, fuzzy #| msgid " number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." -msgstr "Broj puta kada je brava za tabelu odmah dobavljena." +msgstr "Previše zaključavanja tabela nije odmah neposredno dozvoljeno." #: po/advisory_rules.php:197 po/advisory_rules.php:202 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" +"Optimizuj upite i/ili iskoristi InnoDB za smanjenje čekanja kod " +"zaključavanja." #: po/advisory_rules.php:198 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" +"Trenutno zaključavanje tabela: %s%%, ova vrednost bi trebalo da bude iznad " +"95%%" #: po/advisory_rules.php:200 msgid "Table lock wait rate" -msgstr "" +msgstr "Stopa čekanja na zaključavanje tabela" #: po/advisory_rules.php:203 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" +"Stopa zaklučavanja tabela: %s, ova vrednost bi trebala da bude manja od 1 po " +"satu" #: po/advisory_rules.php:205 -#, fuzzy #| msgid "Key cache" msgid "Thread cache" -msgstr "Keš ključeva" +msgstr "Keš niti" #: po/advisory_rules.php:206 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" +"Keš niti je isključen, ovo rezultira većim opterećenjem kod novih veza na " +"MySQL." #: po/advisory_rules.php:207 msgid "Enable the thread cache by setting {thread_cache_size} > 0." -msgstr "" +msgstr "Omogući keš niti tako što ćeš postaviti {thread_cache_size} > 0." #: po/advisory_rules.php:208 msgid "The thread cache is set to 0" -msgstr "" +msgstr "Keš niti je postavljen na 0" #: po/advisory_rules.php:210 -#, fuzzy, php-format +#, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" -msgstr "Praćenje nije aktivno." +msgstr "%% pristupanja kešu niti" #: po/advisory_rules.php:211 -#, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." -msgstr "Praćenje nije aktivno." +msgstr "Keš niti nije efikasan." #: po/advisory_rules.php:212 msgid "Increase {thread_cache_size}." -msgstr "" +msgstr "Povećaj {thread_cache_size}." #: po/advisory_rules.php:213 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" +"Stopa pristupanja kešu niti: %s%%, ova vrednost bi trebalo da bude iznad 80%" +"%" #: po/advisory_rules.php:215 msgid "Threads that are slow to launch" -msgstr "" +msgstr "Niti koje se sporo pokreću" #: po/advisory_rules.php:216 -#, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." -msgstr "Broj niti koje nisu uspavane." +msgstr "Ima previše niti koje se sporo pokreću." #: po/advisory_rules.php:217 msgid "" "This generally happens in case of general system overload as it is pretty " "simple operations. You might want to monitor your system load carefully." msgstr "" +"Ovo se uglavnom dešava u slučaju preopterećenja sistema jer je prilično " +"jednostavna operacija. Možda je najbolje da pažljivo pratite opterećenje " +"vašeg sistema." #: po/advisory_rules.php:218 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" +"%s nit(i) je bilo potrebno više od %s sekundi da se pokrene, trebalo bi da " +"ih bude 0" #: po/advisory_rules.php:220 msgid "Slow launch time" -msgstr "Preugo vreme pokretanja" +msgstr "Predugo vreme pokretanja" #: po/advisory_rules.php:221 msgid "Slow_launch_threads is above 2s" -msgstr "" +msgstr "Slow_launch_threads je iznad 2s" #: po/advisory_rules.php:222 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" msgstr "" +"Postavi slow_launch_time na 1s ili 2s da bi ispravno izbrojao niti koje se " +"predugo pokreću" #: po/advisory_rules.php:223 #, php-format msgid "slow_launch_time is set to %s" -msgstr "" +msgstr "slow_launch_time je postavljeno na %s" #: po/advisory_rules.php:225 #| msgid "max. concurrent connections" @@ -12937,12 +12957,13 @@ msgid "InnoDB log size" msgstr "Veličina InnoDB log-a" #: po/advisory_rules.php:256 -#, fuzzy #| msgid "The number writes done to the InnoDB buffer pool." msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." -msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." +msgstr "" +"Veličina InnoDB datoteke za logove nije odgovarajuće veličine, u odnosu na " +"InnoDB prostor za bafere." #: po/advisory_rules.php:257 #, php-format @@ -12993,10 +13014,9 @@ msgid "Your absolute InnoDB log size is %s MiB" msgstr "Apsolutna veličina vašeg InnoDB log-a je %s MiB" #: po/advisory_rules.php:265 -#, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" -msgstr "Veličina prihvatnika" +msgstr "Veličina InnoDB prostora za bafere" #: po/advisory_rules.php:266 msgid "Your InnoDB buffer pool is fairly small." From fed871cd6fd7d03cd8b03d792b93565fcfffd656 Mon Sep 17 00:00:00 2001 From: "J.M" Date: Tue, 4 Sep 2012 22:19:38 +0200 Subject: [PATCH 04/51] fix SunOS swap calculation --- libraries/sysinfo.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/sysinfo.lib.php b/libraries/sysinfo.lib.php index e825540e29..b67a979343 100644 --- a/libraries/sysinfo.lib.php +++ b/libraries/sysinfo.lib.php @@ -174,9 +174,9 @@ class PMA_sysinfoSunos $mem['MemTotal'] = $this->_kstat('unix:0:system_pages:pagestotal') * $pagesize; $mem['MemUsed'] = $this->_kstat('unix:0:system_pages:pageslocked') * $pagesize; $mem['MemFree'] = $this->_kstat('unix:0:system_pages:pagesfree') * $pagesize; - $mem['SwapTotal'] = $this->_kstat('unix:0:vminfo:swap_avail') * $pagesize; - $mem['SwapUsed'] = $this->_kstat('unix:0:vminfo:swap_alloc') * $pagesize; - $mem['SwapFree'] = $this->_kstat('unix:0:vminfo:swap_free') * $pagesize; + $mem['SwapTotal'] = $this->_kstat('unix:0:vminfo:swap_avail') / 1024; + $mem['SwapUsed'] = $this->_kstat('unix:0:vminfo:swap_alloc') / 1024; + $mem['SwapFree'] = $this->_kstat('unix:0:vminfo:swap_free') / 1024; foreach ($mem as $idx=>$value) $mem[$idx] = intval($value); From af32d57f84a58c46ffd4b08baed322b2620fdcdb Mon Sep 17 00:00:00 2001 From: "J.M" Date: Tue, 4 Sep 2012 22:24:03 +0200 Subject: [PATCH 05/51] Don't limit SunOS memory and swap to the value range of int --- libraries/sysinfo.lib.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/libraries/sysinfo.lib.php b/libraries/sysinfo.lib.php index b67a979343..03b109f129 100644 --- a/libraries/sysinfo.lib.php +++ b/libraries/sysinfo.lib.php @@ -178,9 +178,6 @@ class PMA_sysinfoSunos $mem['SwapUsed'] = $this->_kstat('unix:0:vminfo:swap_alloc') / 1024; $mem['SwapFree'] = $this->_kstat('unix:0:vminfo:swap_free') / 1024; - foreach ($mem as $idx=>$value) - $mem[$idx] = intval($value); - return $mem; } } From 2fce20d69f650535325f71a15a4d8370cc993228 Mon Sep 17 00:00:00 2001 From: "J.M" Date: Tue, 4 Sep 2012 22:31:20 +0200 Subject: [PATCH 06/51] Add SunOS to status_monitor.js --- js/server_status_monitor.js | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/js/server_status_monitor.js b/js/server_status_monitor.js index bef3d0ddde..08cc71cf10 100644 --- a/js/server_status_monitor.js +++ b/js/server_status_monitor.js @@ -183,6 +183,45 @@ $(function() { } }); break; + + case 'SunOS': + $.extend(presetCharts, { + 'cpu': { + title: PMA_messages['strSystemCPUUsage'], + series: [ { + label: PMA_messages['strAverageLoad'] + } ], + nodes: [ { + dataPoints: [{ type: 'cpu', name: 'loadavg'}] + } ], + maxYLabel: [] + }, + 'memory': { + title: PMA_messages['strSystemMemory'], + series: [ + { label: PMA_messages['strUsedMemory'], fill:true, stackSeries: true}, + { label: PMA_messages['strFreeMemory'], fill:true, stackSeries: true} + ], + nodes: [ + { dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 }, + { dataPoints: [{ type: 'memory', name: 'MemFree' }], valueDivisor: 1024 } + ], + maxYLabel: [] + }, + 'swap': { + title: PMA_messages['strSystemSwap'], + series: [ + { label: PMA_messages['strUsedSwap'], fill:true, stackSeries: true}, + { label: PMA_messages['strFreeSwap'], fill:true, stackSeries: true} + ], + nodes: [ + { dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 }, + { dataPoints: [{ type: 'memory', name: 'SwapFree' }], valueDivisor: 1024 } + ], + maxYLabel: [] + } + }); + break; } // Default setting for the chart grid From afe2e71aa49281fc43b441ec6f0f2798be7b5973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojislav=20Pavi=C4=87?= Date: Tue, 4 Sep 2012 22:30:43 +0200 Subject: [PATCH 07/51] Translated using Weblate. --- po/sr@latin.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/sr@latin.po b/po/sr@latin.po index 9fd921555b..274c54fe9b 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-04 21:23+0200\n" +"PO-Revision-Date: 2012-09-04 22:30+0200\n" "Last-Translator: Vojislav Pavić \n" "Language-Team: Serbian (latin) " "\n" @@ -3961,7 +3961,7 @@ msgstr "Opšte" #: libraries/config/messages.inc.php:171 msgid "Set some commonly used options" -msgstr "" +msgstr "Postavite neke najčešće korišćene opcije" #: libraries/config/messages.inc.php:173 msgid "Import defaults" @@ -3969,11 +3969,11 @@ msgstr "Podrazumevane opcije uvoza" #: libraries/config/messages.inc.php:174 msgid "Customize default common import options" -msgstr "" +msgstr "Podešavanje podrazumevanih najčešće korišćenih opcija za uvoz" #: libraries/config/messages.inc.php:175 msgid "Import / export" -msgstr "" +msgstr "Izvoz/uvoz" #: libraries/config/messages.inc.php:176 msgid "Set import and export directories and compression options" From 5f2b0549c449c74ae8652ab905828832273d7317 Mon Sep 17 00:00:00 2001 From: "J.M" Date: Tue, 4 Sep 2012 22:42:23 +0200 Subject: [PATCH 08/51] Add SolOS bug id to changelog --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 562f093e4c..e00f982612 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,7 +19,7 @@ phpMyAdmin - ChangeLog - bug #3559925 [privileges] Incorrect updating of the list of users - bug #3561224 [edit] cell edit date field with empty date fills in current date - bug #3559955 [edit] current_date from function drop down fails on update -- add support for Solaris and FreeBSD system load and memory display in server status +- bug #3562472 add support for Solaris and FreeBSD system load and memory display in server status 3.5.2.2 (2012-08-12) - [security] Fixed XSS vulnerabilities, see PMASA-2012-4 From e86cdc27479f24f17f5840560ea3a559c71d450d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojislav=20Pavi=C4=87?= Date: Tue, 4 Sep 2012 22:58:57 +0200 Subject: [PATCH 09/51] Translated using Weblate. --- po/sr@latin.po | 68 +++++++++++++++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 29 deletions(-) diff --git a/po/sr@latin.po b/po/sr@latin.po index 274c54fe9b..3d0270a205 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-04 22:30+0200\n" +"PO-Revision-Date: 2012-09-04 22:58+0200\n" "Last-Translator: Vojislav Pavić \n" "Language-Team: Serbian (latin) " "\n" @@ -3442,7 +3442,7 @@ msgstr "" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Dozvoli okvire treće strane" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" @@ -3570,6 +3570,8 @@ msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" +"Da li upozorenje ("Da li ste sigurni...") treba da bude prikazano " +"kada ste na putu da izgubite podatke" #: libraries/config/messages.inc.php:47 msgid "Confirm DROP queries" @@ -3952,7 +3954,7 @@ msgstr "Prilagodi podrazumevane opcije izvoza" #: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:211 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Karakteristike" #: libraries/config/messages.inc.php:170 #| msgid "Generate" @@ -3977,7 +3979,7 @@ msgstr "Izvoz/uvoz" #: libraries/config/messages.inc.php:176 msgid "Set import and export directories and compression options" -msgstr "" +msgstr "Podesite direktorijume za izvoz i uvoz i opcije za kompresiju" #: libraries/config/messages.inc.php:177 libraries/export/latex.php:27 msgid "LaTeX" @@ -3989,11 +3991,11 @@ msgstr "Opcije prikaza baza" #: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Navigacioni okvir" #: libraries/config/messages.inc.php:182 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "Prilagodite izgled navigacionog okvira" #: libraries/config/messages.inc.php:183 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:112 @@ -4010,11 +4012,11 @@ msgstr "Opcije prikaza tabela" #: libraries/config/messages.inc.php:187 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Glavni okvir" #: libraries/config/messages.inc.php:188 msgid "Microsoft Office" -msgstr "" +msgstr "Majkrosoft Ofis" #: libraries/config/messages.inc.php:190 #| msgid "Open Document Text" @@ -4023,11 +4025,11 @@ msgstr "Otvori dokument" #: libraries/config/messages.inc.php:192 msgid "Other core settings" -msgstr "" +msgstr "Ostale osnovne postavke" #: libraries/config/messages.inc.php:193 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Postavke koje se ne uklapaju nigde drugde" #: libraries/config/messages.inc.php:194 #| msgid "Page number:" @@ -4054,17 +4056,19 @@ msgstr "Prilagodi opcije prozora sa upitima" #: libraries/config/messages.inc.php:198 msgid "Security" -msgstr "" +msgstr "Bezbednost" #: libraries/config/messages.inc.php:199 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"Imajte na umu da je phpMyAdmin samo korisnički interfejs i onjegove funkcije " +"ne ograničavaju MySQL" #: libraries/config/messages.inc.php:200 msgid "Basic settings" -msgstr "" +msgstr "Osnovne postavke" #: libraries/config/messages.inc.php:201 #| msgid "Documentation" @@ -4077,21 +4081,23 @@ msgstr "Podešavanje autentikacije" #: libraries/config/messages.inc.php:203 msgid "Server configuration" -msgstr "" +msgstr "Konfiguracija servera" #: libraries/config/messages.inc.php:204 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" +"Napredna konfiguracija servera, nemojte menjati ove opcije osim ako niste " +"sigurni čemu služe" #: libraries/config/messages.inc.php:205 msgid "Enter server connection parameters" -msgstr "" +msgstr "Unesite parametre veze sa serverom" #: libraries/config/messages.inc.php:206 msgid "Configuration storage" -msgstr "" +msgstr "Skladište konfiguracije" #: libraries/config/messages.inc.php:207 msgid "" @@ -4102,13 +4108,15 @@ msgstr "" #: libraries/config/messages.inc.php:208 msgid "Changes tracking" -msgstr "" +msgstr "Praćenje promena" #: libraries/config/messages.inc.php:209 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" +"Praćenje promena u bazi podataka. Zahteva phpMyAdmin skladište " +"konfiguracije." #: libraries/config/messages.inc.php:210 msgid "Customize export options" @@ -4120,11 +4128,11 @@ msgstr "Podešavanje podrazumevanih opcija uvoza" #: libraries/config/messages.inc.php:213 msgid "Customize navigation frame" -msgstr "" +msgstr "Prilagođavanje navigacionog okvira" #: libraries/config/messages.inc.php:214 msgid "Customize main frame" -msgstr "" +msgstr "Prilagođavanje glavnog okvira" #: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:220 #: setup/frames/menu.inc.php:17 @@ -4137,7 +4145,7 @@ msgstr "Okvir sa SQL upitima" #: libraries/config/messages.inc.php:218 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "Prilagođavanje linkova prikazanih u okvirima SQL upita" #: libraries/config/messages.inc.php:221 msgid "SQL queries settings" @@ -4162,7 +4170,7 @@ msgstr "Početno pokretanje" #: libraries/config/messages.inc.php:225 msgid "Customize startup page" -msgstr "" +msgstr "Prilagođavanje početne strane" #: libraries/config/messages.inc.php:226 msgid "Tabs" @@ -4170,7 +4178,7 @@ msgstr "Kartice" #: libraries/config/messages.inc.php:227 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "Izaberite kako želite kartice da rade" #: libraries/config/messages.inc.php:228 #| msgid "Use text field" @@ -4183,15 +4191,15 @@ msgstr "Podešavanje text input polja" #: libraries/config/messages.inc.php:230 libraries/export/texytext.php:18 msgid "Texy! text" -msgstr "" +msgstr "Texy! tekst" #: libraries/config/messages.inc.php:232 msgid "Warnings" -msgstr "" +msgstr "Upozorenja" #: libraries/config/messages.inc.php:233 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Isključi neka od upozorenja koja je phpMyAdmin prikazao" #: libraries/config/messages.inc.php:234 msgid "" @@ -4201,21 +4209,23 @@ msgstr "" #: libraries/config/messages.inc.php:235 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:236 msgid "Extra parameters for iconv" -msgstr "" +msgstr "Dodatni parametri za iconv" #: libraries/config/messages.inc.php:237 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" +"Ako je uključeno, phpMyAdmin će nastaviti da izračunava više-iskazne upite " +"čak i ako jedan od upita nije uspeo" #: libraries/config/messages.inc.php:238 msgid "Ignore multiple statement errors" -msgstr "" +msgstr "Ignoriši greške kod višestrukih iskaza" #: libraries/config/messages.inc.php:239 msgid "" @@ -4229,12 +4239,12 @@ msgstr "" #: libraries/config/messages.inc.php:240 msgid "Partial import: allow interrupt" -msgstr "" +msgstr "Delimični uvoz: dozvolite prekid" #: libraries/config/messages.inc.php:245 libraries/config/messages.inc.php:252 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "Ne prekidaj izvršavanje ako se desi greška kod umetanja" #: libraries/config/messages.inc.php:246 libraries/config/messages.inc.php:254 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 From 44d8fff7e6c8003ee1fa9c030f3d982f0a2f54cc Mon Sep 17 00:00:00 2001 From: Agron Selimaj Date: Wed, 5 Sep 2012 04:42:29 +0200 Subject: [PATCH 10/51] Translated using Weblate. --- po/sq.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/sq.po b/po/sq.po index f208190d72..b734035af8 100644 --- a/po/sq.po +++ b/po/sq.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-28 14:42+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2012-09-05 04:39+0200\n" +"Last-Translator: Agron Selimaj \n" "Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -341,7 +341,7 @@ msgstr "Kalo tek databaza e kopjuar" #: tbl_structure.php:204 tbl_structure.php:876 tbl_tracking.php:259 #: tbl_tracking.php:325 msgid "Collation" -msgstr "Collation" +msgstr "Rradhitja" #: db_operations.php:561 #, fuzzy, php-format @@ -1086,7 +1086,7 @@ msgstr "Mbrapa" #: index.php:164 msgid "phpMyAdmin is more friendly with a frames-capable browser." -msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames" +msgstr "phpMyAdmin funksionon më mirë me shfletues që punon me korniza." #: js/messages.php:27 libraries/import.lib.php:103 sql.php:249 msgid "\"DROP DATABASE\" statements are disabled." @@ -3710,7 +3710,7 @@ msgstr "" #: libraries/config/messages.inc.php:72 prefs_manage.php:297 msgid "Save as file" -msgstr "Ruaje me emër..." +msgstr "Ruaje skedarin me emër" #: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:241 #, fuzzy @@ -8433,7 +8433,7 @@ msgstr "" #: pmd_general.php:623 pmd_general.php:636 pmd_general.php:699 #: pmd_general.php:753 msgid "Operator" -msgstr "Operator" +msgstr "Operatori" #: libraries/tbl_select.lib.php:103 #, fuzzy From d9bcdae909a42b94fe1f85435a71ee1402b32fff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:57:03 +0200 Subject: [PATCH 11/51] Translated using Weblate. --- po/be.po | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/po/be.po b/po/be.po index 1d23fa9176..ad7c109ffd 100644 --- a/po/be.po +++ b/po/be.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-28 14:42+0200\n" +"PO-Revision-Date: 2012-09-05 10:57+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian " "\n" @@ -1060,7 +1060,8 @@ msgid "" msgstr "" "Дадзеныя для імпартаваньня не атрыманыя. Альбо ніводны файл ня быў " "загружаны, альбо памер файла перавысіў максымальны памер, вызначаны " -"канфігурацыяй PHP. Гл. FAQ 1.16." +"канфігурацыяй PHP. Гл. [a@./Documentation.html#faq1_16@Documentation]FAQ " +"1.16[/a]." #: import.php:366 msgid "" @@ -2631,7 +2632,9 @@ msgstr "Падчас загрузкі файла адбылася невядом msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ" +msgstr "" +"Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел " +"[a@./Documentation.html#faq1_11@Documentation]1.11 у FAQ[/a]" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." @@ -5804,7 +5807,9 @@ msgstr "Трыгеры" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" +msgstr "" +"Значэньне можа быць прыблізным. Гл. " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From 3b3bb679145a38813f0c6f1b249123e77c8bc93d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:38:33 +0200 Subject: [PATCH 12/51] Translated using Weblate. --- po/be@latin.po | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/po/be@latin.po b/po/be@latin.po index bb9ceccab9..ae455b57ac 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-28 14:41+0200\n" +"PO-Revision-Date: 2012-09-05 10:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) " "\n" @@ -1057,7 +1057,8 @@ msgid "" msgstr "" "Dadzienyja dla impartavańnia nie atrymanyja. Albo nivodny fajł nia byŭ " "zahružany, albo pamier fajła pieravysiŭ maksymalny pamier, vyznačany " -"kanfihuracyjaj PHP. Hł. FAQ 1.16." +"kanfihuracyjaj PHP. Hł. [a@./Documentation.html#faq1_16@Documentation]FAQ " +"1.16[/a]." #: import.php:366 msgid "" @@ -2644,7 +2645,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ" +"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł " +"[a@./Documentation.html#faq1_11@Documentation]1.11 u FAQ[/a]" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." @@ -5789,7 +5791,9 @@ msgstr "Tryhiery" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" +msgstr "" +"Značeńnie moža być prybliznym. Hł. " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From 3b883e2fc07cbf02da36be8d932739b53023b3d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:30:23 +0200 Subject: [PATCH 13/51] Translated using Weblate. --- po/bn.po | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/po/bn.po b/po/bn.po index 98fac4db85..9ff836c0d7 100644 --- a/po/bn.po +++ b/po/bn.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-03-27 16:56+0200\n" +"PO-Revision-Date: 2012-09-05 10:30+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: bangla \n" +"Language-Team: Bengali \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: Weblate 0.8\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -127,7 +127,7 @@ msgstr "%1$s ডাটাবেজ মুছে ফেলা হয়েছে" #: db_datadict.php:49 db_operations.php:370 msgid "Database comment: " -msgstr "ডাটাবেজ মন্তব্যসমূহঃ" +msgstr "ডাটাবেজ মন্তব্যসমূহঃ " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 #: libraries/tbl_properties.inc.php:661 tbl_operations.php:366 @@ -288,7 +288,7 @@ msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" #: db_operations.php:455 msgid "Drop the database (DROP)" -msgstr "ডাটাবেজটি ড্রপ কর (DROP) " +msgstr "ডাটাবেজটি ড্রপ কর (DROP)" #: db_operations.php:484 msgid "Copy database to" @@ -991,7 +991,7 @@ msgid "" msgstr "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " -"FAQ 1.16." +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:366 msgid "" @@ -2721,7 +2721,7 @@ msgid "" "1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " -"করে একটি তৈরী করতে পারেন " +"করে একটি তৈরী করতে পারেন" #: libraries/auth/config.auth.lib.php:111 msgid "" @@ -5649,7 +5649,9 @@ msgstr "" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " +msgstr "" +"হয়ত আনুমানিক। [a@./Documentation.html#faq3_11@Documentation]FAQ ৩.১১[/a] " +"দেখ।" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 @@ -9437,9 +9439,7 @@ msgstr "" #: server_privileges.php:537 server_privileges.php:689 #: server_privileges.php:1706 msgid "Note: MySQL privilege names are expressed in English" -msgstr "" -"নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " -"names are expressed in English " +msgstr "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয়" #: server_privileges.php:614 msgid "Administration" From 1da575e9a557f978a348f97cc32b3bc24a780462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:50:31 +0200 Subject: [PATCH 14/51] Translated using Weblate. --- po/bg.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/bg.po b/po/bg.po index baafbeca1b..6814f4d287 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,14 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-16 08:11+0200\n" -"Last-Translator: Стоян Димитров \n" -"Language-Team: Bulgarian \n" +"PO-Revision-Date: 2012-09-05 10:50+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Bulgarian \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: Weblate 1.2\n" @@ -3715,6 +3714,7 @@ msgid "Force SSL connection" msgstr "Налагане на SSL връзка" #: libraries/config/messages.inc.php:152 +#, fuzzy msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -4353,8 +4353,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Броят байтове, които скрипт може да заеме, напр. [kbd]32М /kbd] ([kbd]0[/" -"kbd] за без ограничение)" +"Броят байтове, които скрипт може да заеме, напр. [kbd]32М[/kbd] " +"([kbd]0[/kbd] за без ограничение)" #: libraries/config/messages.inc.php:320 msgid "Memory limit" From a071778a9218df5b2865455371d95333087cb836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:54:43 +0200 Subject: [PATCH 15/51] Translated using Weblate. --- po/ca.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/ca.po b/po/ca.po index 20b88d0f79..902e13d843 100644 --- a/po/ca.po +++ b/po/ca.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-02 11:56+0200\n" -"Last-Translator: Xavier Navarro \n" +"PO-Revision-Date: 2012-09-05 10:54+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Catalan \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: Weblate 1.2\n" @@ -4021,7 +4021,7 @@ msgid "" msgstr "" "Si voleu utilitzar el servei de SQL Validator, heu de tenir en compte que " "[strong]totes les instruccions SQL s'emmagatzemen de forma anònima amb fins " -"estadístics[/ strong]. [br] [em][a http://sqlvalidator.mimer.com @ /]Mimer " +"estadístics[/strong]. [br] [em][a http://sqlvalidator.mimer.com @ /]Mimer " "SQL Validator[/a], Copyright 2002 Copyright 2002 Upright Database " "Technology. Tots els drets reservats.[/em]" From 07b744b908b94f8f55f11f0c4390d8b013d5903f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:55:21 +0200 Subject: [PATCH 16/51] Translated using Weblate. --- po/zh_CN.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/zh_CN.po b/po/zh_CN.po index c637ce0e52..52ab1e5f1a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -4,14 +4,14 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-13 12:11+0200\n" -"Last-Translator: shanyan baishui \n" -"Language-Team: Chinese (China) \n" +"PO-Revision-Date: 2012-09-05 10:55+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Chinese (China) " +"\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: Weblate 1.2\n" @@ -4279,7 +4279,7 @@ msgstr "mcrypt 警告" msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" -msgstr "一个脚本可分配到的内存大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]为不限制)" +msgstr "一个脚本可分配到的内存大小,例 [kbd]32MB[/kbd] ([kbd]0[/kbd]为不限制)" #: libraries/config/messages.inc.php:320 msgid "Memory limit" @@ -4534,7 +4534,7 @@ msgstr "压缩连接" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "怎样连接到服务器,如果不确定,请选择 tcp" +msgstr "怎样连接到服务器,如果不确定,请选择 [kbd]tcp[/kbd]" #: libraries/config/messages.inc.php:381 msgid "Connection type" From dd3065531be914d0d60c27b3f6520eacd07856c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:55:00 +0200 Subject: [PATCH 17/51] Translated using Weblate. --- po/zh_TW.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 58c1ea9613..35784b098c 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-27 11:49+0200\n" +"PO-Revision-Date: 2012-09-05 10:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Chinese (Taiwan) " "\n" @@ -4430,7 +4430,7 @@ msgstr "mcrypt 警告" msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" -msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]爲不限制)" +msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[/kbd] ([kbd]0[/kbd]爲不限制)" #: libraries/config/messages.inc.php:320 msgid "Memory limit" @@ -4689,7 +4689,7 @@ msgstr "壓縮連線" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "怎樣連線到伺服器,如果不確定,請選擇 tcp" +msgstr "怎樣連線到伺服器,如果不確定,請選擇 [kbd]tcp[/kbd]" #: libraries/config/messages.inc.php:381 msgid "Connection type" From 2d36b75e8206bb04d3f56549d38630f309e72990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:52:45 +0200 Subject: [PATCH 18/51] Translated using Weblate. --- po/hr.po | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/po/hr.po b/po/hr.po index f7a8ab22cf..d15a9688c4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-05-17 15:21+0200\n" +"PO-Revision-Date: 2012-09-05 10:52+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: croatian \n" +"Language-Team: Croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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: Weblate 1.0\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -1058,7 +1058,8 @@ msgid "" msgstr "" "Nisu primljeni nikakvi podaci za uvoz. Ili nije dat naziv datoteke ili " "veličina datoteke prelazi najveću dopuštenu veličinu od strane vaše PHP " -"konfiguracije. Pogledajte ČPP 1.16." +"konfiguracije. Pogledajte [a@./Documentation.html#faq1_16@Documentation]ČPP " +"1.16[/a]." #: import.php:366 msgid "" @@ -2629,7 +2630,9 @@ msgstr "Nepoznata pogreška tijekom učitavanja datoteke." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11" +msgstr "" +"Pogreška tijekom premještanja učitane datoteke. Pogledajte " +"[a@./Documentation.html#faq1_11@Documentation]ČPP 1.11[/a]" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." @@ -5789,7 +5792,9 @@ msgstr "Okidači" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Može biti približno. Pogledajte ČPP 3.11" +msgstr "" +"Može biti približno. Pogledajte " +"[a@./Documentation.html#faq3_11@Documentation]ČPP 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From 901c6e806e50893137747141341aa2e841b87d1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:46:30 +0200 Subject: [PATCH 19/51] Translated using Weblate. --- po/fi.po | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/po/fi.po b/po/fi.po index dbcad5d7e7..3ee3b66fb2 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-06-24 00:18+0200\n" -"Last-Translator: Jukka Penttinen \n" -"Language-Team: finnish \n" +"PO-Revision-Date: 2012-09-05 10:46+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Finnish \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: Weblate 1.0\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -999,7 +999,8 @@ msgid "" "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" "Tuotavia tietoja ei ole. Tiedostonimeä ei joko annettu tai tiedoston koko " -"ylitti PHP:n asetusten salliman enimmäiskoon. Katso FAQ 1.16." +"ylitti PHP:n asetusten salliman enimmäiskoon. Katso " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:366 msgid "" @@ -2397,7 +2398,9 @@ msgstr "Tuntematon virhe tiedostoa lähetettäessä." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11" +msgstr "" +"Virhe lähetettäessä tiedostoa, katso " +"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." @@ -4639,7 +4642,8 @@ msgstr "Pakkaa yhteys" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "Kuinka palvelimeen yhdistetään; käytä tcp:tä, jos olet epävarma" +msgstr "" +"Kuinka palvelimeen yhdistetään; käytä [kbd]tcp[/kbd]:tä, jos olet epävarma" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -5540,7 +5544,9 @@ msgstr "Herättimet" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Saattaa olla summittainen. Katso FAQ 3.11" +msgstr "" +"Saattaa olla summittainen. Katso " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From 475a9fbbb5f6f4a802833f4b2928b059f65b8911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:56:27 +0200 Subject: [PATCH 20/51] Translated using Weblate. --- po/fr.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/fr.po b/po/fr.po index 5741ed9ec9..7cf2d2404f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 3.5.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-22 16:10+0200\n" -"Last-Translator: Marc Delisle \n" +"PO-Revision-Date: 2012-09-05 10:56+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -4831,10 +4831,10 @@ msgid "" msgstr "" "Vous pouvez utiliser ces caractères passepartout MySQL (% et _), avec un " "caractère d'échappement si vous les employez de manière littérale, par " -"exemple «ma\\_base» et non «ma_base». Ainsi vous pouvez trier la liste des " -"bases de données en entrant leurs noms et en utilisant [kbd]*[/kbd] en fin " -"de liste pour montrer le reste des noms de base de données en ordre " -"alphabétique." +"exemple [kbd]'ma\\_base'[/kbd] et non [kbd]'ma_base'[/kbd]. Ainsi vous pouvez " +"trier la liste des bases de données en entrant leurs noms et en utilisant " +"[kbd]*[/kbd] en fin de liste pour montrer le reste des noms de base de " +"données en ordre alphabétique." #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" From f26b7bc0ec28671e0573d8dc7eefe5d0d060eff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:46:09 +0200 Subject: [PATCH 21/51] Translated using Weblate. --- po/gl.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/gl.po b/po/gl.po index 5e0a002371..7c0039780b 100644 --- a/po/gl.po +++ b/po/gl.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-07-23 19:18-0000\n" -"Last-Translator: Xullo Guerra \n" -"Language-Team: Galician \n" +"PO-Revision-Date: 2012-09-05 10:46+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Galician \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: Weblate 1.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -4699,7 +4699,7 @@ msgstr "Comprimir a conexión" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "Como ligar co servidor; déixeo como tc se non está segura/a" +msgstr "Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a" #: libraries/config/messages.inc.php:381 msgid "Connection type" From ca090272398f8510c6eeed41f29b0291f526bb82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:33:11 +0200 Subject: [PATCH 22/51] Translated using Weblate. --- po/he.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/he.po b/po/he.po index d84a33a75c..4044d79452 100644 --- a/po/he.po +++ b/po/he.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-05-17 15:18+0200\n" +"PO-Revision-Date: 2012-09-05 10:33+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: hebrew \n" +"Language-Team: Hebrew \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: Weblate 1.0\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -5625,7 +5625,9 @@ msgstr "" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "יכול להיות הערכה. ראה FAQ 3.11" +msgstr "" +"יכול להיות הערכה. ראה [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From d91c3646055da893881ec6f5009a047c46baf758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:51:41 +0200 Subject: [PATCH 23/51] Translated using Weblate. --- po/hi.po | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/po/hi.po b/po/hi.po index 46e78d937e..989ac194a0 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-07-19 08:56+0200\n" -"Last-Translator: rajnikant sharma \n" -"Language-Team: hindi \n" +"PO-Revision-Date: 2012-09-05 10:51+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Hindi \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: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -1004,9 +1004,10 @@ msgid "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -"कोई डेटा आयात करने के लिए प्राप्त नहीं किया गया. या तो कोई फ़ाइल नाम प्रस्तुत नहीं किया " -"गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति आकार के पार हो गई है. [a@./" -"Documentation.html#faq1_16@Documentation] अकसर किये गए सवाल 1.16 [/ a] देखें." +"कोई डेटा आयात करने के लिए प्राप्त नहीं किया गया. या तो कोई फ़ाइल नाम " +"प्रस्तुत नहीं किया गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति " +"आकार के पार हो गई है. [a@./Documentation.html#faq1_16@Documentation] अकसर " +"किये गए सवाल 1.16 [/a] देखें." #: import.php:366 msgid "" @@ -2504,8 +2505,9 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # " -"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें." +"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. " +"[a@./Documentation.html#faq1_1@Documentation]अकसर किये गए सवाल 1,11[/a] " +"देखें" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." From f96f88df30f4ca3eaac9afdab4d4eaf5cc321e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:47:25 +0200 Subject: [PATCH 24/51] Translated using Weblate. --- po/hu.po | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/po/hu.po b/po/hu.po index f007d1d11a..63217bcdcd 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-07-19 09:42+0200\n" -"Last-Translator: Akos Eros \n" -"Language-Team: hungarian \n" +"PO-Revision-Date: 2012-09-05 10:47+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Hungarian \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: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -4680,7 +4680,8 @@ msgstr "A kapcsolat tömörítése" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -"A szerverhez csatlakozás módja, hagyja meg a tcp értéket, ha nem biztos benne" +"A szerverhez csatlakozás módja, hagyja meg a [kbd]tcp[/kbd] értéket, ha nem " +"biztos benne" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -4818,10 +4819,11 @@ msgid "" "alphabetical order." msgstr "" "Használhatja a MySQL-karakterhelyettesítőket (% és _), vezérelheti őket, ha " -"akarja, a literális példányaik használatához, pl. használja a 'my\\_db' " -"alakot, s ne a 'my_db' alakot. Ezt a lehetőséget választva rendezhet " -"adatbázislistákat, beírva a nevüket sorrendben és használja a [kbd]*[/kbd]-t " -"a végén, hogy a többi abc-sorrendben jelenjen meg." +"akarja, a literális példányaik használatához, pl. használja a " +"[kbd]'my\\_db'[/kbd] alakot, s ne a [kbd]'my_db'[/kbd] alakot. Ezt a " +"lehetőséget választva rendezhet adatbázislistákat, beírva a nevüket " +"sorrendben és használja a [kbd]*[/kbd]-t a végén, hogy a többi abc-" +"sorrendben jelenjen meg." #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" From 37cc51a3c6766603480f3f70659c1d39ae0afdf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:36:40 +0200 Subject: [PATCH 25/51] Translated using Weblate. --- po/id.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/id.po b/po/id.po index 5e4f8fc32f..899283bf15 100644 --- a/po/id.po +++ b/po/id.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-27 11:48+0200\n" +"PO-Revision-Date: 2012-09-05 10:36+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Indonesian " "\n" @@ -3323,8 +3323,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi [kbd]" -"cookie[kbd]" +"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi " +"[kbd]cookie[/kbd]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" From 01ad86f2741670f06ed2433b79381ecd4f00df40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:37:20 +0200 Subject: [PATCH 26/51] Translated using Weblate. --- po/it.po | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/po/it.po b/po/it.po index 29c69db26d..49ae72815f 100644 --- a/po/it.po +++ b/po/it.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-31 21:39+0200\n" -"Last-Translator: Rouslan Placella \n" +"PO-Revision-Date: 2012-09-05 10:37+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -3339,7 +3339,7 @@ msgid "" "authentication" msgstr "" "La passphrase segreta utilizzata per crittografare i cookie " -"nell'autenticazione [kbd]cookie[/ kbd]" +"nell'autenticazione [kbd]cookie[/kbd]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" @@ -4046,9 +4046,10 @@ msgid "" msgstr "" "Se si desideri utilizzare il servizio di validazione SQL, dovi essere " "consapevole del fatto che [strong]tutte le istruzioni SQL vengono " -"memorizzate in forma anonima per fini statistici[/ strong].[br][em][a@http://" -"sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 Upright " -"Database Technology. Tutti i diritti riservati.[/ em]" +"memorizzate in forma anonima per fini " +"statistici[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL " +"Validator[/a], Copyright 2002 Upright Database Technology. Tutti i diritti " +"riservati.[/em]" #: libraries/config/messages.inc.php:224 msgid "Startup" @@ -4858,9 +4859,9 @@ msgid "" msgstr "" "Puoi utilizzare i caratteri jolly di MySQL (% e _), prefissali con una barra " "rovesciata '\\' se vuoi utilizzarli nel loro senso letterale, ad esempio " -"[kbd]'my\\_db'[/kbd] e non [kbd]'my_db'[/kbd]. Utilizzando quest'opzione " -"puoi ordinare la lista dei database, basta inserire i loro nomi in ordine e " -"utilizzare [kbd]*[/ kbd] alla fine per mostrare il resto in ordine " +"[kbd]'my\\_db'[/kbd] e non [kbd]'my_db'[/kbd]. Utilizzando quest'opzione puoi " +"ordinare la lista dei database, basta inserire i loro nomi in ordine e " +"utilizzare [kbd]*[/kbd] alla fine per mostrare il resto in ordine " "alfabetico." #: libraries/config/messages.inc.php:407 @@ -5136,10 +5137,10 @@ msgid "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -"Si prega di notare che l'attivazione di questo non ha effetto con [kbd]config" -"[/ kbd] la modalità di autenticazione perché la password è salvata nel file " -"di configurazione; questo non limita la capacità di eseguire lo stesso " -"comando direttamente" +"Si prega di notare che l'attivazione di questo non ha effetto con " +"[kbd]config[/kbd] la modalità di autenticazione perché la password è salvata " +"nel file di configurazione; questo non limita la capacità di eseguire lo " +"stesso comando direttamente" #: libraries/config/messages.inc.php:458 msgid "Show password change form" From 774b84566aae593821f0c5ba01a018abe98be81b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:32:51 +0200 Subject: [PATCH 27/51] Translated using Weblate. --- po/ja.po | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/po/ja.po b/po/ja.po index cc573031f9..fed16d8e8c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-06-04 15:32+0200\n" -"Last-Translator: Yuichiro Takahashi \n" -"Language-Team: japanese \n" +"PO-Revision-Date: 2012-09-05 10:32+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Japanese \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: Weblate 1.0\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -5558,7 +5558,9 @@ msgstr "トリガ" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください" +msgstr "" +"正確な数字とは限りません。[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] " +"をご覧ください" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From a14c2f02431a972c91666a8e8b76b1c1129b8368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:01:15 +0200 Subject: [PATCH 28/51] Translated using Weblate. --- po/ko.po | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/po/ko.po b/po/ko.po index f3a371a834..89029948dd 100644 --- a/po/ko.po +++ b/po/ko.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-07-26 08:31+0200\n" -"Last-Translator: Hyun-Sung Yun \n" -"Language-Team: korean \n" +"PO-Revision-Date: 2012-09-05 10:01+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Korean \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: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -361,7 +361,7 @@ msgstr "관계 스키마를 수정 또는 내보내기" #: server_privileges.php:1899 server_privileges.php:2168 #: server_synchronize.php:436 server_synchronize.php:908 tbl_tracking.php:649 msgid "Table" -msgstr "테이블 " +msgstr "테이블" #: db_printview.php:102 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:65 @@ -404,7 +404,7 @@ msgstr "마지막 검사" #, php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] "%s개 테이블 " +msgstr[0] "%s개 테이블" #: db_qbe.php:41 msgid "You have to choose at least one column to display" @@ -2453,7 +2453,7 @@ msgstr "" #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1836 msgid "Databases" -msgstr "데이터베이스 " +msgstr "데이터베이스" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:356 #: libraries/blobstreaming.lib.php:365 libraries/common.lib.php:614 @@ -2958,7 +2958,7 @@ msgstr "일" #: libraries/common.lib.php:1650 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" -msgstr "%y-%m-%d %H:%M " +msgstr "%y-%m-%d %H:%M" #: libraries/common.lib.php:1983 #, php-format @@ -5504,7 +5504,7 @@ msgstr "새 데이터베이스 만들기" #: libraries/display_create_database.lib.php:33 msgid "Create" -msgstr "만들기 " +msgstr "만들기" #: libraries/display_create_database.lib.php:43 server_privileges.php:123 #: server_privileges.php:1589 server_replication.php:33 @@ -5570,11 +5570,11 @@ msgstr "데이터베이스 :" #: libraries/display_export.lib.php:134 msgid "Table(s):" -msgstr "테이블 : " +msgstr "테이블 :" #: libraries/display_export.lib.php:144 msgid "Rows:" -msgstr "행 : " +msgstr "행 :" #: libraries/display_export.lib.php:152 msgid "Dump some row(s)" @@ -5684,7 +5684,7 @@ msgstr "Format" #: libraries/display_export.lib.php:333 msgid "Format-specific options:" -msgstr "형식 특정 옵션 : " +msgstr "형식 특정 옵션 :" #: libraries/display_export.lib.php:334 msgid "" @@ -7961,7 +7961,7 @@ msgstr "" #: libraries/sql_query_form.lib.php:344 msgid "Show this query here again" -msgstr "이 질의를 다시 보여줌 " +msgstr "이 질의를 다시 보여줌" #: libraries/sql_query_form.lib.php:407 msgid "View only" @@ -9081,7 +9081,7 @@ msgstr "테이블에 관한 권한" #: server_privileges.php:537 server_privileges.php:689 #: server_privileges.php:1706 msgid "Note: MySQL privilege names are expressed in English" -msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " +msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다." #: server_privileges.php:614 msgid "Administration" @@ -10932,7 +10932,7 @@ msgstr "" #: tbl_change.php:821 msgid "Binary - do not edit" -msgstr "바이너리 - 편집 금지 " +msgstr "바이너리 - 편집 금지" #: tbl_change.php:871 msgid "Upload to BLOB repository" From c005fff6f0ccc3cc603fa5d13554b2519c39e56a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:33:24 +0200 Subject: [PATCH 29/51] Translated using Weblate. --- po/lv.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/lv.po b/po/lv.po index 070b658433..4d3aa89f57 100644 --- a/po/lv.po +++ b/po/lv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-28 14:41+0200\n" +"PO-Revision-Date: 2012-09-05 10:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -5691,7 +5691,9 @@ msgstr "" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" +msgstr "" +"Var būt aptuvens skaits. Skatīt " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From cc53cfe6c2d2bfaa0e7adf16422c6161d482be9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:36:27 +0200 Subject: [PATCH 30/51] Translated using Weblate. --- po/lt.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/po/lt.po b/po/lt.po index 6ba851a79b..07e95eb94c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,16 +4,17 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-07-03 16:29+0200\n" +"PO-Revision-Date: 2012-09-05 10:36+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: lithuanian \n" +"Language-Team: Lithuanian " +"\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -3341,7 +3342,7 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Slapta frazė naudojama šifruojant slapukus [kdb]slapukų[/kdb] " +"Slapta frazė naudojama šifruojant slapukus [kbd]slapukų[/kbd] " "identifikacijoje" #: libraries/config/messages.inc.php:25 From dbfcf5d70bb66698403d5605a19ee3c034e391cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:32:04 +0200 Subject: [PATCH 31/51] Translated using Weblate. --- po/mk.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/po/mk.po b/po/mk.po index 7affd6a75a..68ed175c11 100644 --- a/po/mk.po +++ b/po/mk.po @@ -4,15 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-05-17 15:21+0200\n" +"PO-Revision-Date: 2012-09-05 10:32+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: macedonian_cyrillic \n" +"Language-Team: Macedonian " +"\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: Weblate 1.0\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -5707,8 +5708,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Бројот на записи може да биде приближен. За подетални информации види FAQ " -"3.11" +"Бројот на записи може да биде приближен. За подетални информации види " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From 14a219594dfc09949e9acc451c9c1cb808bbed32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:33:17 +0200 Subject: [PATCH 32/51] Translated using Weblate. --- po/mn.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/mn.po b/po/mn.po index 80bd4278ad..4bd286ee90 100644 --- a/po/mn.po +++ b/po/mn.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-28 14:42+0200\n" +"PO-Revision-Date: 2012-09-05 10:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian \n" "Language: mn\n" @@ -5713,7 +5713,9 @@ msgstr "" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "May be approximate. See FAQ 3.11" +msgstr "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From 7785c27eda256f316dbe8abb718c69f9f4649075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:53:25 +0200 Subject: [PATCH 33/51] Translated using Weblate. --- po/nb.po | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/po/nb.po b/po/nb.po index 161ff02fdd..908a8b6bd1 100644 --- a/po/nb.po +++ b/po/nb.po @@ -4,15 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-07-30 14:59+0200\n" -"Last-Translator: Stian Berg \n" -"Language-Team: norwegian \n" +"PO-Revision-Date: 2012-09-05 10:53+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Norwegian Bokmål " +"\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: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -2399,7 +2400,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11" +"Feil oppstod under forsøk på flytting av den opplastede fila, se " +"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." @@ -4653,7 +4655,7 @@ msgstr "Komprimer tilkobling" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "Hvordan koble til tjener, behold tcp hvis usikker" +msgstr "Hvordan koble til tjener, behold [kbd]tcp[/kbd] hvis usikker" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -5561,7 +5563,9 @@ msgstr "Triggere" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Kan være unøyaktig. Se FAQ 3.11" +msgstr "" +"Kan være unøyaktig. Se [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From 42bac8a238cb008406cbf3027879186d943d0e77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:58:06 +0200 Subject: [PATCH 34/51] Translated using Weblate. --- po/pl.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/po/pl.po b/po/pl.po index 64027d98d7..50dfa99954 100644 --- a/po/pl.po +++ b/po/pl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-27 10:41+0200\n" +"PO-Revision-Date: 2012-09-05 10:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Polish \n" "Language: pl\n" @@ -3360,8 +3360,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Określa jaki rodzaj pól edycyjnych powinna zostać użyta do kolumn typu CHAR " -"i VARCHAR; [kbd]input[/ kbd] - umożliwia ograniczenie długości wejściowych, " -"[kbd]textarea[/ kbd] - pozwala nowej linii w kolumnach" +"i VARCHAR; [kbd]input[/kbd] - umożliwia ograniczenie długości wejściowych, " +"[kbd]textarea[/kbd] - pozwala nowej linii w kolumnach" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" @@ -3959,8 +3959,8 @@ msgid "" "storage[/a] in documentation" msgstr "" "Konfiguracja pamięcimagazywnowania konfiguracji phpMyAdmin, aby uzyskać " -"dostęp do dodatkowych opcji, patrz [a@Documentation.html # związane Stoły] " -"przechowywanie konfiguracji phpMyAdmin [/ a] w dokumentacji" +"dostęp do dodatkowych opcji, patrz [a@Documentation.html#linked-" +"tables]przechowywanie konfiguracji phpMyAdmin[/a] w dokumentacji" #: libraries/config/messages.inc.php:208 msgid "Changes tracking" @@ -4683,7 +4683,8 @@ msgstr "Kompresja połączenia" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić tcp" +"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić " +"[kbd]tcp[/kbd]" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -11220,7 +11221,7 @@ msgid "" "phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" "http[/kbd]." msgstr "" -"Ustaw [kbd]konfigurację[kbd] typu uwierzytelniania i zawiera nazwę " +"Ustaw [kbd]konfigurację[/kbd] typu uwierzytelniania i zawiera nazwę " "użytkownika i hasło automatycznego logowania, która nie jest pożądanym " "rozwiązaniem dla hsotów na żywo. Każdy, kto zna lub odwiedza adres " "phpMyAdmin URL ma bezpośredni dostęp do panelu phpMyAdmin. Ustaw %styp " From f073c6feccaffe5d428864bae5db2aaaa0b7202c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:32:01 +0200 Subject: [PATCH 35/51] Translated using Weblate. --- po/pt_BR.po | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/po/pt_BR.po b/po/pt_BR.po index 187559b35e..6d57931f47 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-01 02:03-0300\n" -"Last-Translator: Rafael Ferreira \n" +"PO-Revision-Date: 2012-09-05 10:32+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Portuguese (Brazil) " "\n" "Language: pt_BR\n" @@ -5616,7 +5616,9 @@ msgstr "Gatilhos" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Pode ser aproximado. Veja o FAQ 3.11" +msgstr "" +"Pode ser aproximado. Veja o " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 @@ -8297,7 +8299,7 @@ msgstr "Texto completo" #, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" -msgstr "Adicionar campo(s) %s " +msgstr "Adicionar campo(s) %s" #: libraries/tbl_properties.inc.php:575 tbl_structure.php:662 #| msgid "You have to add at least one field." @@ -8879,7 +8881,7 @@ msgstr "Criar uma página e exportar para ela" #: pmd_pdf.php:107 #| msgid "User name" msgid "New page name: " -msgstr "Nome da nova página" +msgstr "Nome da nova página: " #: pmd_pdf.php:110 msgid "Export/Import to scale" @@ -9824,7 +9826,7 @@ msgstr "Assessoria" #: server_status.php:807 server_status.php:833 #| msgid "Number of rows:" msgid "Number of data points: " -msgstr "Número de pontos de dados:" +msgstr "Número de pontos de dados: " #: server_status.php:811 server_status.php:837 #| msgid "Refresh" From 8668ef89489c7679993d4fbc4337d4e1a4ab381f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:49:59 +0200 Subject: [PATCH 36/51] Translated using Weblate. --- po/ro.po | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/po/ro.po b/po/ro.po index 5f630c1b26..4b3ebd960d 100644 --- a/po/ro.po +++ b/po/ro.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-06-30 17:07+0200\n" -"Last-Translator: Alex Marin \n" -"Language-Team: romanian \n" +"PO-Revision-Date: 2012-09-05 10:49+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Romanian \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: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -1033,7 +1033,8 @@ msgid "" msgstr "" "Nicio informație nu a fost recepționată pentru import. Ori niciun fișier nu " "a fost trimit, ori mărimea fișierului a depășit mărimea maximă permisă de " -"configurația PHP-ului dumneavoastră. Vedeți FAQ 1.16." +"configurația PHP-ului dumneavoastră. Vedeți " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:366 msgid "" @@ -4066,7 +4067,7 @@ msgid "" "get special values." msgstr "" "Specificaţi textul din bara de titlu a browser-ului. Consultaţi " -"[a@Documentation.html # cfg_TitleTable] documentaţia [/ a] pentru siruri de " +"[a@Documentation.html#cfg_TitleTable] documentaţia [/a] pentru siruri de " "caractere magice care pot fi utilizate pentru a obţine valori speciale." #: libraries/config/messages.inc.php:196 @@ -4137,8 +4138,8 @@ msgid "" "storage[/a] in documentation" msgstr "" "Configurați depozitarea configurației phpMyAdmin pentru a avea acces la " -"caracteristici suplimentare, a se vedea [a@Documentation.html#linked-tables]" -"depozitarea configurației phpMyAdmin[/ a] în documentaţie" +"caracteristici suplimentare, a se vedea [a@Documentation.html#linked-" +"tables]depozitarea configurației phpMyAdmin[/a] în documentaţie" #: libraries/config/messages.inc.php:208 #, fuzzy @@ -5863,7 +5864,9 @@ msgstr "Declanșatori" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Poate fi aproximativ. Vezi FAQ 3.11" +msgstr "" +"Poate fi aproximativ. Vezi [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From f9275d8a1e5d77b526c76eca37e366353b352f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:38:27 +0200 Subject: [PATCH 37/51] Translated using Weblate. --- po/sr.po | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/po/sr.po b/po/sr.po index 35e099d54f..774310a782 100644 --- a/po/sr.po +++ b/po/sr.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-03 19:46+0200\n" -"Last-Translator: Vojislav Pavić \n" +"PO-Revision-Date: 2012-09-05 10:38+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" @@ -1048,7 +1048,8 @@ msgid "" msgstr "" "Нису примљени никави подаци за увоз. Или није био наведен назив датотеке, " "или величина датотеке превазилази максималну величину дозвољену у вашој " -"конфигурацији PHP-а. Погледајте. See FAQ 1.16." +"конфигурацији PHP-а. Погледајте. See " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:366 msgid "" @@ -2613,7 +2614,9 @@ msgstr "Непозната грешка при слању датотеке." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11" +msgstr "" +"Грешка у премештању примљене датотеке, погледајте " +"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." @@ -5770,7 +5773,9 @@ msgstr "Окидачи" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Може бити приближно. Видите FAQ 3.11" +msgstr "" +"Може бити приближно. Видите " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From d405a3966eb2ba40273f6b6e7e6407bd3a1f3761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:31:54 +0200 Subject: [PATCH 38/51] Translated using Weblate. --- po/sr@latin.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/po/sr@latin.po b/po/sr@latin.po index 3d0270a205..208dc379af 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-04 22:58+0200\n" -"Last-Translator: Vojislav Pavić \n" +"PO-Revision-Date: 2012-09-05 10:31+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) " "\n" "Language: sr@latin\n" @@ -1024,7 +1024,8 @@ msgid "" msgstr "" "Nisu primljeni nikavi podaci za uvoz. Ili nije bio naveden naziv datoteke, " "ili veličina datoteke prevazilazi maksimalnu veličinu dozvoljenu u vašoj " -"konfiguraciji PHP-a. Pogledajte. See FAQ 1.16." +"konfiguraciji PHP-a. Pogledajte. See " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:366 msgid "" @@ -5612,7 +5613,9 @@ msgstr "Okidači" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Može biti približno. Vidite FAQ 3.11" +msgstr "" +"Može biti približno. Vidite " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From ace82003d51c174c8ebae5b101232bcb6a5d744b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:45:45 +0200 Subject: [PATCH 39/51] Translated using Weblate. --- po/sl.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/sl.po b/po/sl.po index c67d4b40fa..92d59b2c75 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-27 11:24+0200\n" +"PO-Revision-Date: 2012-09-05 10:45+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Slovenian \n" "Language: sl\n" @@ -4816,10 +4816,10 @@ msgid "" "alphabetical order." msgstr "" "Uporabite lahko nadomestne znake MySQL (% in _); ubežite jih, če jih želite " -"uporabiti dobesedno, npr. uporabite 'my\\_db' in ne 'my_db'. Z uporabo te " -"možnosti lahko razvrstite seznam zbirk podatkov; samo vnesite njihova imena " -"v vrstnem redu in na koncu uporabite [kbd]*[/kbd] za prikaz preostalih v " -"abecednem vrstnem redu." +"uporabiti dobesedno, npr. uporabite [kbd]'my\\_db'[/kbd] in ne " +"[kbd]'my_db'[/kbd]. Z uporabo te možnosti lahko razvrstite seznam zbirk " +"podatkov; samo vnesite njihova imena v vrstnem redu in na koncu uporabite " +"[kbd]*[/kbd] za prikaz preostalih v abecednem vrstnem redu." #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" From 040c76976e310b7e48be448b7b4f1dd6415d0fad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:50:14 +0200 Subject: [PATCH 40/51] Translated using Weblate. --- po/es.po | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/po/es.po b/po/es.po index c5b5bff8e0..dbce0f2cc3 100644 --- a/po/es.po +++ b/po/es.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-22 15:15+0200\n" -"Last-Translator: Matías Bellone \n" +"PO-Revision-Date: 2012-09-05 10:50+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -3328,8 +3328,8 @@ msgid "" "cross-frame scripting attacks" msgstr "" "Habilitar esto permite que una página en un dominio distinto llame a " -"phpMyAdmin dentro de un frame, y es un potencial [strong]agujero de seguridad" -"[strong] que permite ataques de cross-frame scripting" +"phpMyAdmin dentro de un frame, y es un potencial [strong]agujero de " +"seguridad[/strong] que permite ataques de cross-frame scripting" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -4053,8 +4053,8 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Si quiere usar el servicio de Validación de SQL, debería saber que [stong]" -"todas las sentencias SQL son almacenadas de forma anónima para uso " +"Si quiere usar el servicio de Validación de SQL, debería saber que " +"[strong]todas las sentencias SQL son almacenadas de forma anónima para uso " "estadístico[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL " "Validator[/a], Copyright 2002 Upright Database Technology.Todos los derechos " "reservados.[/em]" @@ -5256,10 +5256,10 @@ msgid "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" msgstr "" -"Definido como [kdb]nested[/kdb], el alias de nombre de tabla es sólo " -"utilizado para separar/anidar las tablase según la configuración $cfg" -"['LeftFrameTableSeparator'], de forma que sólo la carpeta sea llamada como " -"el alias, el nombre de la tabla en sí mismo permanece intacto" +"Definido como [kbd]nested[/kbd], el alias de nombre de tabla es sólo " +"utilizado para separar/anidar las tablase según la configuración " +"$cfg['LeftFrameTableSeparator'], de forma que sólo la carpeta sea llamada " +"como el alias, el nombre de la tabla en sí mismo permanece intacto" #: libraries/config/messages.inc.php:480 msgid "Display table comment instead of its name" From ebe8650478fb2c1fd8bc1b2bd64a9cd65a251067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:56:31 +0200 Subject: [PATCH 41/51] Translated using Weblate. --- po/sv.po | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/po/sv.po b/po/sv.po index 7c69a9680b..f9f9e9c9e5 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-01 18:25+0200\n" -"Last-Translator: ProUser \n" +"PO-Revision-Date: 2012-09-05 10:55+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -2395,7 +2395,9 @@ msgstr "Okänt fel i filuppladdning." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11" +msgstr "" +"Fel vid flytt av uppladdad fil, se " +"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" #: libraries/File.class.php:508 msgid "Error while moving uploaded file." @@ -3283,8 +3285,8 @@ msgid "" "cross-frame scripting attacks" msgstr "" "Vid aktivering tillåts att en sida som ligger på en annan domän att anropa " -"phpMyAdmin i en ram, vilket är en potentiell [strong] säkerhetshål [/ " -"strong] och tillåter mellan ramar scripting-angrepp" +"phpMyAdmin i en ram, vilket är en potentiell [strong] säkerhetshål[/strong] " +"och tillåter mellan ramar scripting-angrepp" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -3999,9 +4001,10 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" "Om du vill använda SQL Validator tjänsten bör du vara medveten om att " -"[strong]alla SQL-satser lagras anonymt för statistiska ändamål[/ strong].[br]" -"[em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright " -"2002 Upright Database Technology. Alla rättigheter reserverade.[/em]" +"[strong]alla SQL-satser lagras anonymt för statistiska " +"ändamål[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL " +"Validator[/a], Copyright 2002 Upright Database Technology. Alla rättigheter " +"reserverade.[/em]" #: libraries/config/messages.inc.php:224 msgid "Startup" @@ -4655,7 +4658,7 @@ msgstr "Komprimera anslutning" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "Hur ansluta till servern, behåll [kbd]TCP[/ kbd] om du är osäker" +msgstr "Hur ansluta till servern, behåll [kbd]TCP[/kbd] om du är osäker" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -4792,7 +4795,7 @@ msgid "" "alphabetical order." msgstr "" "Du kan använda MySQL jokertecken (% och _), undgå dem om du vill använda " -"deras ordagranna betydelse, dvs använda [kbd] 'my\\ _db\"[/ kbd] och inte " +"deras ordagranna betydelse, dvs använda [kbd] 'my\\ _db\"[/kbd] och inte " "[kbd]'my_db\"[/kbd]. Med det här alternativet kan du sortera databasens " "lista. Det är bara att skriva sina namn i ordning och använda [kbd]*[/kbd] i " "slutet för att visa resten i alfabetisk ordning." @@ -5562,7 +5565,7 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ " +"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 @@ -8548,7 +8551,7 @@ msgid "" msgstr "" "PHP-parametern " "[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a är lägre än cookie-giltighet " +"maxlifetime@_blank]session.gc_maxlifetime[/a] är lägre än cookie-giltighet " "konfigurerad i phpMyAdmin. på grund av detta, kommer din inloggning upphöra " "tidigare än vad som ärkonfigurerat i phpMyAdmin." @@ -11019,7 +11022,7 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Du använder Git version, kör [kbd]git pull[/ kbd] :-) [br] Den senaste " +"Du använder Git version, kör [kbd]git pull[/kbd] :-) [br] Den senaste " "stabila versionen är%s, släppt den %s." #: setup/lib/index.lib.php:186 From aa19a2104dcfc96575daa2e587aa1ff00cf21f47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:01:00 +0200 Subject: [PATCH 42/51] Translated using Weblate. --- po/ta.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/ta.po b/po/ta.po index 917487b089..88574149f4 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-27 11:32+0200\n" +"PO-Revision-Date: 2012-09-05 10:01+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil \n" "Language: ta\n" @@ -128,7 +128,7 @@ msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட #: db_datadict.php:49 db_operations.php:370 msgid "Database comment: " -msgstr "தரவுத்தள கருத்துரை" +msgstr "தரவுத்தள கருத்துரை " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 #: libraries/tbl_properties.inc.php:661 tbl_operations.php:366 @@ -2336,12 +2336,12 @@ msgstr "ஒரு வினாடிக்கு" #: libraries/Advisor.class.php:329 server_status.php:964 msgid "per minute" -msgstr "ஒரு நிமிடத்திற்கு " +msgstr "ஒரு நிமிடத்திற்கு" #: libraries/Advisor.class.php:332 server_status.php:960 server_status.php:996 #: server_status.php:1118 server_status.php:1163 msgid "per hour" -msgstr "ஒரு மணி நேரத்திற்கு " +msgstr "ஒரு மணி நேரத்திற்கு" #: libraries/Advisor.class.php:335 msgid "per day" @@ -2914,7 +2914,7 @@ msgstr "SQL வினவல்" #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:108 msgid "MySQL said: " -msgstr "MySQL சொன்னது:" +msgstr "MySQL சொன்னது: " #: libraries/common.lib.php:1130 msgid "Failed to connect to SQL validator!" @@ -2951,7 +2951,7 @@ msgstr "" #: libraries/common.lib.php:1305 msgid "Inline edit of this query" -msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி " +msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி" #: libraries/common.lib.php:1307 msgctxt "Inline edit query" @@ -10462,7 +10462,7 @@ msgstr "" #: setup/lib/index.lib.php:186 msgid "No newer stable version is available" -msgstr "புதிய நிலையான பதிப்புகள் ஒன்றும் இல்லை " +msgstr "புதிய நிலையான பதிப்புகள் ஒன்றும் இல்லை" #: setup/lib/index.lib.php:274 #, php-format From d208433fff2fb3588a36db1d3a772c41c25648a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:32:40 +0200 Subject: [PATCH 43/51] Translated using Weblate. --- po/tt.po | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/po/tt.po b/po/tt.po index 90299059b8..9bbb283312 100644 --- a/po/tt.po +++ b/po/tt.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-05-17 15:17+0200\n" +"PO-Revision-Date: 2012-09-05 10:32+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: tatarish \n" +"Language-Team: Tatar \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: Weblate 1.0\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -5734,7 +5734,9 @@ msgstr "" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Törle buluı bar. YBS 3.11 qarísı" +msgstr "" +"Törle buluı bar. [a@./Documentation.html#faq3_11@Documentation]YBS 3.11[/a] " +"qarísı" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 From dd8e908eaa7ca0234c09b6e4bcedd69cc05db3ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 09:58:36 +0200 Subject: [PATCH 44/51] Translated using Weblate. --- po/th.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/po/th.po b/po/th.po index 2e211e9a02..ab7d430702 100644 --- a/po/th.po +++ b/po/th.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-27 11:48+0200\n" -"Last-Translator: Anusuk Sangubon \n" +"PO-Revision-Date: 2012-09-05 09:58+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" @@ -1944,7 +1944,7 @@ msgstr "คุณยังไม่ได้บันทึกเลย์เอ #: js/messages.php:344 msgid "Add an option for column " -msgstr "เพิ่มตัวเลือกสำหรับสดมภ์" +msgstr "เพิ่มตัวเลือกสำหรับสดมภ์ " #: js/messages.php:347 msgid "Press escape to cancel editing" @@ -5917,7 +5917,7 @@ msgstr "ในคำค้น" #: libraries/display_tbl.lib.php:2364 msgid "Showing rows" -msgstr "แสดงระเบียนที่ " +msgstr "แสดงระเบียนที่" #: libraries/display_tbl.lib.php:2374 msgid "total" @@ -6884,7 +6884,7 @@ msgstr "ชุดตัวอักษร" #: libraries/mysql_charsets.lib.php:212 libraries/mysql_charsets.lib.php:413 #: tbl_change.php:572 msgid "Binary" -msgstr "ข้อมูลไบนารี " +msgstr "ข้อมูลไบนารี" #: libraries/mysql_charsets.lib.php:224 msgid "Bulgarian" @@ -8003,7 +8003,7 @@ msgstr "" #: libraries/sql_query_form.lib.php:344 msgid "Show this query here again" -msgstr "แสดงคำค้นนี้อีกที " +msgstr "แสดงคำค้นนี้อีกที" #: libraries/sql_query_form.lib.php:407 msgid "View only" @@ -9151,7 +9151,7 @@ msgstr "สิทธิเจาะจงเฉพาะตาราง" #: server_privileges.php:537 server_privileges.php:689 #: server_privileges.php:1706 msgid "Note: MySQL privilege names are expressed in English" -msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " +msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ" #: server_privileges.php:614 msgid "Administration" @@ -11007,7 +11007,7 @@ msgstr "" #: tbl_change.php:821 msgid "Binary - do not edit" -msgstr "ข้อมูลไบนารี - ห้ามแก้ไข " +msgstr "ข้อมูลไบนารี - ห้ามแก้ไข" #: tbl_change.php:871 msgid "Upload to BLOB repository" @@ -11384,7 +11384,7 @@ msgstr "ความยาวแถว" #: tbl_printview.php:365 tbl_structure.php:902 msgid "Row size" -msgstr "ขนาดแถว " +msgstr "ขนาดแถว" #: tbl_printview.php:375 tbl_structure.php:910 msgid "Next autoindex" From 8d018b9528ab4db3c421a85cd978861da54e17e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:49:29 +0200 Subject: [PATCH 45/51] Translated using Weblate. --- po/uk.po | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/po/uk.po b/po/uk.po index b8efab74da..798939e549 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-05-17 15:22+0200\n" +"PO-Revision-Date: 2012-09-05 10:49+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: ukrainian \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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: Weblate 1.0\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -3324,8 +3324,8 @@ msgid "" "cross-frame scripting attacks" msgstr "" "Включення цьго дозволяє сторінці, розташованої на іншому домені викликати " -"PhpMyAdmin всередині фрейму, і це потенціальна [сильне] дірка в безпеці [/ " -"сильний] що дозволяє крос-фреймові сценарії атак" +"PhpMyAdmin всередині фрейму, і це потенціальна [strong]дірка в " +"безпеці[/strong] що дозволяє крос-фреймові сценарії атак" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -3918,9 +3918,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -"Вкажіть рядку заголовка браузера текст. Відповідно до [a@Documentation." -"html#cfg_TitleTable]documentation[/а] для магічних рядків, які можуть " -"використовуватися для отримання спеціальних значень." +"Вкажіть рядку заголовка браузера текст. Відповідно до " +"[a@Documentation.html#cfg_TitleTable]documentation[/a] для магічних рядків, " +"які можуть використовуватися для отримання спеціальних значень." #: libraries/config/messages.inc.php:196 #: libraries/navigation_header.inc.php:79 @@ -3984,8 +3984,8 @@ msgid "" "storage[/a] in documentation" msgstr "" "Налаштуйте у PhpMyAdmin конфігурацію зберігання даних, щоб отримати доступ " -"до додаткових властивостей, дивись [a@Documentation.html#linked-tables]" -"PhpMyAdmin конфігурація пам'яті[/а] в документації" +"до додаткових властивостей, дивись [a@Documentation.html#linked-" +"tables]PhpMyAdmin конфігурація пам'яті[/a] в документації" #: libraries/config/messages.inc.php:208 msgid "Changes tracking" From 1be8cb0c51c54bb190229e905f5b04e2b8c0c93c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:47:05 +0200 Subject: [PATCH 46/51] Translated using Weblate. --- po/ur.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/po/ur.po b/po/ur.po index 21b5688254..8f1f73b1bd 100644 --- a/po/ur.po +++ b/po/ur.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-07-20 00:33+0200\n" -"Last-Translator: dasatti \n" -"Language-Team: Urdu \n" +"PO-Revision-Date: 2012-09-05 10:47+0200\n" +"Last-Translator: Michal Čihař \n" +"Language-Team: Urdu \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: Weblate 1.1\n" +"X-Generator: Weblate 1.2\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353 #: libraries/display_tbl.lib.php:359 server_privileges.php:1679 @@ -4761,8 +4761,9 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -"نہیں کے لیے خالی چھوڑیں@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " -"معاونت، مجوزہd]pma_bookmark[/kbd]" +"نہیں کے لیے خالی " +"چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] معاونت، " +"مجوزہ[kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:375 msgid "Bookmark table" From 0a3d3b8b2bbb71f37a0e4eba0b3e8bc9f8ae4da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:46:24 +0200 Subject: [PATCH 47/51] Translated using Weblate. --- po/uz.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uz.po b/po/uz.po index db9db9b45a..de979fd4ad 100644 --- a/po/uz.po +++ b/po/uz.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-28 14:42+0200\n" +"PO-Revision-Date: 2012-09-05 10:46+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \n" "Language: uz\n" @@ -5079,7 +5079,7 @@ msgstr "Уланишни қисиш" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "Серверга уланиш тури, агар билмасангиз, \"tcp\" деб қолдиринг" +msgstr "Серверга уланиш тури, агар билмасангиз, [kbd]tcp[/kbd] деб қолдиринг" #: libraries/config/messages.inc.php:381 msgid "Connection type" From 0dd5c257678c35168382f6d3cbdc988826d44cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 10:46:37 +0200 Subject: [PATCH 48/51] Translated using Weblate. --- po/uz@latin.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uz@latin.po b/po/uz@latin.po index dc79f7c0da..a90ea24c47 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-08-28 14:41+0200\n" +"PO-Revision-Date: 2012-09-05 10:46+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) " "\n" @@ -5096,7 +5096,7 @@ msgstr "Ulanishni qisish" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "Serverga ulanish turi, agar bilmasangiz, \"tcp\" deb qoldiring" +msgstr "Serverga ulanish turi, agar bilmasangiz, [kbd]tcp[/kbd] deb qoldiring" #: libraries/config/messages.inc.php:381 msgid "Connection type" From a69a7f98561766d28872a304a97220afc4b1b3c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 Sep 2012 11:29:47 +0200 Subject: [PATCH 49/51] Translated using Weblate. --- po/sr@latin.po | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/po/sr@latin.po b/po/sr@latin.po index 208dc379af..444548d00e 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-05 10:31+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2012-09-05 11:24+0200\n" +"Last-Translator: Vojislav Pavić \n" "Language-Team: Serbian (latin) " "\n" "Language: sr@latin\n" @@ -4274,11 +4274,11 @@ msgstr "Imena kolona u prvom redu" #: libraries/config/messages.inc.php:257 libraries/import/ods.php:34 msgid "Do not import empty rows" -msgstr "" +msgstr "Ne uvozi prazne redove" #: libraries/config/messages.inc.php:258 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "Uvezi valute ($5.00 do 5.00)" #: libraries/config/messages.inc.php:259 msgid "Import percentages as proper decimals (12.00% to .12)" @@ -4291,7 +4291,7 @@ msgstr "Broj upita za preskakanje od starta" #: libraries/config/messages.inc.php:261 msgid "Partial import: skip queries" -msgstr "" +msgstr "Delimični uvoz: preskoči upite" #: libraries/config/messages.inc.php:263 #| msgid "Add AUTO_INCREMENT value" @@ -4300,11 +4300,11 @@ msgstr "Ne koristi AUTO_INCREMENT za nulte vrednosti" #: libraries/config/messages.inc.php:266 msgid "Initial state for sliders" -msgstr "" +msgstr "Početno stanje za klizače" #: libraries/config/messages.inc.php:267 msgid "How many rows can be inserted at one time" -msgstr "" +msgstr "Koliko redova može biti umetnuto odjednom" #: libraries/config/messages.inc.php:268 msgid "Number of inserted rows" @@ -4316,19 +4316,19 @@ msgstr "" #: libraries/config/messages.inc.php:270 msgid "Show logo in left frame" -msgstr "" +msgstr "Prikaži logo u levom okviru" #: libraries/config/messages.inc.php:271 msgid "Display logo" -msgstr "" +msgstr "Prikaži logo" #: libraries/config/messages.inc.php:272 msgid "Display server choice at the top of the left frame" -msgstr "" +msgstr "Prikaz izbora servera na vrhu levog okvira" #: libraries/config/messages.inc.php:273 msgid "Display servers selection" -msgstr "" +msgstr "Prikaži izbor servera" #: libraries/config/messages.inc.php:274 #| msgid "The number of tables that are open." @@ -4337,7 +4337,7 @@ msgstr "Minimalni broj tabela za prikaz okvira za filter tabela" #: libraries/config/messages.inc.php:275 msgid "String that separates databases into different tree levels" -msgstr "" +msgstr "String koji odvaja baze u različitim nivoima stabla" #: libraries/config/messages.inc.php:276 msgid "Database tree separator" @@ -4348,14 +4348,16 @@ msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" +"Samo u pojednostavljenoj verziji; prikaži baze u obliku drveta (određeno " +"separatorom definisanim u nastavku ispod)" #: libraries/config/messages.inc.php:278 msgid "Display databases in a tree" -msgstr "" +msgstr "Prikaži baze u obliku drveta" #: libraries/config/messages.inc.php:279 msgid "Disable this if you want to see all databases at once" -msgstr "" +msgstr "Isključute ovo ako želite da vidite sve baze odjednom" #: libraries/config/messages.inc.php:280 msgid "Use light version" @@ -4363,23 +4365,23 @@ msgstr "Koristi pojednostavljenu verziju" #: libraries/config/messages.inc.php:281 msgid "Maximum table tree depth" -msgstr "" +msgstr "Maksimalna dubina drveta za tabele" #: libraries/config/messages.inc.php:282 msgid "String that separates tables into different tree levels" -msgstr "" +msgstr "String koji razdvaja tabele u različite nivoe drveta" #: libraries/config/messages.inc.php:283 msgid "Table tree separator" -msgstr "" +msgstr "Separator tabela u drvetu" #: libraries/config/messages.inc.php:284 msgid "URL where logo in the navigation frame will point to" -msgstr "" +msgstr "URL na koji će logo iz navigacionog okvira pokazivati" #: libraries/config/messages.inc.php:285 msgid "Logo link URL" -msgstr "" +msgstr "URL za link na logo-u" #: libraries/config/messages.inc.php:286 msgid "" From 88ea587f1fe64b616b266fa427bfb34bf6e6ea5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojislav=20Pavi=C4=87?= Date: Wed, 5 Sep 2012 13:53:01 +0200 Subject: [PATCH 50/51] Translated using Weblate. --- po/sr.po | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/po/sr.po b/po/sr.po index 774310a782..6446531375 100644 --- a/po/sr.po +++ b/po/sr.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-05 10:38+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2012-09-05 13:53+0200\n" +"Last-Translator: Vojislav Pavić \n" "Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" @@ -475,16 +475,14 @@ msgid "Modify" msgstr "Промени" #: db_qbe.php:606 -#, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" -msgstr "Додај/обриши поље за критеријум" +msgstr "Додај/обриши редове за критеријум" #: db_qbe.php:618 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" -msgstr "Додај/обриши колону" +msgstr "Додај/обриши колоне" #: db_qbe.php:631 db_qbe.php:656 msgid "Update Query" From fd279895c3ee01001cca055846d78c4e902d65ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojislav=20Pavi=C4=87?= Date: Wed, 5 Sep 2012 13:50:58 +0200 Subject: [PATCH 51/51] Translated using Weblate. --- po/sr@latin.po | 71 ++++++++++++++++++++++++++++---------------------- 1 file changed, 40 insertions(+), 31 deletions(-) diff --git a/po/sr@latin.po b/po/sr@latin.po index 444548d00e..31c3ca7a3e 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.3-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-08-22 06:32-0400\n" -"PO-Revision-Date: 2012-09-05 11:24+0200\n" +"PO-Revision-Date: 2012-09-05 13:50+0200\n" "Last-Translator: Vojislav Pavić \n" "Language-Team: Serbian (latin) " "\n" @@ -3892,6 +3892,9 @@ msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" +"Redosled sortiranja stavki u padajućoj listi sa stranim ključevima; " +"[kbd]content[/kbd] je referencirani podatak; [kbd]id[/kbd] je vrednost " +"ključa" #: libraries/config/messages.inc.php:153 msgid "Foreign key dropdown order" @@ -4388,6 +4391,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" +"Otvori linkovanu stranu u glavnom prozoru ([kbd]main[/kbd]) ili u novom " +"([kbd]new[/kbd])" #: libraries/config/messages.inc.php:287 msgid "Logo link target" @@ -4395,15 +4400,15 @@ msgstr "" #: libraries/config/messages.inc.php:288 msgid "Highlight server under the mouse cursor" -msgstr "" +msgstr "Naglasi server koji se nalazi ispod kursora miša" #: libraries/config/messages.inc.php:289 msgid "Enable highlighting" -msgstr "" +msgstr "Omogući naglašavanje" #: libraries/config/messages.inc.php:290 msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "" +msgstr "Maksimalni broj nedavno korišćenih tabela; postavite na 0 da isključite" #: libraries/config/messages.inc.php:291 msgid "Recently used tables" @@ -4411,11 +4416,11 @@ msgstr "Skorije korišćene tabele" #: libraries/config/messages.inc.php:292 msgid "Use less graphically intense tabs" -msgstr "" +msgstr "Koristi manje grafički zahtevne kartice" #: libraries/config/messages.inc.php:293 msgid "Light tabs" -msgstr "" +msgstr "Pojednostavljene kartice" #: libraries/config/messages.inc.php:294 msgid "" @@ -4435,7 +4440,7 @@ msgstr "" #: libraries/config/messages.inc.php:297 msgid "Delete all cookies on logout" -msgstr "" +msgstr "Obriši sve kukije nakon odjavljivanja" #: libraries/config/messages.inc.php:298 msgid "" @@ -4461,7 +4466,7 @@ msgstr "" #: libraries/config/messages.inc.php:302 msgid "Define how long (in seconds) a login cookie is valid" -msgstr "" +msgstr "Definiše koliko dugo (u sekundama) je kuki za prijavu validan" #: libraries/config/messages.inc.php:303 msgid "Login cookie validity" @@ -4477,24 +4482,24 @@ msgstr "" #: libraries/config/messages.inc.php:306 msgid "Use icons on main page" -msgstr "" +msgstr "Koristi ikonice na glavnoj strani" #: libraries/config/messages.inc.php:307 msgid "Maximum number of characters used when a SQL query is displayed" -msgstr "" +msgstr "Maksimalni broj znakova koji se koristi kada se SQL upit prikazuje" #: libraries/config/messages.inc.php:308 msgid "Maximum displayed SQL length" -msgstr "" +msgstr "Maksimalna dužina prikazanog SQL-a" #: libraries/config/messages.inc.php:309 libraries/config/messages.inc.php:314 #: libraries/config/messages.inc.php:341 msgid "Users cannot set a higher value" -msgstr "" +msgstr "Korisnici ne mogu da zadaju veću vrednost" #: libraries/config/messages.inc.php:310 msgid "Maximum number of databases displayed in left frame and database list" -msgstr "" +msgstr "Maksimalni broj baza prikazanih u levom okviru i listi baza" #: libraries/config/messages.inc.php:311 msgid "Maximum databases" @@ -4509,31 +4514,35 @@ msgstr "" #: libraries/config/messages.inc.php:313 msgid "Maximum number of rows to display" -msgstr "" +msgstr "Maksimalni broj redova za prikaz" #: libraries/config/messages.inc.php:315 msgid "Maximum number of tables displayed in table list" -msgstr "" +msgstr "Maksimalni broj tabela prikazanih u listi tabela" #: libraries/config/messages.inc.php:316 msgid "Maximum tables" -msgstr "" +msgstr "Maksimalan broj tabela" #: libraries/config/messages.inc.php:317 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" +"Isključi podrazumevano upozorenje koje se prikazuje ako je mcrypt nedostupan " +"kod autentikacije uz pomoć kukija" #: libraries/config/messages.inc.php:318 msgid "mcrypt warning" -msgstr "" +msgstr "mcrypt upozorenje" #: libraries/config/messages.inc.php:319 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" +"Broj bajtova koji je dozvoljen da skript zauzme, primer [kbd]32M[/kbd] " +"([kbd]0[/kbd] nema ograničenja)" #: libraries/config/messages.inc.php:320 msgid "Memory limit" @@ -4545,11 +4554,11 @@ msgstr "" #: libraries/config/messages.inc.php:322 msgid "Where to show the table row links" -msgstr "" +msgstr "Gde da se prikažu linkovi na redove tabele" #: libraries/config/messages.inc.php:323 msgid "Use natural order for sorting table and database names" -msgstr "" +msgstr "Koristi prirodni poredak za sortiranje imena tabela i baza" #: libraries/config/messages.inc.php:324 #| msgid "Alter table order by" @@ -4558,7 +4567,7 @@ msgstr "Prirodni redosled" #: libraries/config/messages.inc.php:325 libraries/config/messages.inc.php:335 msgid "Use only icons, only text or both" -msgstr "" +msgstr "Koristi samo ikonice, samo tekst ili oboje" #: libraries/config/messages.inc.php:326 msgid "Iconic navigation bar" @@ -4580,15 +4589,15 @@ msgstr "" #: libraries/config/messages.inc.php:330 msgid "Default sorting order" -msgstr "" +msgstr "Podrazumevani redosled sortiranja" #: libraries/config/messages.inc.php:331 msgid "Use persistent connections to MySQL databases" -msgstr "" +msgstr "Uspostavi trajne veze sa MySQL bazama" #: libraries/config/messages.inc.php:332 msgid "Persistent connections" -msgstr "" +msgstr "Trajne veze" #: libraries/config/messages.inc.php:333 msgid "" @@ -4599,7 +4608,7 @@ msgstr "" #: libraries/config/messages.inc.php:334 msgid "Missing phpMyAdmin configuration storage tables" -msgstr "" +msgstr "Nedostaju phpMyAdmin skladišne tabele" #: libraries/config/messages.inc.php:336 msgid "Iconic table operations" @@ -4611,7 +4620,7 @@ msgstr "" #: libraries/config/messages.inc.php:338 msgid "Protect binary columns" -msgstr "" +msgstr "Zaštiti binarne kolone" #: libraries/config/messages.inc.php:339 msgid "" @@ -4622,27 +4631,27 @@ msgstr "" #: libraries/config/messages.inc.php:340 msgid "Permanent query history" -msgstr "" +msgstr "Stalna istorija upita" #: libraries/config/messages.inc.php:342 msgid "How many queries are kept in history" -msgstr "" +msgstr "Koliko mnogo upita se čuva u istoriji" #: libraries/config/messages.inc.php:343 msgid "Query history length" -msgstr "" +msgstr "Dužina istorije upita" #: libraries/config/messages.inc.php:344 msgid "Tab displayed when opening a new query window" -msgstr "" +msgstr "Koartica koja se prikazuje kada se otvori novi prozor za upite" #: libraries/config/messages.inc.php:345 msgid "Default query window tab" -msgstr "" +msgstr "Podrazumevana kartica prozora za upite" #: libraries/config/messages.inc.php:346 msgid "Query window height (in pixels)" -msgstr "" +msgstr "Visina prozora za upite (u pikselima)" #: libraries/config/messages.inc.php:347 #| msgid "Query window"