diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt index 7745157436..58c75d185c 100644 --- a/libraries/advisory_rules.txt +++ b/libraries/advisory_rules.txt @@ -127,7 +127,7 @@ rule 'Query cache disabled' The query cache is known to greatly improve performance if configured correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value and setting {query_cache_type} to 'ON'. Note: If you are using memcached, ignore this recommendation. query_cache_size is set to 0 or query_cache_type is set to 'OFF' -rule 'Query cache usage' [!fired('Query cache disabled')] +rule 'Query caching method' [!fired('Query cache disabled')] Questions / Uptime value > 100 Suboptimal caching method. @@ -141,7 +141,7 @@ rule 'Query cache efficiency (%)' [Com_select + Qcache_hits > 0 && !fired('Query Consider increasing {query_cache_limit}. The current query cache hit rate of %s% is below 20% | round(value,1) -rule 'Query Cache usage' [!fired('Query cache disabled')] +rule 'Query cache usage' [!fired('Query cache disabled')] 100 - Qcache_free_memory / query_cache_size * 100 value < 80 Less than 80% of the query cache is being utilized. diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 29d2f439e2..3d561e6ded 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -722,13 +722,14 @@ function PMA_AddJSCode($str) /** * Adds JS code snippet for variable assignment to be displayed by header.inc.php. * - * @param string $key Name of value to set - * @param mixed $value Value to set, can be either string or array of strings + * @param string $key Name of value to set + * @param mixed $value Value to set, can be either string or array of strings + * @param bool $escape Whether to escape value or keep it as it is (for inclusion of js code) * */ -function PMA_AddJSVar($key, $value) +function PMA_AddJSVar($key, $value, $escape = true) { - PMA_AddJsCode(PMA_getJsValue($key, $value)); + PMA_AddJsCode(PMA_getJsValue($key, $value, $escape)); } ?> diff --git a/libraries/js_escape.lib.php b/libraries/js_escape.lib.php index 87d88552a6..969b1bcd55 100644 --- a/libraries/js_escape.lib.php +++ b/libraries/js_escape.lib.php @@ -82,15 +82,18 @@ function PMA_formatJsVal($value) * Formats an javascript assignment with proper escaping of a value * and support for assigning array of strings. * - * @param string $key Name of value to set - * @param mixed $value Value to set, can be either string or array of strings + * @param string $key Name of value to set + * @param mixed $value Value to set, can be either string or array of strings + * @param bool $escape Whether to escape value or keep it as it is (for inclusion of js code) * * @return string Javascript code. */ -function PMA_getJsValue($key, $value) +function PMA_getJsValue($key, $value, $escape = true) { $result = $key . ' = '; - if (is_array($value)) { + if (!$escape) { + $result .= $value; + } elseif (is_array($value)) { $result .= '['; foreach ($value as $id => $val) { $result .= PMA_formatJsVal($value) . ","; diff --git a/po/da.po b/po/da.po index 6e46a44c73..e93ae36bc9 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-07-23 21:27+0200\n" +"PO-Revision-Date: 2011-08-20 19:20+0200\n" "Last-Translator: Jørgen Thomsen \n" "Language-Team: danish \n" "Language: da\n" @@ -414,10 +414,10 @@ msgid "You have to choose at least one column to display" msgstr "Du skal vælge mindst en kolonne der skal vises" #: db_qbe.php:186 -#, fuzzy, php-format +#, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" -msgstr "visuel konstruktør" +msgstr "Skift til %svisuel konstruktør%s" #: db_qbe.php:222 libraries/db_structure.lib.php:90 #: libraries/display_tbl.lib.php:955 @@ -850,10 +850,10 @@ msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." #: gis_data_editor.php:84 -#, fuzzy, php-format +#, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" -msgstr "Værdier for kolonnen \"%s\"" +msgstr "Værdi for kolonnen \"%s\"" #: gis_data_editor.php:113 tbl_gis_visualization.php:172 msgid "Use OpenStreetMaps as Base Layer" @@ -861,7 +861,7 @@ msgstr "Brug OpenStreetMaps som basislag" #: gis_data_editor.php:134 msgid "SRID" -msgstr "" +msgstr "SRID" #: gis_data_editor.php:151 js/messages.php:289 #: libraries/display_tbl.lib.php:663 @@ -871,72 +871,68 @@ msgstr "Geometri" #: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 #: gis_data_editor.php:290 js/messages.php:286 msgid "Point" -msgstr "" +msgstr "Punkt" #: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 #: gis_data_editor.php:291 js/messages.php:284 msgid "X" -msgstr "" +msgstr "X" #: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 #: gis_data_editor.php:293 js/messages.php:285 msgid "Y" -msgstr "" +msgstr "Y" #: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 #: js/messages.php:292 -#, fuzzy #| msgid "Add routine" msgid "Add a point" -msgstr "Tilføj rutine" +msgstr "Tilføj et punkt" #: gis_data_editor.php:218 js/messages.php:287 -#, fuzzy #| msgid "Lines terminated by" msgid "Linestring" -msgstr "Linjer afsluttes med" +msgstr "Linjestreng" #: gis_data_editor.php:221 gis_data_editor.php:275 msgid "Outer Ring:" -msgstr "" +msgstr "Ydre ring:" #: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 msgid "Inner Ring" -msgstr "" +msgstr "Indre ring" #: gis_data_editor.php:248 -#, fuzzy #| msgid "Add constraints" msgid "Add a linestring" -msgstr "Tilføj begrænsninger" +msgstr "Tilføj en linjestreng" #: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 -#, fuzzy #| msgid "Add a new server" msgid "Add an inner ring" -msgstr "Tilføj ny server" +msgstr "Tilføj en indre ring" #: gis_data_editor.php:262 js/messages.php:288 msgid "Polygon" -msgstr "" +msgstr "Polygon" #: gis_data_editor.php:300 js/messages.php:294 -#, fuzzy #| msgid "Add column" msgid "Add a polygon" -msgstr "Tilføj kolonne" +msgstr "Tilføj polygon" #: gis_data_editor.php:304 -#, fuzzy #| msgid "Geometry" msgid "Add geometry" -msgstr "Geometri" +msgstr "Tilføj geometri" #: gis_data_editor.php:312 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" +"Vælg \"GeomFromText\" fra kolonnen \"Function\" og indsæt strengen nedenfor i " +"feltet \"Value\"" #: import.php:57 #, php-format @@ -1216,10 +1212,9 @@ msgid "Query statistics" msgstr "Statistik over forespørgsler" #: js/messages.php:93 -#, fuzzy #| msgid "Failed to read configuration file" msgid "Local monitor configuration incompatible" -msgstr "Kunne ikke indlæse konfigurationsfilen" +msgstr "Konfigurationen for den lokale skærm er inkompatibel" #: js/messages.php:94 msgid "" @@ -1228,24 +1223,25 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"Konfigurationen af diagramopstillingen i din browsers lokale lager er ikke " +"længere kompatibel med den nyere version af skærmdialogen. Det er meget " +"sandsynligt, at din aktuelle konfiguration ikke vil virke længere.Nulstil " +"derfor din konfiguration i menuen Settings" #: js/messages.php:96 -#, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" -msgstr "Forespørgsel-mellemlager" +msgstr "Effektivitet af forespørgsels-mellemlager" #: js/messages.php:97 po/advisory_rules.php:70 -#, fuzzy #| msgid "Query cache" msgid "Query cache usage" -msgstr "Forespørgsel-mellemlager" +msgstr "Forbrug af forespørgsels-mellemlager" #: js/messages.php:98 -#, fuzzy #| msgid "Query cache" msgid "Query cache used" -msgstr "Forespørgsel-mellemlager" +msgstr "Forbrugt forespørgsels-mellemlager" #: js/messages.php:100 msgid "System CPU Usage" @@ -1274,64 +1270,56 @@ msgid "Average load" msgstr "Gennemsnitlig belastning" #: js/messages.php:107 -#, fuzzy #| msgid "System memory" msgid "Total memory" -msgstr "Systemhukommelse" +msgstr "Total hukommelse" #: js/messages.php:108 -#, fuzzy #| msgid "System memory" msgid "Cached memory" -msgstr "Systemhukommelse" +msgstr "Hukommelse i mellemlager" #: js/messages.php:109 -#, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" -msgstr "Bufferpool" +msgstr "Hukommelse i buffer" #: js/messages.php:110 -#, fuzzy #| msgid "System memory" msgid "Free memory" -msgstr "Systemhukommelse" +msgstr "Ledig hukommelse" #: js/messages.php:111 -#, fuzzy #| msgid "System memory" msgid "Used memory" -msgstr "Systemhukommelse" +msgstr "Forbrugt hukommelse" #: js/messages.php:113 -#, fuzzy #| msgid "Total" msgid "Total Swap" -msgstr "Total" +msgstr "Totalt sidelager" #: js/messages.php:114 msgid "Cached Swap" -msgstr "" +msgstr "Sidelager i mellemlager" #: js/messages.php:115 msgid "Used Swap" -msgstr "" +msgstr "Forbrugt sidelager" #: js/messages.php:116 -#, fuzzy #| msgid "Free pages" msgid "Free Swap" -msgstr "Frie sider" +msgstr "Ledigt sidelager" #: js/messages.php:118 msgid "Bytes sent" -msgstr "" +msgstr "Bytes sendt" #: js/messages.php:119 -#, fuzzy #| msgid "Received" msgid "Bytes received" -msgstr "Modtaget" +msgstr "Bytes modtaget" #: js/messages.php:120 server_status.php:1040 msgid "Connections" @@ -1356,10 +1344,9 @@ msgid "Remove chart" msgstr "Fjern diagram" #: js/messages.php:128 -#, fuzzy #| msgid "Edit labels and series" msgid "Edit title and labels" -msgstr "Rediger overskrifter og serier" +msgstr "Rediger titel og etiketter" #: js/messages.php:129 msgid "Add chart to grid" @@ -1386,7 +1373,6 @@ msgid "Pause monitor" msgstr "Sæt monitor på pause" #: js/messages.php:136 -#, fuzzy #| msgid "general_log and slow_query_log is enabled." msgid "general_log and slow_query_log are enabled." msgstr "general_log og slow_query_log er aktiveret." @@ -1400,7 +1386,6 @@ msgid "slow_query_log is enabled." msgstr "slow_query_log er aktiveret." #: js/messages.php:139 -#, fuzzy #| msgid "slow_query_log and general_log is disabled." msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log og general_log er deaktiveret." @@ -1504,7 +1489,6 @@ msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer & indlæser logs. Dette kan vare nogen tid." #: js/messages.php:165 -#, fuzzy #| msgid "" #| "This columns shows the amount of identical queries that are grouped " #| "together. However only the SQL Text is being compared, thus the queries " @@ -1537,17 +1521,15 @@ msgid "Jump to Log table" msgstr "Gå til logtabellen" #: js/messages.php:170 -#, fuzzy #| msgid "Log analysed, but not data found in this time span." msgid "Log analysed, but no data found in this time span." msgstr "Loggen er analyseret, men ingen data fundet i dette tidsinterval." #. l10n: A collection of available filters #: js/messages.php:173 -#, fuzzy #| msgid "Filter" msgid "Filters" -msgstr "Filter" +msgstr "Filtre" #. l10n: Filter as in "Start Filtering" #: js/messages.php:175 @@ -1556,23 +1538,21 @@ msgstr "Filter" #: js/messages.php:176 msgid "Filter queries by word/regexp:" -msgstr "" +msgstr "Filtrer forespørgsler efter ord/regex:" #: js/messages.php:177 msgid "Group queries, ignoring variable data in WHERE clauses" -msgstr "" +msgstr "Grupper forespørgsler, og ignorer variabeldata i WHERE klausuler" #: js/messages.php:178 -#, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" -msgstr "Antal indsatte rækker" +msgstr "Sum af grupperede rækker:" #: js/messages.php:179 -#, fuzzy #| msgid "Total" msgid "Total:" -msgstr "Total" +msgstr "Total:" #: js/messages.php:181 msgid "Loading logs" @@ -1580,7 +1560,7 @@ msgstr "Indlæser logs" #: js/messages.php:182 msgid "Monitor refresh failed" -msgstr "" +msgstr "Skærmopfriskning fejlede" #: js/messages.php:183 msgid "" @@ -1588,26 +1568,33 @@ msgid "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" +"Serveren returnerede et ugyldigt svar mens der blev anmodet om nye " +"diagramdata. Dette er sandsynligvis fordi din session er udløbet. " +"Genindlæsning af siden og genindtastning af dine legitimationsoplysninger " +"burde hjælpe." #: js/messages.php:184 -#, fuzzy #| msgid "Reload" msgid "Reload page" -msgstr "Genindlæs" +msgstr "Genindlæs side" #: js/messages.php:186 msgid "Affected rows:" -msgstr "" +msgstr "Berørte rækker:" #: js/messages.php:188 msgid "Failed parsing config file. It doesn't seem to be valid JSON code" msgstr "" +"Kunne ikke fortolke konfigurationsfilen. Det ser ikke ud til at være gyldig " +"JSON kode" #: js/messages.php:189 msgid "" "Failed building chart grid with imported config. Resetting to default " "config..." msgstr "" +"Kunne ikke bygge diagramgitter med den importerede konfiguration. Nulstiller " +"til standard konfiguration..." #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 @@ -1617,50 +1604,45 @@ msgid "Import" msgstr "Importer" #: js/messages.php:192 -#, fuzzy #| msgid "Update Query" msgid "Analyse Query" -msgstr "Opdater forespørgsel" +msgstr "Analyser forespørgsel" #: js/messages.php:196 -#, fuzzy #| msgid "Apply a divisor" msgid "Advisor system" -msgstr "Anvend divisor" +msgstr "Rådgivningssystem" #: js/messages.php:197 msgid "Possible performance issues" -msgstr "" +msgstr "Mulige ydelsesmæssige problemer" #: js/messages.php:198 msgid "Issue" -msgstr "" +msgstr "Problem" #: js/messages.php:199 -#, fuzzy #| msgid "Documentation" msgid "Recommendation" -msgstr "Dokumentation" +msgstr "Anbefaling" #: js/messages.php:200 -#, fuzzy #| msgid "Details" msgid "Rule details" -msgstr "Detaljer" +msgstr "Regeldetaljer" #: js/messages.php:201 -#, fuzzy #| msgid "Authentication" msgid "Justification" -msgstr "Autentifikation" +msgstr "Begrundelse" #: js/messages.php:202 msgid "Used variable / formula" -msgstr "" +msgstr "Brugt variabel/formel" #: js/messages.php:203 msgid "Test" -msgstr "" +msgstr "Test" #: js/messages.php:208 libraries/tbl_properties.inc.php:763 #: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545 @@ -1783,10 +1765,9 @@ msgid "Change" msgstr "Ændre" #: js/messages.php:252 -#, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" -msgstr "Maksimal eksekveringstid" +msgstr "Eksekveringstid for forespørgsel" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 @@ -1805,48 +1786,49 @@ msgid "Show search criteria" msgstr "Vis søgekriterie" #: js/messages.php:262 libraries/tbl_select.lib.php:150 -#, fuzzy #| msgid "Search" msgid "Zoom Search" -msgstr "Søg" +msgstr "Forstør søgning" #: js/messages.php:264 msgid "Each point represents a data row." -msgstr "" +msgstr "Hvert punkt repræsenterer en datarække" #: js/messages.php:266 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "Ved at holde pointeren over et punkt vises dets etiket" #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." -msgstr "" +msgstr "Træk og vælg et område i plottet for at forstørre det." #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." msgstr "" +"Klik på linket for nulstil zoom for at vende tilbage til den oprindelige " +"tilstand." #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." -msgstr "" +msgstr "Klik et datapunkt for at se og muligvis redigere datarækken" #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" +"Plottet kan ændres i størrelse ved at trække det i nederste højre hjørne." #: js/messages.php:276 msgid "Strings are converted into integer for plotting" -msgstr "" +msgstr "Strenge er konverteret til heltal i plottet." #: js/messages.php:278 -#, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "Tilføj/Slet kolonner" +msgstr "Vælg to kolonner" #: js/messages.php:279 msgid "Select two different columns" -msgstr "" +msgstr "Vælg to forskellige kolonner" #: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 @@ -1859,13 +1841,12 @@ msgstr "Kopi" #: js/messages.php:291 msgid "Outer Ring" -msgstr "" +msgstr "Ydre ring" #: js/messages.php:297 -#, fuzzy #| msgid "Add column" msgid "Add columns" -msgstr "Tilføj kolonne" +msgstr "Tilføj kolonner" #: js/messages.php:300 msgid "Select referenced key" @@ -1897,13 +1878,15 @@ msgstr "Tilføj mulighed for kolonne" #: js/messages.php:310 msgid "Press escape to cancel editing" -msgstr "" +msgstr "Tryk på ESC for at annullere redigeringen." #: js/messages.php:311 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 "" +"Du har redigeret nogle data og de er ikke blevet gemt. Er du sikker på, at " +"du vil forlade siden uden at gemme data ?" #: js/messages.php:312 msgid "Drag to reorder" @@ -1926,17 +1909,21 @@ 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 "" +"Denne tabel indeholder ikke en unik kolonne. Funktioner relateret til " +"redigering af gitter, afkrydsningsboks og links til redigering, kopiering og " +"sletning fungerer måske ikke, efter at data er gemt. " #: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" +"Du kan også redigere de fleste kolonner
ved at klikke direkte på deres " +"indhold." #: js/messages.php:319 -#, fuzzy #| msgid "Go to view" msgid "Go to link" -msgstr "Gå til view" +msgstr "Gå til link" #: js/messages.php:322 msgid "Generate password" @@ -1978,14 +1965,12 @@ msgid "Done" msgstr "Færdig" #: js/messages.php:356 -#, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Forrige" #: js/messages.php:361 -#, fuzzy #| msgid "Next" msgctxt "Next month" msgid "Next" @@ -2135,7 +2120,6 @@ msgstr "lørdag" #. l10n: Short week day name #: js/messages.php:417 -#, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" msgid "Sun" @@ -2226,7 +2210,7 @@ msgstr "Sekund" #: libraries/Advisor.class.php:145 #, php-format msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" -msgstr "" +msgstr "Fejlende formatteringsstreng for regel '%s'. PHP gav følgende fejl: %s" #: libraries/Config.class.php:1159 msgid "Font size" @@ -2370,10 +2354,9 @@ msgstr[0] "%1$d række sat ind." msgstr[1] "%1$d rækker sat ind." #: libraries/PDF.class.php:81 -#, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" -msgstr "Tillader læsning af data." +msgstr "Fejl ved oprettelse af PDF:" #: libraries/RecentTable.class.php:107 msgid "Could not save recent table" @@ -2410,10 +2393,9 @@ msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL-server understøtter ikke %s datalager." #: libraries/Table.class.php:303 -#, fuzzy #| msgid "Show slave status" msgid "unknown table status: " -msgstr "Vis slavestatus" +msgstr "ukendt tabelstatus:" #: libraries/Table.class.php:1034 msgid "Invalid database" @@ -2605,10 +2587,9 @@ msgid "PBMS get BLOB info failed:" msgstr "PBMS hent BLOB info mislykkedes:" #: libraries/blobstreaming.lib.php:337 -#, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" -msgstr "hent BLOB Content-Type mislykkedes" +msgstr "PBMS hent BLOB Content-Type mislykkedes" #: libraries/blobstreaming.lib.php:363 msgid "View image" @@ -2877,7 +2858,6 @@ msgstr "Manglende parameter" #: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 -#, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" @@ -2886,7 +2866,6 @@ msgstr "Start" #: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 -#, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" @@ -2895,7 +2874,6 @@ msgstr "Forrige" #: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 -#, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" @@ -2903,7 +2881,6 @@ msgstr "Næste" #: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 -#, fuzzy #| msgid "End" msgctxt "Last page" msgid "End" @@ -4279,10 +4256,9 @@ msgid "Memory limit" msgstr "Hukommelsesgrænse" #: libraries/config/messages.inc.php:319 -#, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" -msgstr "Dette er Ret, Ret linje, Kopi og Slet links" +msgstr "Dette er Ret, Kopi og Slet links" #: libraries/config/messages.inc.php:320 msgid "Where to show the table row links" @@ -4438,7 +4414,7 @@ msgstr "Vis hjælpeknap" #: libraries/config/messages.inc.php:357 msgid "Save all edited cells at once" -msgstr "" +msgstr "Gem alle redigerede celler med det samme" #: libraries/config/messages.inc.php:358 msgid "Directory where exports can be saved on server" @@ -4638,10 +4614,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:399 -#, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" -msgstr "Maksimalt antal tabeller vist i tabellisten" +msgstr "Maksimalt antal rækker gemt i tabellen \"table_uiprefs\"" #: libraries/config/messages.inc.php:400 msgid "Try to connect without password" @@ -4975,16 +4950,14 @@ msgid "Show function fields" msgstr "Vis funktionsfelter" #: libraries/config/messages.inc.php:462 -#, fuzzy #| msgid "Where to show the table row links" msgid "Whether to show hint or not" -msgstr "Hvor links til tablerækker skal vises" +msgstr "Om hints skal vises eller ej" #: libraries/config/messages.inc.php:463 -#, fuzzy #| msgid "Show indexes" msgid "Show hint" -msgstr "Vis indekser" +msgstr "Vis hint" #: libraries/config/messages.inc.php:464 msgid "" @@ -5712,10 +5685,9 @@ msgid "Language" msgstr "Sprog" #: libraries/display_tbl.lib.php:401 -#, fuzzy #| msgid "Save directory" msgid "Save edited data" -msgstr "Gemmemappe" +msgstr "Gem redigerede data" #: libraries/display_tbl.lib.php:407 msgid "Restore column order" @@ -6603,10 +6575,9 @@ msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" #: libraries/export/sql.php:1071 -#, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" -msgstr "Tillader læsning af data." +msgstr "Fejl ved læsning af data." #: libraries/export/xml.php:19 libraries/import/xml.php:21 msgid "XML" @@ -6652,7 +6623,6 @@ msgid "" msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du: " #: libraries/import.lib.php:1095 -#, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Vis en strukturs indhold ved at klikke på dens navn" @@ -6664,30 +6634,29 @@ msgstr "" "Ændr alle indstillinger ved at klikke på det tilhørende \"Indstilling\" link" #: libraries/import.lib.php:1097 -#, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" -msgstr "Rediger dens struktur ved at følge linket \"Struktur\"" +msgstr "Rediger struktur ved at følge linket \"Struktur\"" #: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Gå til database" #: libraries/import.lib.php:1103 libraries/import.lib.php:1126 -#, fuzzy, php-format +#, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" -msgstr "Manglende data for %s" +msgstr "Rediger indstillinger for %s" #: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Gå til tabel" #: libraries/import.lib.php:1124 -#, fuzzy, php-format +#, php-format #| msgid "Structure only" msgid "Structure of %s" -msgstr "Kun strukturen" +msgstr "Strukturen af %s" #: libraries/import.lib.php:1130 msgid "Go to view" @@ -6768,29 +6737,30 @@ msgstr "Import valutaer (ex. $5.00 to 5.00)" #: libraries/import/shp.php:14 msgid "ESRI Shape File" -msgstr "" +msgstr "ESRI formfil" #: libraries/import/shp.php:254 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." -msgstr "" +msgstr "Der var en fejl i importen af ESRI formfilen \"%s\"" #: libraries/import/shp.php:310 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data" msgstr "" +"Du prøvede på at importere en invalid fil eller den importerede fil " +"indeholder invalide data" #: libraries/import/shp.php:312 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." -msgstr "" +msgstr "MySQL Spatial Extension understøtter ikke ESRI type \"%s\"." #: libraries/import/shp.php:350 -#, fuzzy #| msgid "This page does not contain any tables!" msgid "The imported file does not contain any data" -msgstr "Denne side indeholder ingen tabeller!" +msgstr "Den importerede fil indeholder ingen data!" #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" @@ -7310,14 +7280,12 @@ msgid "Execute every" msgstr "Udfør hver" #: libraries/rte/rte_events.lib.php:449 -#, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "Start" #: libraries/rte/rte_events.lib.php:457 -#, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" @@ -8114,16 +8082,14 @@ msgid "Operator" msgstr "Operatør" #: libraries/tbl_select.lib.php:143 -#, fuzzy #| msgid "Search" msgid "Table Search" -msgstr "Søg" +msgstr "Tabelsøgning" #: libraries/tbl_select.lib.php:229 tbl_change.php:994 -#, fuzzy #| msgid "Insert" msgid "Edit/Insert" -msgstr "Indsæt" +msgstr "Rediger/Indsæt" #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" @@ -8468,7 +8434,6 @@ msgid "No databases" msgstr "Ingen databaser" #: navigation.php:270 -#, fuzzy #| msgid "filter tables by name" msgid "Filter tables by name" msgstr "filtrer tabeller efter navn" @@ -9513,10 +9478,9 @@ msgid "Monitor" msgstr "Monitor" #: server_status.php:690 -#, fuzzy #| msgid "Apply a divisor" msgid "Advisor" -msgstr "Anvend divisor" +msgstr "Rådgiver" #: server_status.php:700 server_status.php:722 msgid "Refresh rate: " @@ -9535,23 +9499,20 @@ msgid "Filter by category..." msgstr "Filtrer efter kategori..." #: server_status.php:765 -#, fuzzy #| msgid "Show only alert values" msgid "Show unformatted values" -msgstr "Vis kun alert-værdier" +msgstr "Vis uformatterede værdier" #: server_status.php:769 msgid "Related links:" msgstr "Relaterede links:" #: server_status.php:800 -#, fuzzy #| msgid "Query type" msgid "Run analyzer" -msgstr "Forespørgselstype" +msgstr "Kør analysator" #: server_status.php:801 -#, fuzzy #| msgid "Instructions/Setup" msgid "Instructions" msgstr "Instruktioner/Opsætning" @@ -9561,6 +9522,8 @@ msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" +"Rådgiversystemer kan give anbefalinger om servervariable ved at analysere " +"serverens statusvariable" #: server_status.php:810 msgid "" @@ -9568,6 +9531,8 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" +"Bemærk dog, at dette system giver anbefalinger baseret på simple beregninger " +"og tommelfingerregler, som ikke passer med dit system" #: server_status.php:812 msgid "" @@ -9575,6 +9540,9 @@ msgid "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" +"Før konfigurationen ændres, så vær sikker på, hvad du ændrer (ved at læse " +"dokumentationen) og hvordan du annullerer ændringer. Forkert tuning kan have " +"en meget negativ effekt på ydeevnen." #: server_status.php:814 msgid "" @@ -9582,6 +9550,9 @@ msgid "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." msgstr "" +"Den bedste måde at finjustere dit system vil være at ændre een indstiling ad " +"gangen, observere og teste din database og annullere ændringen, hvis der " +"ingen klart synlig forskel var." #. l10n: Questions is the name of a MySQL Status variable #: server_status.php:836 @@ -10384,16 +10355,14 @@ msgid "Refresh rate" msgstr "Opdateringsfrekvens" #: server_status.php:1468 -#, fuzzy #| msgid "Chart columns:" msgid "Chart columns" msgstr "Diagramkolonner:" #: server_status.php:1484 -#, fuzzy #| msgid "Error management:" msgid "Chart arrangement" -msgstr "Fejlhåndtering:" +msgstr "Diagramopstilling" #: server_status.php:1484 msgid "" @@ -10402,7 +10371,6 @@ msgid "" msgstr "" #: server_status.php:1485 -#, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Gendan standardværdi" @@ -10412,7 +10380,6 @@ msgid "Monitor Instructions" msgstr "Monitorinstruktioner" #: server_status.php:1490 -#, fuzzy #| msgid "" #| "The phpMyAdmin Monitor can assist you in optimizing the server " #| "configuration and track down time intensive\n" @@ -10443,13 +10410,11 @@ msgid "" msgstr "" #: server_status.php:1508 -#, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" -msgstr "Sæt monitor på pause" +msgstr "Brug af monitor:" #: server_status.php:1510 -#, fuzzy #| msgid "" #| "Using the monitor:
\n" #| " Ok, you are good to go! Once you click 'Start monitor' your " @@ -10468,16 +10433,10 @@ msgid "" "change the refresh rate under 'Settings', or remove any chart using the cog " "icon on each respective chart." msgstr "" -"Brug af monitoren:
\n" " Når du klikker på 'Start monitor' vil din browser opdatere alle " -"viste diagrammer regelmæssigt.\n" -" Du kan tilføje diagrammer og ændre opdateringsfrekvensen under " -"'Indstilinger' eller fjerne diagrammer\n" -" ved at bruge ikonet cog på det relevante diagram.\n" -"

Når du ser en pludselig forøgelse i aktivitet, så vælg det " -"relevante tidsinterval på et diagram ved at holde venstre museknap\n" -" nede og køre hen over diagrammet. Dette vill hente statistik fra " -"logs og hjælpe dig til at finde årsagen.

til aktivitetsforøgelsen.

" +"viste diagrammer regelmæssigt. Du kan tilføje diagrammer og ændre " +"opdateringsfrekvensen under 'Indstilinger' eller fjerne diagrammer ved at " +"bruge ikonet cog på det relevante diagram. " #: server_status.php:1512 #, fuzzy @@ -10512,10 +10471,9 @@ msgstr "" #: server_status.php:1519 msgid "Please note:" -msgstr "" +msgstr "Bemærk venligst:" #: server_status.php:1521 -#, fuzzy #| msgid "" #| "Please note:\n" #| " Enabling the general_log may increase the server load by 5-15%. " @@ -10530,19 +10488,15 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Bemærk:\n" -" Aktivering af general_log kan forøge server load med 5-15%. Vær også " -"opmærksom på, at statistikgenerering fra logs er en\n" -" krævende opgave, så det tilrådes at vælge kun en lille tidsinterval " -"og at deaktivere general_log og tømme dens tabel, når\n" -" der ikke er behov for den længere.\n" -" " +"Aktivering af general_log kan forøge server load med 5-15%. Vær også " +"opmærksom på, at statistikgenerering fra logs er en krævende opgave, så det " +"tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og " +"tømme dens tabel, når der ikke er behov for den længere. " #: server_status.php:1533 -#, fuzzy #| msgid "Remove chart" msgid "Preset chart" -msgstr "Fjern diagram" +msgstr "Foruddefineret diagram" #: server_status.php:1537 msgid "Status variable(s)" @@ -10601,24 +10555,20 @@ msgid "Remove variable data in INSERT statements for better grouping" msgstr "" #: server_status.php:1608 -#, fuzzy #| msgid "" #| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"

Vælg fra hvilken log, du ønsker statistikken genereret fraResultaterne er grupperet af forespørgselstekst." +msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra." #: server_status.php:1610 msgid "Results are grouped by query text." -msgstr "" +msgstr "Resultaterne er grupperet af forespørgselstekst." #: server_status.php:1615 -#, fuzzy #| msgid "Query type" msgid "Query analyzer" -msgstr "Forespørgselstype" +msgstr "Forespørgselsanalysator" #: server_status.php:1652 #, php-format diff --git a/po/es.po b/po/es.po index 6bc927ea29..958ff292e4 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-19 21:45+0200\n" +"PO-Revision-Date: 2011-08-20 17:29+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12782,139 +12782,151 @@ msgid "Rate of open files" msgstr "Tasa de apertura de archivos" #: po/advisory_rules.php:186 -#, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." -msgstr "El número de fsyncs pendientes al archivo de registro." +msgstr "La tasa de apertura de archivos es alta." #: po/advisory_rules.php:188 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" +"Tasa de apertura de archivos: %s, este valor debería ser menor a 5 por hora" #: po/advisory_rules.php:190 -#, fuzzy, php-format +#, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" -msgstr "Crear nueva tabla en la base de datos %s" +msgstr "Porcentaje de bloqueos de tabla inmediatos" #: po/advisory_rules.php:191 po/advisory_rules.php:196 -#, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." -msgstr "El número de veces que un table lock fue adquirido inmediatamente." +msgstr "Demasiados bloqueos de tablas no fueron provistos inmediatamente." #: po/advisory_rules.php:192 po/advisory_rules.php:197 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" +"Optimice las consultas y/o utilice InnoDB para reducir el tiempo de espera " +"para bloqueos." #: po/advisory_rules.php:193 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" +msgstr "Bloqueos de tabla inmediatos: %s%%, este valor debería ser mayor a 95%%" #: po/advisory_rules.php:195 msgid "Table lock wait rate" -msgstr "" +msgstr "Tasa de espera para bloqueos de tablas" #: po/advisory_rules.php:198 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" +"Tasa de espera para bloqueos de tablas: %s, este valor debería ser menor a 1 " +"por hora" #: po/advisory_rules.php:200 -#, fuzzy #| msgid "Key cache" msgid "Thread cache" -msgstr "Caché de claves" +msgstr "Caché de hilos" #: po/advisory_rules.php:201 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" +"El caché de hilos está desactivado, esto resulta en mayor sobrecarga en las " +"nuevas conexiones a MySQL." #: po/advisory_rules.php:202 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" +"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a " +"0." #: po/advisory_rules.php:203 msgid "The thread cache is set to 0" -msgstr "" +msgstr "El caché de hilos está configurado a 0" #: po/advisory_rules.php:205 -#, fuzzy, php-format +#, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" -msgstr "El seguimiento no está activo." +msgstr "Porcentaje de efectividad del caché de hilos" #: po/advisory_rules.php:206 -#, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." -msgstr "El seguimiento no está activo." +msgstr "El caché de hilos no es eficiente." #: po/advisory_rules.php:207 msgid "Increase {thread_cache_size}." -msgstr "" +msgstr "Aumente «thread_cache_size»." #: po/advisory_rules.php:208 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" +"Tasa de efectividad del caché de hilos: %s%%, este valor debería ser mayor a " +"80%%" #: po/advisory_rules.php:210 msgid "Threads that are slow to launch" -msgstr "" +msgstr "Hilos que inician ejecución lentamente" #: po/advisory_rules.php:211 -#, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." -msgstr "El número de procesos que no están en reposo." +msgstr "Hay demasiados hilos que inician ejecución lentamente." #: po/advisory_rules.php:212 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 "" +"Esto generalmente ocurre cuando el sistema en sí está sobrecargado ya que es " +"una operación relativamente sencilla. Debería de monitorizar la carga sobre " +"el sistema cuidadosamente." #: po/advisory_rules.php:213 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" -msgstr "" +msgstr "%s hilo(s) tardaron más de %s segundos en iniciar, debería de ser 0" #: po/advisory_rules.php:215 msgid "Slow launch time" -msgstr "" +msgstr "Tiempo de inicio lento" #: po/advisory_rules.php:216 msgid "Slow_launch_threads is above 2s" -msgstr "" +msgstr "«slow_launch_threads» es mayor a 2s" #: po/advisory_rules.php:217 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" msgstr "" +"Configure «slow_launch_time» a 1 ó 2 segundos para contar correctamente los " +"hilos que inician ejecución lentamente" #: po/advisory_rules.php:218 -#, fuzzy, php-format +#, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" -msgstr "«long_query_time» está configurado a %d segundo(s)." +msgstr "«slow_launch_time» está configurado a %s" #: po/advisory_rules.php:220 -#, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" -msgstr "Conexiones persistentes" +msgstr "Porcentaje de conexiones utilizadas" #: po/advisory_rules.php:221 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "" +"El máximo de conexiones utilizadas simultáneamente está cercano al valor de " +"«max_connections»." #: po/advisory_rules.php:222 msgid "" @@ -12922,22 +12934,27 @@ msgid "" "do not close database handlers properly get killed sooner. Make sure the " "code closes database handlers properly." msgstr "" +"Aumente «max_connections» o reduzca «wait_timeout» para que las conexiones " +"que no liberan los manejadores de base de datos apropiadamente sean " +"eliminadas más rápido. Asegúrese que su código cierre los manejadores de " +"base de datos apropiadamente." #: po/advisory_rules.php:223 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" +"«max_used_connections» es %s%% de «max_connections», debería ser menor a 80%" +"%" #: po/advisory_rules.php:225 -#, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" -msgstr "Conexiones persistentes" +msgstr "Porcentaje de conexiones abandonadas" #: po/advisory_rules.php:226 msgid "Too many connections are aborted." -msgstr "" +msgstr "Demasiadas conexiones son abandonadas." #: po/advisory_rules.php:227 po/advisory_rules.php:232 msgid "" @@ -12946,37 +12963,43 @@ msgid "" "source-of-aborted_connects/\\\">This article might help you track down " "the source." msgstr "" +"Las conexiones son abandonadas generalmente cuando no pueden ser " +"autorizadas. Este artículo podría ser " +"de ayuda para rastrear el motivo de las mismas." #: po/advisory_rules.php:228 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" +"%s%% de todas las conexiones son abandonadas. Este valor debería ser menor a " +"1%%" #: po/advisory_rules.php:230 -#, fuzzy #| msgid "Persistent connections" msgid "Rate of aborted connections" -msgstr "Conexiones persistentes" +msgstr "Tasa de conexiones abandonadas" #: po/advisory_rules.php:231 msgid "Too many connections are aborted" -msgstr "" +msgstr "Demasiadas conexiones son abandonadas" #: po/advisory_rules.php:233 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" +"La tasa de conexiones abandonadas es %s, este valor debería ser menor a 1 " +"por hora" #: po/advisory_rules.php:235 -#, fuzzy #| msgid "Format of imported file" msgid "Percentage of aborted clients" -msgstr "Formato del archivo importado" +msgstr "Porcentaje de clientes abandonados" #: po/advisory_rules.php:236 po/advisory_rules.php:241 msgid "Too many clients are aborted." -msgstr "" +msgstr "Demasiados clientes son abandonados." #: po/advisory_rules.php:237 po/advisory_rules.php:242 msgid "" @@ -12984,54 +13007,60 @@ msgid "" "MySQL properly. This can be due to network issues or code not closing a " "database handler properly. Check your network and code." msgstr "" +"Los clientes son abandonados generalmente cuando no cierran sus conexiones " +"MySQL apropiadamente. Esto puede ser debido a problemas de red o cuando el " +"código no libera el manejador de la base de datos correctamente. Revise su " +"conexión de red y código." #: po/advisory_rules.php:238 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" +"%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2" +"%%" #: po/advisory_rules.php:240 -#, fuzzy #| msgid "Format of imported file" msgid "Rate of aborted clients" -msgstr "Formato del archivo importado" +msgstr "Tasa de clientes abandonados" #: po/advisory_rules.php:243 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" +"La tasa de clientes abandonados es %s, este valor debería ser menor a 1 por " +"hora" #: po/advisory_rules.php:245 msgid "Is InnoDB disabled?" -msgstr "" +msgstr "¿InnoDB está desactivado?" #: po/advisory_rules.php:246 -#, fuzzy #| msgid "Could not save recent table" msgid "You do not have InnoDB enabled." -msgstr "No se pudo guardar la tabla reciente" +msgstr "No posee InnoDB activado." #: po/advisory_rules.php:247 msgid "InnoDB is usually the better choice for table engines." -msgstr "" +msgstr "InnoDB es, usualmente, la mejor opción como motor para tablas." #: po/advisory_rules.php:248 msgid "have_innodb is set to 'value'" -msgstr "" +msgstr "«have_innodb» está configurado como 'value'" #: po/advisory_rules.php:250 -#, fuzzy #| msgid "Buffer pool size" msgid "InnoDB log size" -msgstr "Tamaño de la reserva de búfers" +msgstr "Tamaño de registro InnoDB" #: po/advisory_rules.php:251 -#, 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 "El número de escrituras hechas a la reserva de búfers InnoDB." +msgstr "" +"El tamaño del archivo de registro InnoDB no parece ser apropiado en relación " +"a la reserva de búfers InnoDB." #: po/advisory_rules.php:252 #, php-format @@ -13047,6 +13076,17 @@ msgid "" "com/2007/01/increase-innodblogfilesize-proper-way.html\\\">this blog entry" msgstr "" +"Especialmente en un sistema con gran cantidad de escrituras a talbas InnoDB, " +"debería de configurar «innodb_log_file_size» a aproximadamente 25%% de " +"«innodb_buffer_pool_size». Sin embargo, mientras mayor sea este valor, mayor " +"será el tiempo de recuperación luego de una caída de la base de datos, por " +"lo que este valor no debería ser mayor a 256 MiB. Note, sin embargo, que no " +"puede simplemente cambiar el valor de esta variable. Necesitará cerrar el " +"servidor, eliminar los archivos de registro InnoDB, definir el nuevo valor " +"en el archivo 'my.cnf' y luego revisar los mensajes de error para asegurarse " +"que no hubo inconvenientens. Revise también este artículo." #: po/advisory_rules.php:253 #, php-format @@ -13054,14 +13094,16 @@ msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " "it should not be below 20%%" msgstr "" +"El tamaño del archivo de registros InnoDB es %s%% del tamaño de la reserva " +"de búfers InnoDB, no debería ser menor a 20%%" #: po/advisory_rules.php:255 msgid "Max InnoDB log size" -msgstr "" +msgstr "Tamaño máximo del registro InnoDB" #: po/advisory_rules.php:256 msgid "The InnoDB log file size is inadequately large." -msgstr "" +msgstr "El tamaño del archivo de registros InnoDB es inadecuadamente grande." #: po/advisory_rules.php:257 #, php-format @@ -13076,21 +13118,31 @@ msgid "" "\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\\\">this blog entry" msgstr "" +"Normalmente es suficiente definir «innodb_log_file_size» a el 25%% del valor " +"de «innodb_buffer_pool_size». Un valor muy alto de «innodb_log_file_size» " +"reduce considerablemente la velocidad de la recuperación luego de una caída " +"de la base de datos. Revise también este artículo. Necesitará cerrar el servidor, " +"eliminar los archivos de registros InnoDB, definir el nuevo valor en el " +"archivo 'my.cnf', iniciar el servidor y luego verificar los registros de " +"error para asegurarse que no hubo inconvenientes. Revise también este artículo." #: po/advisory_rules.php:258 #, php-format msgid "Your absolute InnoD log size is %s MiB" -msgstr "" +msgstr "El tamaño del archivo de registros InnoDB es %s MiB" #: po/advisory_rules.php:260 -#, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" -msgstr "Tamaño de la reserva de búfers" +msgstr "Tamaño de la reserva de búfers InnoDB" #: po/advisory_rules.php:261 msgid "Your InnoDB buffer pool is fairly small." -msgstr "" +msgstr "Su reserva de búfers InnoDB es relativamente pequeña." #: po/advisory_rules.php:262 #, php-format @@ -13106,6 +13158,17 @@ msgid "" "\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-" "innodb_buffer_pool_size/\\\">this article" msgstr "" +"La reserva de búfers InnoDB tiene un profundo impacto en la performance de " +"las tablas InnoDB. Asigne toda la memoria disponible a este búfer. Para " +"servidores de base de datos que sólo utilicen InnoDB como motor de " +"almacenamiento y no tengan otros servicios (por ejemplo un servidor web), " +"puede definir este valor hasta un 80%% de su memoria disponible. Si no es el " +"caso, deberá analizar cuidadosamente el consumo de memoria de los otros " +"servicios y tablas con otros motores y configurar esta variable acorde a " +"ello. Si se la define demasiado alta, su sistema comenzará a utilizar el " +"área de intercambio en disco disminuyendo la performance significativamente. " +"Revise también este artículo" #: po/advisory_rules.php:263 #, php-format @@ -13115,16 +13178,19 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" +"Actualmente está utilizando %s%% de su memoria de la reserva de búfers " +"InnoDB. Esta regla se dispara si está asignando menos del 60%%. Sin embargo, " +"esto puede ser perfectamente adecuado para su sistema si no posee muchas " +"tablas InnoDB o tiene otros servicios en el mismo equipo." #: po/advisory_rules.php:265 -#, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" -msgstr "Número máx. de conexiones concurrentes" +msgstr "Inserciones MyISAM concurrentes" #: po/advisory_rules.php:266 msgid "Enable concurrent_insert by setting it to 1" -msgstr "" +msgstr "Active «concurrent_insert» definiéndolo como 1" #: po/advisory_rules.php:267 msgid "" @@ -13132,10 +13198,14 @@ msgid "" "writers for a given table. See also MySQL Documentation" msgstr "" +"Definir «concurrent_insert» a 1 reduce la competencia entre lectores y " +"escritores en una tabla particular. Revise también la documentación MySQL" #: po/advisory_rules.php:268 msgid "concurrent_insert is set to 0" -msgstr "" +msgstr "«concurrent_insert» está definido como 0" #, fuzzy #~ msgid "" diff --git a/po/ja.po b/po/ja.po index 799c966fe3..5321e3c8f4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-17 02:56+0200\n" +"PO-Revision-Date: 2011-08-21 04:03+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1212,10 +1212,9 @@ msgid "Query statistics" msgstr "クエリの統計" #: js/messages.php:93 -#, fuzzy #| msgid "Failed to read configuration file" msgid "Local monitor configuration incompatible" -msgstr "設定ファイルの読み込みに失敗しました" +msgstr "ローカルのモニタ環境設定に互換性なし" #: js/messages.php:94 msgid "" @@ -10274,16 +10273,15 @@ msgid "Chart columns" msgstr "1 段のグラフ数" #: server_status.php:1484 -#, fuzzy #| msgid "Error management:" msgid "Chart arrangement" -msgstr "管理エラー:" +msgstr "モニタ環境設定" #: server_status.php:1484 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." -msgstr "" +msgstr "モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポートできます。" #: server_status.php:1485 msgid "Reset to default" @@ -10320,13 +10318,11 @@ msgstr "" "タ機能は使用することができます。" #: server_status.php:1508 -#, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" -msgstr "モニタ一時中断" +msgstr "モニタの使い方:" #: server_status.php:1510 -#, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " #| "'Start monitor' your browser will refresh all displayed charts in a " @@ -10343,17 +10339,10 @@ msgid "" "change the refresh rate under 'Settings', or remove any chart using the cog " "icon on each respective chart." msgstr "" -"モニタの使い方:
「モニタ開始」をクリックすると、ブラウザは一定間" -"隔で表示されている全てのグラフを更新します。「設定」のところよりグラフを追加" -"や再描画間隔の変更が行え、それぞれのグラフにある歯車のアイコンを通じて削除を" -"行えます。

ログからクエリ分析を行うには、グラフで該当期間を選択します。マウ" -"スの左ボタンを押したままグラフの上をドラッグするように移動させてください。こ" -"うすることで、グラフの任意の期間を選択できます。グループ毎に分類されたクエリ" -"が読み込まれ表示されますので、実行されたクエリを確認することができます。" -"SELECT 文の部分をクリックすることで、更なるクエリ解析が可能です。

" +"「モニタ開始」をクリックすると、ブラウザは一定間隔で表示されている全てのグラフを更新します。「設定」のところよりグラフを追加や再描画間隔の変更が行え、そ" +"れぞれのグラフにある歯車のアイコンを通じて削除を行えます。" #: server_status.php:1512 -#, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " #| "'Start monitor' your browser will refresh all displayed charts in a " @@ -10370,21 +10359,15 @@ msgid "" "confirmed, this will load a table of grouped queries, there you may click on " "any occuring SELECT statements to further analyze them." msgstr "" -"モニタの使い方:
「モニタ開始」をクリックすると、ブラウザは一定間" -"隔で表示されている全てのグラフを更新します。「設定」のところよりグラフを追加" -"や再描画間隔の変更が行え、それぞれのグラフにある歯車のアイコンを通じて削除を" -"行えます。

ログからクエリ分析を行うには、グラフで該当期間を選択します。マウ" -"スの左ボタンを押したままグラフの上をドラッグするように移動させてください。こ" -"うすることで、グラフの任意の期間を選択できます。グループ毎に分類されたクエリ" -"が読み込まれ表示されますので、実行されたクエリを確認することができます。" -"SELECT 文の部分をクリックすることで、更なるクエリ解析が可能です。

" +"ログからクエリ分析を行うには、グラフで該当期間を選択します。マウスの左ボタンを押したままグラフの上をドラッグするように移動させてください。こうすることで" +"、グラフの任意の期間を選択できます。グループ毎に分類されたクエリが読み込まれ表示されますので、実行されたクエリを確認することができます。SELECT " +"文の部分をクリックすることで、更なるクエリ解析が可能です。" #: server_status.php:1519 msgid "Please note:" -msgstr "" +msgstr "注意事項:" #: server_status.php:1521 -#, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " #| "by 5-15%. Also be aware that generating statistics from the logs is a " @@ -10397,10 +10380,8 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"注意事項:general_log を有効にすると、5~15% サーバの負荷が増加するこ" -"とがあります。ログから生成される統計は、負荷が集中する作業であることを認識し" -"ておいてください。ですから、テーブルのモニタで必要としないのであれば、しばら" -"くの間 general_log を無効にして空にしておくのが望ましいです。" +"general_log を有効にすると、5~15% サーバの負荷が増加することがあります。ログから生成される統計は、負荷が集中する作業であることを認識し" +"ておいてください。ですから、テーブルのモニタで必要としないのであれば、しばらくの間 general_log を無効にして空にしておくのが望ましいです。" #: server_status.php:1533 #, fuzzy @@ -10467,18 +10448,15 @@ msgid "Remove variable data in INSERT statements for better grouping" msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" #: server_status.php:1608 -#, fuzzy #| msgid "" #| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"

ログの統計元を選択することができます。

結果はクエリ文でグループ化されま" -"す。" +msgstr "ログの統計元を選択することができます。" #: server_status.php:1610 msgid "Results are grouped by query text." -msgstr "" +msgstr "結果はクエリ文でグループ化されます。" #: server_status.php:1615 msgid "Query analyzer" diff --git a/po/sl.po b/po/sl.po index 85dca7fa0e..27017142d3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-19 11:26+0200\n" +"PO-Revision-Date: 2011-08-21 22:29+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1565,7 +1565,7 @@ msgstr "Spremenjene vrstice:" msgid "Failed parsing config file. It doesn't seem to be valid JSON code" msgstr "" "Razčlenjevalne konfiguracijske datoteke je spodletelo. Kot kaže, ni veljavna " -"koda JSON." +"koda JSON" #: js/messages.php:189 msgid "" @@ -2808,7 +2808,7 @@ msgstr "ned" #: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" -msgstr "%d %B %Y ob %H.%M" +msgstr "%d. %B %Y ob %H.%M" #: libraries/common.lib.php:1865 #, php-format @@ -5828,8 +5828,8 @@ msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -" Velikost povečevanja pri razširjanju velikosti samorazširitvenega prostora " -"v tabeli, ko ta postane poln." +"Velikost povečevanja pri razširjanju velikosti samorazširitvenega prostora v " +"tabeli, ko ta postane poln." #: libraries/engines/innodb.lib.php:32 msgid "Buffer pool size" @@ -7830,7 +7830,7 @@ msgstr "Ločilo" #: libraries/sql_query_form.lib.php:346 msgid "Show this query here again" -msgstr "Ponovno pokaži poizvedbo v tem oknu " +msgstr "Ponovno pokaži poizvedbo v tem oknu" #: libraries/sql_query_form.lib.php:402 msgid "View only" @@ -8513,7 +8513,7 @@ msgstr "Dejavne možnosti" #: pmd_help.php:22 msgid "To select relation, click :" -msgstr "Za izbiro relacije, kliknite:" +msgstr "Za izbiro relacije kliknite:" #: pmd_help.php:24 msgid "" @@ -8963,7 +8963,7 @@ msgstr "Privilegiji tipični za tabelo" #: server_privileges.php:532 server_privileges.php:676 #: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" -msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini " +msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini" #: server_privileges.php:601 msgid "Administration" @@ -9139,7 +9139,7 @@ msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -" ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " +"... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." #: server_privileges.php:2199 @@ -9495,6 +9495,9 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" +"Kakor koli, pomnite, da ta sistem nudi priporočila, ki temeljijo na " +"preprostih računih in splošnih smernicah, katere morda ne ustrezajo vašemu " +"sistemu." #: server_status.php:812 msgid "" @@ -9502,6 +9505,10 @@ msgid "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" +"Preden spremenite kateri koli del konfiguracije, se prepričajte, da veste, " +"kaj spreminjate (tako, da preberete dokumentacijo) in kako lahko spremembo " +"razveljavite. Napačno nastavljanje ima lahko na zmogljivost zelo negativen " +"učinek." #: server_status.php:814 msgid "" @@ -9509,6 +9516,9 @@ msgid "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." msgstr "" +"Najboljši način nastavljanja vašega sistema je spreminjanje samo ene " +"nastavitve naenkrat, opazovanje ali primerjalno preizkušanje vaše zbirke " +"podatkov in razveljavitev spremembe, če ni jasno izmerljivega izboljšanja." #. l10n: Questions is the name of a MySQL Status variable #: server_status.php:836 @@ -10397,7 +10407,7 @@ msgstr "" "Zavedajte se tudi, da je ustvarjanje statistik iz dnevnikov zelo " "obremenjujoče opravilo, zato je priporočljivo, da izberete samo majhen " "časovni razpon ter onemogočite general_log in počistite njene tabele, ko " -"nadziranja ne potrebujete več. " +"nadziranja ne potrebujete več." #: server_status.php:1533 msgid "Preset chart" @@ -10973,7 +10983,7 @@ msgstr "Tabela %1$s je bila uspešno spremenjena" #: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" -msgstr "Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati " +msgstr "Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati" #: tbl_change.php:819 msgid "Remove BLOB Repository Reference" @@ -11693,6 +11703,8 @@ msgid "" "To have more accurate averages it is recommended to let the server run for " "longer than a day before running this analyzer" msgstr "" +"Za natančnejša povprečja je priporočljivo, da pred zagonom analitika pustite " +"strežnik delovati dlje kot en dan" #: po/advisory_rules.php:8 #, php-format @@ -11716,6 +11728,8 @@ msgid "" "Let the server run for a longer time until it has executed a greater amount " "of queries." msgstr "" +"Pustite strežniku delovati daljši čas, dokler ne izvede večje število " +"poizvedb." #: po/advisory_rules.php:13 #, php-format @@ -11753,6 +11767,8 @@ msgstr "Delež počasnih poizvedb" msgid "" "There is a high percentage of slow queries compared to the server uptime." msgstr "" +"Odstotek počasnih poizvedb je v primerjavi z neprekinjemin delovanjem " +"strežnika visok." #: po/advisory_rules.php:23 #, php-format @@ -11760,6 +11776,7 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" +"Vaš delež počasnih poizvedb je %s na uro; moral bi biti manj od 1 %% na uro." #: po/advisory_rules.php:25 msgid "Long query time" @@ -11778,6 +11795,8 @@ msgid "" "It is suggested to set {long_query_time} to a lower value, depending on your " "environment. Usually a value of 1-5 seconds is suggested." msgstr "" +"Predlagamo, da nastavite {long_query_time} na nižjo vrednost, odvisno od " +"vašega okolja. Po navadi se priporoča vrednost 1–5 sekund." #: po/advisory_rules.php:28 #, php-format @@ -11797,6 +11816,9 @@ msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" +"Omogočite beleženje počasnih poizvedb tako, da nastavite {log_slow_queries} " +"na 'ON'. To bo pomagalo pri odpravljanju težav s slabo delujočimi " +"poizvedbami." #: po/advisory_rules.php:33 msgid "log_slow_queries is set to 'OFF'" @@ -11862,6 +11884,9 @@ msgid "" "distribution. The MySQL manual only is accurate for official MySQL binaries, " "not any package distributions (such as RedHat, Debian/Ubuntu etc)." msgstr "" +"Če niste prevedli iz izvorne kode, morda uporabljate paket, spremenjen z " +"distribucijo. Priročnik MySQL je točen samo za uradne izdaje MySQL, ne za " +"katere koli paketne distribucije (kot so RedHat, Debian/Ubuntu itn.)." #: po/advisory_rules.php:53 msgid "'source' found in version_comment" @@ -11893,6 +11918,10 @@ msgid "" "so MySQL might not be able to access all of your memory. You might want to " "consider installing the 64-bit version of MySQL." msgstr "" +"Zmogljivost vašega pomnilnika je nad 3 GiB (predpostavljeno, da strežnik " +"teče na localhost), zato MySQL morda ne bo zmožen dostopati do celotnega " +"vašega pomnilnika. Morda boste želeli razmisliti o namestitvi 64-bitne " +"različice MySQL." #: po/advisory_rules.php:63 #, php-format @@ -11914,10 +11943,16 @@ msgid "" "and setting {query_cache_type} to 'ON'. Note: If you are using " "memcached, ignore this recommendation." msgstr "" +"Predpomnjenje poizvedb lahko izredno izboljša zmogljivost, če je " +"konfigurirano pravilno. Omogočite ga tako, da nastavite {query_cache_size} " +"na dvomestno vrednost MiB in nastavite {query_cache_type} na 'ON'. " +"Pomnite: Če uporabljate memcached, to priporočilo prezrite." #: po/advisory_rules.php:68 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" +"query_cache_size je nastavljen na 0 ali pa je query_cache_type nastavljen na " +"'OFF'" #: po/advisory_rules.php:71 msgid "Suboptimal caching method." @@ -11930,6 +11965,11 @@ msgid "" "refman/5.1/en/ha-memcached.html\\\">memcached instead of the MySQL Query " "cache, especially if you have multiple slaves." msgstr "" +"Uporabljate predpomnjenje poizvedb MySQL s precej prometno zbirko podatkov. " +"Morda bi bilo koristno razmisliti o uporabi memcached namesto predpomnjenja poizvedb MySQL, še " +"posebej, če imate več podrejencev." #: po/advisory_rules.php:73 #, php-format @@ -11937,14 +11977,17 @@ msgid "" "The query cache is enabled and the server receives %d queries per second. " "This rule fires if there is more than 100 queries per second." msgstr "" +"Predpomnjenje poizvedb je omogočeno in strežnik prejema %d poizvedb na " +"sekundo. To pravilo se sproži, če je več kot 100 poizvedb na sekundo." #: po/advisory_rules.php:75 msgid "Query cache efficiency (%)" -msgstr "" +msgstr "Učinkovitost predpomnjenja poizvedb (%)" #: po/advisory_rules.php:76 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" +"Predpomnjenje poizvedb ne teče učinkovito, saj ima nizek delež zadetkov." #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." @@ -11953,7 +11996,7 @@ msgstr "Razmislite o povečanju {query_cache_limit}." #: po/advisory_rules.php:78 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" -msgstr "" +msgstr "Trenutni delež zadetkov predpomnilnika poizvedb %s %% je pod 20 %%" #: po/advisory_rules.php:80 msgid "Query Cache usage" @@ -11962,13 +12005,15 @@ msgstr "Uporaba predpomnilnika poizvedb" #: po/advisory_rules.php:81 #, php-format msgid "Less than 80%% of the query cache is being utilized." -msgstr "" +msgstr "Izkoriščanega je manj kot 80 %% predpomnilnika poizvedb." #: po/advisory_rules.php:82 msgid "" "This might be caused by {query_cache_limit} being too low. Flushing the " "query cache might help as well." msgstr "" +"To morda povzroča prenizek {query_cache_limit}. Izplaknitev predpomnilnika " +"poizvedb bo morda prav tako pomagala." #: po/advisory_rules.php:83 #, php-format @@ -11976,6 +12021,8 @@ msgid "" "The current ratio of free query cache memory to total query cache size is %s" "%%. It should be above 80%%" msgstr "" +"Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s " +"skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%" #: po/advisory_rules.php:85 msgid "Query cache fragmentation" @@ -11983,7 +12030,7 @@ msgstr "Razdrobljenost predpomnilnika poizvedb" #: po/advisory_rules.php:86 msgid "The query cache is considerably fragmented." -msgstr "" +msgstr "Predpomnilnik poizvedb je precej razdrobljen." #: po/advisory_rules.php:87 msgid "" @@ -12004,6 +12051,9 @@ msgid "" "that the query cache is an alternating pattern of free and used blocks. This " "value should be below 20%%." msgstr "" +"Predpomnilnik je trenutno %s-%% razdrobljen, pri čemer 100-%% razdrobljenost " +"pomeni, da je predpomnilnik poizvedb izmeničen vzorec prostih in " +"uporabljenih blokov. Ta vrednost bi morala biti pod 20 %%." #: po/advisory_rules.php:90 msgid "Query cache low memory prunes" diff --git a/po/ta.po b/po/ta.po index 0f84323b53..7d6d5eb796 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-19 09:21+0200\n" +"PO-Revision-Date: 2011-08-20 08:37+0200\n" "Last-Translator: \n" "Language-Team: Tamil \n" "Language: ta\n" @@ -9955,24 +9955,24 @@ msgstr "" #: server_synchronize.php:1038 msgid "Executed queries" -msgstr "" +msgstr "வினவல்கள் நிறைவடைந்தது" #: server_synchronize.php:1184 msgid "Enter manually" -msgstr "" +msgstr "கைமுறையாக நுழை" #: server_synchronize.php:1192 msgid "Current connection" -msgstr "" +msgstr "நடப்பாணை இணைப்பு" #: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" -msgstr "" +msgstr "உள்ளமைவு: %s" #: server_synchronize.php:1236 msgid "Socket" -msgstr "" +msgstr "பொருத்துவாய்" #: server_synchronize.php:1282 msgid "" @@ -9982,23 +9982,23 @@ msgstr "" #: server_variables.php:65 msgid "Setting variable failed" -msgstr "" +msgstr "மாறி அமைப்பு தோல்வியடைந்தது" #: server_variables.php:84 msgid "Server variables and settings" -msgstr "" +msgstr "சேவையக மாறிகள் மற்றும் அமைப்புக்கள்" #: server_variables.php:111 server_variables.php:137 msgid "Session value" -msgstr "" +msgstr "அமர்வு மதிப்பு" #: server_variables.php:111 msgid "Global value" -msgstr "" +msgstr "முழுதளாவிய மதிப்பு" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:226 msgid "Download" -msgstr "" +msgstr "பதிவிறக்கம்" #: setup/frames/index.inc.php:49 msgid "Cannot load or save configuration" @@ -10026,11 +10026,11 @@ msgstr "" #: setup/frames/index.inc.php:65 msgid "Insecure connection" -msgstr "" +msgstr "பாதுகாப்பற்ற இணைப்பு" #: setup/frames/index.inc.php:93 msgid "Configuration saved." -msgstr "" +msgstr "உள்ளமைவு சேமிக்கப்பட்டது." #: setup/frames/index.inc.php:94 msgid "" @@ -10040,11 +10040,11 @@ msgstr "" #: setup/frames/index.inc.php:101 setup/frames/menu.inc.php:15 msgid "Overview" -msgstr "" +msgstr "இறுதிப்பர்வை" #: setup/frames/index.inc.php:109 msgid "Show hidden messages (#MSG_COUNT)" -msgstr "" +msgstr "மறைத்த செய்திகளை காட்டு (#MSG_COUNT)" #: setup/frames/index.inc.php:149 msgid "There are no configured servers" @@ -10052,11 +10052,11 @@ msgstr "" #: setup/frames/index.inc.php:157 msgid "New server" -msgstr "" +msgstr "புதிய சேவையகம்" #: setup/frames/index.inc.php:186 msgid "Default language" -msgstr "" +msgstr "முன்னிருப்பு மொழி" #: setup/frames/index.inc.php:196 msgid "let the user choose" @@ -10064,39 +10064,39 @@ msgstr "" #: setup/frames/index.inc.php:207 msgid "- none -" -msgstr "" +msgstr "- ஒன்றுமில்லை -" #: setup/frames/index.inc.php:210 msgid "Default server" -msgstr "" +msgstr "முன்னிருப்பு சேவையகம்" #: setup/frames/index.inc.php:220 msgid "End of line" -msgstr "" +msgstr "முடிவுக்கோடு" #: setup/frames/index.inc.php:225 msgid "Display" -msgstr "" +msgstr "திரை" #: setup/frames/index.inc.php:229 msgid "Load" -msgstr "" +msgstr "ஏற்று" #: setup/frames/index.inc.php:240 msgid "phpMyAdmin homepage" -msgstr "" +msgstr "phpMyAdmin அகப்பக்கம்" #: setup/frames/index.inc.php:241 msgid "Donate" -msgstr "" +msgstr "நன்கொடை" #: setup/frames/servers.inc.php:28 msgid "Edit server" -msgstr "" +msgstr "சேவையகத்தை தொகு" #: setup/frames/servers.inc.php:37 msgid "Add a new server" -msgstr "" +msgstr "ஒரு புதிய சேவையகத்தை சேர்" #: setup/lib/form_processing.lib.php:43 msgid "Warning" @@ -10112,11 +10112,11 @@ msgstr "" #: setup/lib/form_processing.lib.php:48 msgid "Ignore errors" -msgstr "" +msgstr "வழுக்களை நிராகரி" #: setup/lib/form_processing.lib.php:50 msgid "Show form" -msgstr "" +msgstr "படிவத்தை காட்டு" #: setup/lib/index.lib.php:122 msgid "" @@ -10293,7 +10293,7 @@ msgstr "" #: sql.php:959 msgid "Label" -msgstr "" +msgstr "சிட்டை" #: tbl_addfield.php:185 tbl_alter.php:99 tbl_indexes.php:98 #, php-format @@ -10366,7 +10366,7 @@ msgstr "பங்குனி" #: tbl_chart.php:90 msgid "Line" -msgstr "" +msgstr "கோடு" #: tbl_chart.php:91 #, fuzzy @@ -10386,15 +10386,15 @@ msgstr "" #: tbl_chart.php:97 msgid "Chart title" -msgstr "" +msgstr "வரைபட தலைப்பு" #: tbl_chart.php:103 msgid "X-Axis:" -msgstr "" +msgstr "X-அச்சு" #: tbl_chart.php:117 msgid "Series:" -msgstr "" +msgstr "தொடர்கள்" #: tbl_chart.php:119 #, fuzzy @@ -10404,29 +10404,29 @@ msgstr "கள நிரல்களை சேர்க்க/ நீக்க #: tbl_chart.php:132 msgid "X-Axis label:" -msgstr "" +msgstr "X-அச்சு சிட்டை:" #: tbl_chart.php:133 msgid "X Values" -msgstr "" +msgstr "X மதிப்புக்கள்" #: tbl_chart.php:134 msgid "Y-Axis label:" -msgstr "" +msgstr "Y-அச்சு சிட்டை:" #: tbl_chart.php:134 msgid "Y Values" -msgstr "" +msgstr "Y மதிப்புக்கள்:" #: tbl_create.php:30 #, php-format msgid "Table %s already exists!" -msgstr "" +msgstr "%s இந்த அட்டவணை ஏற்கனவே உள்ளது!" #: tbl_create.php:216 #, php-format msgid "Table %1$s has been created." -msgstr "" +msgstr "அட்டவணை %1$s உருவாக்கபட்டது." #: tbl_export.php:24 msgid "View dump (schema) of table" @@ -10438,11 +10438,11 @@ msgstr "" #: tbl_gis_visualization.php:128 msgid "Width" -msgstr "" +msgstr "அகலம்" #: tbl_gis_visualization.php:132 msgid "Height" -msgstr "" +msgstr "உயரம்" #: tbl_gis_visualization.php:136 #, fuzzy @@ -10452,7 +10452,7 @@ msgstr "கள நிரல்களை சேர்க்க/ நீக்க #: tbl_gis_visualization.php:138 msgid "-- None --" -msgstr "" +msgstr "-- எதுவுமில்லை --" #: tbl_gis_visualization.php:151 #, fuzzy @@ -10466,11 +10466,11 @@ msgstr "" #: tbl_gis_visualization.php:177 msgid "Save to file" -msgstr "" +msgstr "கோப்பை சேமி" #: tbl_gis_visualization.php:178 msgid "File name" -msgstr "" +msgstr "கோப்பின் பெயர்" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -10486,11 +10486,11 @@ msgstr "" #: tbl_indexes.php:169 msgid "Create a new index" -msgstr "" +msgstr "புதிய சுட்டை உருவாக்கு" #: tbl_indexes.php:171 msgid "Modify an index" -msgstr "" +msgstr "சுட்டை மார்றியமை" #: tbl_indexes.php:176 msgid "" @@ -10499,11 +10499,11 @@ msgstr "" #: tbl_indexes.php:179 msgid "Index name:" -msgstr "" +msgstr "சுட்டுப் பெயர்" #: tbl_indexes.php:185 msgid "Index type:" -msgstr "" +msgstr "சுட்டு வகை" #: tbl_indexes.php:265 #, php-format @@ -10550,7 +10550,7 @@ msgstr "" #: tbl_operations.php:355 msgid "Table options" -msgstr "" +msgstr "அட்டவணை தெரிவுகள்" #: tbl_operations.php:359 msgid "Rename table to" @@ -10566,11 +10566,11 @@ msgstr "" #: tbl_operations.php:594 msgid "Table maintenance" -msgstr "" +msgstr "அட்டவணை பராமரிப்பு" #: tbl_operations.php:618 msgid "Defragment table" -msgstr "" +msgstr "அட்டவணையை ஒருங்கமை" #: tbl_operations.php:666 #, php-format @@ -10583,44 +10583,44 @@ msgstr "" #: tbl_operations.php:681 msgid "Delete data or table" -msgstr "" +msgstr "தரவை அல்லது அட்டவணையை அழி" #: tbl_operations.php:696 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "அட்டவணையை வெறுமையாக்கு (காலி)" #: tbl_operations.php:716 msgid "Delete the table (DROP)" -msgstr "" +msgstr "அட்டவணையை அழி (அழி)" #: tbl_operations.php:737 msgid "Partition maintenance" -msgstr "" +msgstr "பிரிவினை பராமரிப்பு" #: tbl_operations.php:745 #, php-format msgid "Partition %s" -msgstr "" +msgstr "பிரிவினை %s" #: tbl_operations.php:748 msgid "Analyze" -msgstr "" +msgstr "ஆரய்தல்" #: tbl_operations.php:749 msgid "Check" -msgstr "" +msgstr "சரிபார்" #: tbl_operations.php:750 msgid "Optimize" -msgstr "" +msgstr "உகப்பாக்கு" #: tbl_operations.php:751 msgid "Rebuild" -msgstr "" +msgstr "மீள்வாகு" #: tbl_operations.php:752 msgid "Repair" -msgstr "" +msgstr "திருத்து" #: tbl_operations.php:764 msgid "Remove partitioning" @@ -10644,7 +10644,7 @@ msgstr "பாவனையளவு" #: tbl_printview.php:305 tbl_structure.php:789 msgid "Effective" -msgstr "" +msgstr "பயனுடைய" #: tbl_printview.php:330 tbl_structure.php:824 msgid "Row Statistics" diff --git a/po/tr.po b/po/tr.po index 758eb37b98..8ca7e10860 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-19 21:49+0200\n" +"PO-Revision-Date: 2011-08-21 22:12+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -7956,7 +7956,7 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" "Varsayılan değerler için lütfen sola eğik çizgisiz veya alıntısız sadece tek " -"değer girin. Bu biçimi kullanın: a" +"değer girin, bu biçimi kullanarak: a" #: libraries/tbl_properties.inc.php:119 libraries/tbl_properties.inc.php:494 #: tbl_printview.php:290 tbl_structure.php:154 tbl_structure.php:159 @@ -8657,8 +8657,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Config.inc.php dosyasını değiştirerek daha fazla ayar ayarlayabilirsiniz, " -"örn. %sKur programcığı%s kullanarak." +"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. %" +"sKur programcığı%s kullanarak." #: prefs_manage.php:300 msgid "Save to browser's storage" @@ -12001,7 +12001,7 @@ msgstr "Sorgu önbelleği verimli çalışmıyor, düşük tavan oranına sahip. #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." -msgstr "Dikkate değer {query_cache_limit} artışı." +msgstr "{query_cache_limit} artışını dikkate alın." #: po/advisory_rules.php:78 #, php-format @@ -12172,8 +12172,8 @@ msgid "" "Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending " "on your system memory limits" msgstr "" -"Dikkate değer sort_buffer_size ve/veya read_rnd_buffer_size artışı, sistem " -"bellek sınırlarınıza bağlıdır." +"sort_buffer_size ve/veya read_rnd_buffer_size artışını dikkate alın, sistem " +"bellek sınırlarınıza bağlıdır" #: po/advisory_rules.php:108 #, php-format @@ -12213,7 +12213,7 @@ msgstr "" "Satır sıralamanın yüksek miktarıyla hiçbir sorun yokken, ORDER BY ibaresinde " "indekslenmiş alanları kullanan çok fazla sıralama gerektiren sorgulardan " "emin olmak isteyebilirsiniz, ki bu çok daha hızlı sıralamayla " -"sonuçlanacaktır." +"sonuçlanacaktır" #: po/advisory_rules.php:118 #, php-format @@ -12235,14 +12235,14 @@ msgid "" msgstr "" "Bu, birleştirmeler tam tablo taraması yapıyor anlamına gelir. Birleştirme " "şartlarında kullanılan alanlar için indekslerin eklenmesi tablo " -"birleştirmelerini fazlasıyla hızlandıracaktır." +"birleştirmelerini fazlasıyla hızlandıracaktır" #: po/advisory_rules.php:123 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Tablo birleştirmeleri ortalaması: %s, bu değer saat başına 1'den az " -"olmalıdır." +"olmalıdır" #: po/advisory_rules.php:125 msgid "Rate of reading first index entry" @@ -12261,19 +12261,27 @@ msgid "" "scans. Other than that full index scans can only be reduced by rewriting " "queries." msgstr "" +"Bu genellikle sık görülen indeks taramasını gösterir. Eğer bu tablolar " +"UPDATE'lerin ve DELETE'lerin yüksek birimlerine sahip ise ya da sahip " +"olmuşsa, tam indeks taramaları tablo taramalarından daha hızlıdır ama büyük " +"tablolarda çok İşlemci döngüsü gerektirir, çalıştırılan 'OPTIMIZE TABLE' tam " +"indeks taramalarının hızını ve/veya miktarını azaltabilir. Diğer taraftan " +"tam indeks taramaları sadece yeniden yazılan sorgular tarafından " +"azaltılabilir." #: po/advisory_rules.php:128 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" +"İndeks taramaları ortalaması: %s, bu değer saat başına 1'den az olmalıdır" #: po/advisory_rules.php:130 msgid "Rate of reading fixed position" -msgstr "" +msgstr "Okunan sabit konum oranı" #: po/advisory_rules.php:131 msgid "The rate of reading data from a fixed position is high." -msgstr "" +msgstr "Sabit konumdan okunan veri oranı yüksek." #: po/advisory_rules.php:132 msgid "" @@ -12281,6 +12289,9 @@ msgid "" "scan, including join queries that do not use indexes. Add indexes where " "applicable." msgstr "" +"Bu çoğu sorgunun sonuçları sıralaması ve/veya tam tablo taraması yapması " +"gerektiğini gösterir, indeksleri kullanmayan birleştirme sorgular da dahil. " +"Uygulanabilir yerlere indeksleri ekler." #: po/advisory_rules.php:133 #, php-format @@ -12288,6 +12299,8 @@ msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " "per hour" msgstr "" +"Okunan sabit konum oranı ortalaması: %s, bu değer saat başına 1'den az " +"olmalıdır" #: po/advisory_rules.php:135 msgid "Rate of reading next table row" @@ -12302,20 +12315,24 @@ msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." msgstr "" +"Bu çoğu sorgunun tam tablo taraması yaptığını gösterir. Uygulanabilir " +"yerlere indeksleri ekler." #: po/advisory_rules.php:138 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" msgstr "" +"Okunan sonraki tablo satırı oranı: %s, bu değer saat başına 1'den az " +"olmalıdır" #: po/advisory_rules.php:140 msgid "tmp_table_size vs. max_heap_table_size" -msgstr "" +msgstr "tmp_table_size 'a karşı max_heap_table_size" #: po/advisory_rules.php:141 msgid "tmp_table_size and max_heap_table_size are not the same." -msgstr "" +msgstr "tmp_table_size ve max_heap_table_size aynı şey değildir." #: po/advisory_rules.php:142 msgid "" @@ -12324,11 +12341,15 @@ msgid "" "wish to increase the in-memory table limit you will have to increase the " "other value as well." msgstr "" +"Eğer kasıtlı olarak ikisinden birini değiştirirseniz: Sunucu bellek içi " +"tabloların en fazla boyutunu belirlemek için her iki düşük değeri kullanır. " +"Bu yüzden eğer bellek içi tablo sınırını arttırmak isterseniz, diğer değeri " +"de arttırmak zorunda kalacaksınız." #: po/advisory_rules.php:143 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" -msgstr "" +msgstr "Şu anki değerler tmp_table_size: %s, max_heap_table_size: %s" #: po/advisory_rules.php:145 msgid "Percentage of temp tables on disk" @@ -12338,7 +12359,7 @@ msgstr "Diskteki geçici tabloların yüzdesi" msgid "" "Many temporary tables are being written to disk instead of being kept in " "memory." -msgstr "" +msgstr "Birçok geçici tablo bellekte tutulmak yerine diske yazılıyor." #: po/advisory_rules.php:147 msgid "" @@ -12350,6 +12371,13 @@ msgid "" "mentioned in the beginning of an Article by the Pythian Group" msgstr "" +"{max_heap_table_size} ve {tmp_table_size} arttırmak yardımcı olabilir. Ancak " +"bazı geçici tablolar her zaman diske yazılır, bu değişkenlerin değeri " +"bağımsızdır. Pythian Grubu Makalesi'nde başlangıcında bahsedildiği " +"gibi şu şartlardan (Geçici tablonun içerisinde: BLOB veya TEXT sütununun " +"varlığı ya da 512 bayttan büyük sütunun varlığı) kaçınmak için bunları " +"elemek bakımından sorgularınızı yeniden yazmak zorunda kalacaksınız" #: po/advisory_rules.php:148 #, php-format @@ -12357,6 +12385,8 @@ msgid "" "%s%% of all temporary tables are being written to disk, this value should be " "below 25%%" msgstr "" +"Tüm geçici tabloların %%%s diske yazılıyor, bu değer %%25'in altında " +"olmalıdır" #: po/advisory_rules.php:150 msgid "Temp disk rate" @@ -12372,6 +12402,13 @@ msgid "" "mentioned in in the MySQL Documentation" msgstr "" +"{max_heap_table_size} ve {tmp_table_size} arttırmak yardımcı olabilir. Ancak " +"bazı geçici tablolar her zaman diske yazılır, bu değişkenlerin değeri " +"bağımsızdır. MySQL Belgesi içinde bahsedildiği gibi şu " +"şartlardan (Geçici tablonun içerisinde: BLOB veya TEXT sütununun varlığı ya " +"da 512 bayttan büyük sütunun varlığı) kaçınmak için bunları elemek " +"bakımından sorgularınızı yeniden yazmak zorunda kalacaksınız" #: po/advisory_rules.php:153 #, php-format @@ -12379,6 +12416,8 @@ msgid "" "Rate of temporay tables being written to disk: %s, this value should be less " "than 1 per hour" msgstr "" +"Diske yazılan geçici tabloların oranı: %s, bu değer saat başına 1'den az " +"olmalıdır" #: po/advisory_rules.php:155 msgid "MyISAM key buffer size" @@ -12386,17 +12425,19 @@ msgstr "MyISAM anahtar arabellek boyutu" #: po/advisory_rules.php:156 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." -msgstr "" +msgstr "Anahtar arabellek başlatılmadı. Önbelleklenecek MyISAM indeksleri yok." #: po/advisory_rules.php:157 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." msgstr "" +"{key_buffer_size} ayarı MyISAM indekslerinizin boyutuna bağlıdır. 64M " +"başlangıç için iyidir." #: po/advisory_rules.php:158 msgid "key_buffer_size is 0" -msgstr "" +msgstr "key_buffer_size 0'dır" #: po/advisory_rules.php:160 #, php-format @@ -12414,11 +12455,16 @@ msgid "" "tables to see if indexes have been removed, or examine queries and " "expectations about what indexes are being used." msgstr "" +"{key_buffer_size} boyutunu azaltmanız gerekebilir, eğer indeksler " +"kaldırılmışsa, görmek için tablolarınızı yeniden gözden geçirin ya da " +"kullanılan indekslerle ilgili beklentileri ve sorguları gözden geçirin." #: po/advisory_rules.php:163 #, php-format msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%" msgstr "" +"Şimdiye kadar kullanılan en fazla %% MyISAM anahtar arabelleği: %s, bu değer " +"%%95'in üzerinde olmalıdır" #: po/advisory_rules.php:165 msgid "Percentage of MyISAM key buffer used" @@ -12428,24 +12474,26 @@ msgstr "Kullanılan MyISAM anahtar arabellek yüzdesi" #, php-format msgid "%% MyISAM key buffer used: %s, this value should be above 95%%" msgstr "" +"Kullanılan %% MyISAM anahtar arabelleği: %s, bu değer %%95'in üzerinde " +"olmalıdır" #: po/advisory_rules.php:170 msgid "Percentage of index reads from memory" -msgstr "" +msgstr "Bellekten indeks okumaları yüzdesi" #: po/advisory_rules.php:171 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" +msgstr "MyISAM anahtar arabelleği kullanan indekslerin %% düşük." #: po/advisory_rules.php:172 msgid "You may need to increase {key_buffer_size}." -msgstr "" +msgstr "{key_buffer_size} değerini arttırmanız gerekebilir." #: po/advisory_rules.php:173 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" -msgstr "" +msgstr "Bellekten indeks okumaları: %%%s, bu değer %%95'in üzerinde olmalıdır" #: po/advisory_rules.php:175 msgid "Rate of table open" @@ -12460,11 +12508,13 @@ msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." msgstr "" +"Açılan tablolar pahalı disk G/Ç gerektirir. {table_open_cache} değerini " +"arttırmak bunu önleyebilir." #: po/advisory_rules.php:178 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "" +msgstr "Açık tablo oranı: %s, bu değer saat başına 10'dan az olmalıdır" #: po/advisory_rules.php:180 msgid "Percentage of used open files limit" @@ -12475,18 +12525,22 @@ msgid "" "The number of open files is approaching the max number of open files. You " "may get a \\\"Too many open files\\\" error." msgstr "" +"Açık dosyaların sayısı en fazla açık dosyaların sayısına yaklaşıyor. \\\"Çok " +"fazla dosya açık\\\" hatası alabilirsiniz." #: po/advisory_rules.php:182 po/advisory_rules.php:187 msgid "" "Consider increasing {open_files_limit}, and check the error log when " "restarting after changing open_files_limit." msgstr "" +"{open_files_limit} artışını dikkate alın ve open_files_limit değerini " +"değiştirdikten sonra yeniden başlatıldığında hata günlüğünü kontrol edin." #: po/advisory_rules.php:183 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" -msgstr "" +msgstr "Açık dosya sayısı sınıra %%%s kaldı. Değer %%85'in altında olmalıdır" #: po/advisory_rules.php:185 msgid "Rate of open files" @@ -12499,7 +12553,7 @@ msgstr "Açılan dosyaların oranı yüksek." #: po/advisory_rules.php:188 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" +msgstr "Açık dosya oranı: %s, bu değer saat başına 5'ten az olmalıdır" #: po/advisory_rules.php:190 #, php-format @@ -12513,20 +12567,21 @@ msgstr "Çok fazla tablo kilidi acilen onaylanmadı." #: po/advisory_rules.php:192 po/advisory_rules.php:197 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" +"Sorguları uyarlayın ve/veya kilit beklemesini azaltmak için InnoDB kullanın." #: po/advisory_rules.php:193 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" +msgstr "Ani tablo kilitleri: %%%s, bu değer %%95'in üzerinde olmalıdır" #: po/advisory_rules.php:195 msgid "Table lock wait rate" -msgstr "" +msgstr "Tablo kilit bekleme oranı" #: po/advisory_rules.php:198 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" -msgstr "" +msgstr "Tablo kilit bekleme oranı: %s, bu değer saat başına 1'den az olmalıdır" #: po/advisory_rules.php:200 msgid "Thread cache" @@ -12537,14 +12592,16 @@ msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" +"İşlem önbelleği etkisizleştirildi, yeni bağlantılardan MySQL'e daha fazla ek " +"yük olarak sonuçlanır." #: po/advisory_rules.php:202 msgid "Enable the thread cache by setting {thread_cache_size} > 0." -msgstr "" +msgstr "{thread_cache_size} > 0 ayarlayarak işlem önbelleğini etkinleştirin." #: po/advisory_rules.php:203 msgid "The thread cache is set to 0" -msgstr "" +msgstr "İşlem önbelleği 0'a ayarlı" #: po/advisory_rules.php:205 #, php-format @@ -12557,16 +12614,16 @@ msgstr "İşlem önbelleği verimli değil." #: po/advisory_rules.php:207 msgid "Increase {thread_cache_size}." -msgstr "" +msgstr "{thread_cache_size} değerini arttır." #: po/advisory_rules.php:208 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" -msgstr "" +msgstr "İşlem önbelleği tavan oranı: %%%s, bu değer %%80'in üzerinde olmalıdır" #: po/advisory_rules.php:210 msgid "Threads that are slow to launch" -msgstr "" +msgstr "İşlemler çalıştırmak için yavaş" #: po/advisory_rules.php:211 msgid "There are too many threads that are slow to launch." @@ -12577,25 +12634,30 @@ 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 "" +"Bu, genel sistem aşırı yükü durumunda oldukça basit işlemlerde olsa genel " +"olarak olur. Sistem yükünüzü dikkatlice izlemek isteyebilirsiniz." #: po/advisory_rules.php:213 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" +"%s işlem başlamak için %s saniyeden daha uzun zaman aldı, bu 0 olmalıdır" #: po/advisory_rules.php:215 msgid "Slow launch time" -msgstr "" +msgstr "Yavaş çalıştırma zamanı" #: po/advisory_rules.php:216 msgid "Slow_launch_threads is above 2s" -msgstr "" +msgstr "Slow_launch_threads 2s üzerinde" #: po/advisory_rules.php:217 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" msgstr "" +"Çalıştırması yavaş olan işlemleri doğru olarak saymak için slow_launch_time " +"değerini 1s veya 2s olarak ayarlayın" #: po/advisory_rules.php:218 #, php-format @@ -12611,6 +12673,8 @@ msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "" +"Kullanılan bağlantıların en fazla miktarı max_connections değerine " +"yaklaşıyor." #: po/advisory_rules.php:222 msgid "" @@ -12618,12 +12682,18 @@ msgid "" "do not close database handlers properly get killed sooner. Make sure the " "code closes database handlers properly." msgstr "" +"max_connections değerini arttırmayla veya wait_timeout değerini azaltmayla " +"daha çabuk sonlandırmak düzgün bir şekilde veritabanı işleyicilerini " +"kapatmaz. Kodun veritabanı işleyicilerini düzgün bir şekilde kapattığından " +"emin olun." #: po/advisory_rules.php:223 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" +"Max_used_connections, max_connections'ın %%%s değerinde, değer %%80'in " +"altında olmalıdır" #: po/advisory_rules.php:225 msgid "Percentage of aborted connections" @@ -12631,7 +12701,7 @@ msgstr "Durdurulan bağlantıların yüzdesi" #: po/advisory_rules.php:226 msgid "Too many connections are aborted." -msgstr "" +msgstr "Çok fazla bağlantı durduruldu." #: po/advisory_rules.php:227 po/advisory_rules.php:232 msgid "" @@ -12640,11 +12710,15 @@ msgid "" "source-of-aborted_connects/\\\">This article might help you track down " "the source." msgstr "" +"Bağlantılar genellikle izin verilmediklerinde durdurulurlar. Bu makale kaynağın izini aramakta yardımcı " +"olabilir." #: po/advisory_rules.php:228 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" -msgstr "" +msgstr "Tüm bağlantıların %%%s'i durduruldu. Bu değer %%1'in altında olmalıdır" #: po/advisory_rules.php:230 msgid "Rate of aborted connections" @@ -12659,6 +12733,7 @@ msgstr "Çok fazla bağlantı durduruldu" msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" +"Durdurulan bağlantıların oranı %s, bu değer saat başına 1'den az olmalıdır" #: po/advisory_rules.php:235 msgid "Percentage of aborted clients" @@ -12666,7 +12741,7 @@ msgstr "Durdurulan istemcilerin yüzdesi" #: po/advisory_rules.php:236 po/advisory_rules.php:241 msgid "Too many clients are aborted." -msgstr "" +msgstr "Çok fazla istemci durduruldu." #: po/advisory_rules.php:237 po/advisory_rules.php:242 msgid "" @@ -12674,11 +12749,14 @@ msgid "" "MySQL properly. This can be due to network issues or code not closing a " "database handler properly. Check your network and code." msgstr "" +"İstemciler genellikle bağlantıları MySQL'e düzgün bir şekilde " +"yaklaşmadıklarında durdurulurlar. Bu ağ sorunlarından veya kodun veritabanı " +"işleyicisine düzgün bir şekilde yaklaşmadığından dolayı olabilir." #: po/advisory_rules.php:238 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" -msgstr "" +msgstr "Tüm istemcilerin %%%s'i durduruldu. Bu değer %%2'nin altında olmalıdır" #: po/advisory_rules.php:240 msgid "Rate of aborted clients" @@ -12688,10 +12766,11 @@ msgstr "Durdurulan istemcilerin oranı" #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" +"Durdurulan istemcilerin oranı %s, bu değer saat başına 1'den az olmalıdır" #: po/advisory_rules.php:245 msgid "Is InnoDB disabled?" -msgstr "" +msgstr "InnoDB etkisizleştirildi mi?" #: po/advisory_rules.php:246 msgid "You do not have InnoDB enabled." @@ -12699,11 +12778,11 @@ msgstr "Etkinleştirilmiş InnoDB'ye sahip değilsiniz." #: po/advisory_rules.php:247 msgid "InnoDB is usually the better choice for table engines." -msgstr "" +msgstr "InnoDB genellikle tablo motorları için en iyi seçimdir." #: po/advisory_rules.php:248 msgid "have_innodb is set to 'value'" -msgstr "" +msgstr "have_innodb 'value'ya ayarlı" #: po/advisory_rules.php:250 msgid "InnoDB log size" @@ -12731,6 +12810,17 @@ msgid "" "com/2007/01/increase-innodblogfilesize-proper-way.html\\\">this blog entry" msgstr "" +"Özellikle InnoDB tablolarına çok fazla yazmalı bir sistemde, " +"innodb_log_file_size değerini {innodb_buffer_pool_size} değerinin %%25'ine " +"ayarlamalısınız. Ancak bu değeri daha büyütmek, veritabanı çökmelerinde " +"kurtarma zamanı daha uzun olacaktır bu yüzden bu değer 256 MiB'tan çok daha " +"yükseğe ayarlanmamalıdır. Lütfen unutmayın bununla birlikte bu değişkenin " +"değerini basitçe değiştiremezsiniz. Sunucuyu kapatmanız, InnoDB günlük " +"dosyalarını kaldırmanız, my.cnf içindeki yeni değeri ayarlamanız, sunucuyu " +"başlatmanız gerekir, sonrada herşeyin iyi gittiğini anlamak için hata " +"günlüklerini kontrol etmelisiniz. Aynı zamanda bu blog girişine bakın" #: po/advisory_rules.php:253 #, php-format @@ -12738,14 +12828,16 @@ msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " "it should not be below 20%%" msgstr "" +"InnoDB arabellek havuzu boyutuyla ilgili olan InnoDB günlük boyutunuz %%%s, " +"bu %%20'nin altında olmamalıdır" #: po/advisory_rules.php:255 msgid "Max InnoDB log size" -msgstr "" +msgstr "En fazla InnoDB günlük boyutu" #: po/advisory_rules.php:256 msgid "The InnoDB log file size is inadequately large." -msgstr "" +msgstr "InnoDB günlük dosyası boyutu yetersiz şekilde büyük." #: po/advisory_rules.php:257 #, php-format @@ -12760,11 +12852,21 @@ msgid "" "\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\\\">this blog entry" msgstr "" +"Genellikle innodb_log_file_size değerini {innodb_buffer_pool_size} boyutunun " +"%%25'ine ayarlamak yeterlidir. Çok innodb_log_file_size, veritabanı " +"çökmesinden sonra kurtarma zamanı oldukça yavaşlar. Aynı zamanda bu Makaleye bakın. Sunucuyu kapatmanız, InnoDB " +"günlük dosyalarını kaldırmanız, my.cnf içindeki yeni değeri ayarlamanız, " +"sunucuyu başlatmanız gerekir, sonrada herşeyin iyi gittiğini anlamak için " +"hata günlüklerini kontrol etmelisiniz. Aynı zamanda bu blog girişine bakın" #: po/advisory_rules.php:258 #, php-format msgid "Your absolute InnoD log size is %s MiB" -msgstr "" +msgstr "Kesin InnoD günlük boyutunuz %s MiB" #: po/advisory_rules.php:260 msgid "InnoDB buffer pool size" @@ -12772,7 +12874,7 @@ msgstr "InnoDB arabellek havuzu boyutu" #: po/advisory_rules.php:261 msgid "Your InnoDB buffer pool is fairly small." -msgstr "" +msgstr "InnoD arabellek havuzunuz oldukça küçük." #: po/advisory_rules.php:262 #, php-format @@ -12788,6 +12890,16 @@ msgid "" "\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-" "innodb_buffer_pool_size/\\\">this article" msgstr "" +"InnoDB arabellek havuzu InnoDB tabloları için performansta derin etki yapar. " +"Tüm kalan belleğinizi bu arabelleğe atayın. Veritabanı sunucuları için " +"depolama motoru olarak sadece InnoDB kullanın ve başka çalışan hizmetler " +"(örng. web sunucusu) olmasın, bunu kullanılabilir belleğin %%80'nine kadar " +"ayarlayabilirsiniz. Eğer durum bu değilse, diğer hizmetlerinizin ve InnoDB-" +"Tabloları olmayanların bellek tüketimini dikkatlice değerlendirmeniz ve " +"dolayısıyla bu değişkeni ayarlamanız gerekir. Eğer çok yükseğe ayarlanırsa, " +"sisteminiz önemli derecede performansı düşüren değiş tokuşa başlayacaktır. " +"Aynı zamanda bu makaleye bakın" #: po/advisory_rules.php:263 #, php-format @@ -12797,6 +12909,10 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" +"Şu an InnoDB arabellek havuzu için belleğinizin %%%s'ini kullanıyorsunuz. " +"Eğer %%60'tan az atadıysanız bu kural işe yaramaz, ancak eğer fazla InnoDB " +"tablolara sahip değilseniz ya da aynı makinede diğer hizmetler çalışıyorsa " +"bu sisteminiz için tamamen yeterli olabilir." #: po/advisory_rules.php:265 msgid "MyISAM concurrent inserts" @@ -12804,7 +12920,7 @@ msgstr "MyISAM eşzamanlı eklemeler" #: po/advisory_rules.php:266 msgid "Enable concurrent_insert by setting it to 1" -msgstr "" +msgstr "concurrent_insert'ü 1'e ayarlayarak bunu etkinleştirin" #: po/advisory_rules.php:267 msgid "" @@ -12812,10 +12928,14 @@ msgid "" "writers for a given table. See also MySQL Documentation" msgstr "" +"{concurrent_insert} 1'e ayarlamak verilen bir tablo için okuyucular ve " +"yazıcılar arasındaki bağlantıyı azaltır. Aynı zamanda MySQL Belgesine bakın" #: po/advisory_rules.php:268 msgid "concurrent_insert is set to 0" -msgstr "" +msgstr "concurrent_insert 0'a ayarlı" #~ msgid "" #~ "The Advisor system can provide recommendations on server variables by " diff --git a/server_status.php b/server_status.php index 5490400bc8..803b76cd98 100644 --- a/server_status.php +++ b/server_status.php @@ -683,7 +683,8 @@ PMA_AddJSVar( ); PMA_AddJSVar( 'server_time_diff', - 'new Date().getTime() - ' . (microtime(true) * 1000) + 'new Date().getTime() - ' . (microtime(true) * 1000), + false ); PMA_AddJSVar( 'server_os',