]> git.joonet.de Git - adminer.git/commitdiff
Trim trailing whitespace
authorJakub Vrana <jakub@vrana.cz>
Fri, 21 Feb 2025 12:53:18 +0000 (13:53 +0100)
committerJakub Vrana <jakub@vrana.cz>
Fri, 21 Feb 2025 12:59:17 +0000 (13:59 +0100)
59 files changed:
.editorconfig
adminer/call.inc.php
adminer/drivers/mongo.inc.php
adminer/event.inc.php
adminer/foreign.inc.php
adminer/include/adminer.inc.php
adminer/include/auth.inc.php
adminer/include/connect.inc.php
adminer/include/driver.inc.php
adminer/include/editing.inc.php
adminer/include/pdo.inc.php
adminer/include/tmpfile.inc.php
adminer/lang/bg.inc.php
adminer/lang/cs.inc.php
adminer/lang/el.inc.php
adminer/lang/fa.inc.php
adminer/lang/fi.inc.php
adminer/lang/lt.inc.php
adminer/lang/pl.inc.php
adminer/lang/sk.inc.php
adminer/lang/sl.inc.php
adminer/lang/uk.inc.php
adminer/lang/vi.inc.php
adminer/lang/xx.inc.php
adminer/lang/zh-tw.inc.php
adminer/lang/zh.inc.php
adminer/schema.inc.php
adminer/sql.inc.php
compile.php
designs/esterka/adminer.css
editor/db.inc.php
editor/include/adminer.inc.php
editor/sqlite.php
plugins/database-hide.php
plugins/designs.php
plugins/drivers/elastic5.php
plugins/drivers/firebird.php
plugins/drivers/simpledb.php
plugins/dump-alter.php
plugins/dump-bz2.php
plugins/dump-date.php
plugins/dump-json.php
plugins/dump-xml.php
plugins/edit-foreign.php
plugins/email-table.php
plugins/enum-option.php
plugins/foreign-system.php
plugins/frames.php
plugins/login-ip.php
plugins/login-otp.php
plugins/login-password-less.php
plugins/login-servers.php
plugins/login-ssl.php
plugins/login-table.php
plugins/master-slave.php
plugins/plugin.php
plugins/sql-log.php
plugins/translation.php
plugins/version-noverify.php

index f862bd3b3d8f8d1aa37509aef2668e1782abd6ac..b67cfe0dcec33d65b70118a9057f514f61c88e87 100644 (file)
@@ -5,6 +5,7 @@ root = true
 charset = utf-8
 end_of_line = lf
 insert_final_newline = true
+trim_trailing_whitespace = true
 
 [*.{php,css,js}]
 indent_style = tab
index 20de834f486bb0bf758332075e2ab91bcf2c2d7c..27ce9f7af81bf8df12b343ee25b1c67dbe4c56ee 100644 (file)
@@ -28,13 +28,13 @@ if (!$error && $_POST) {
                }
                $call[] = (isset($out[$key]) ? "@" . idf_escape($field["field"]) : $val);
        }
-       
+
        $query = (isset($_GET["callf"]) ? "SELECT" : "CALL") . " " . table($PROCEDURE) . "(" . implode(", ", $call) . ")";
        $start = microtime(true);
        $result = $connection->multi_query($query);
        $affected = $connection->affected_rows; // getting warnings overwrites this
        echo $adminer->selectQuery($query, $start, !$result);
-       
+
        if (!$result) {
                echo "<p class='error'>" . error() . "\n";
        } else {
@@ -42,7 +42,7 @@ if (!$error && $_POST) {
                if (is_object($connection2)) {
                        $connection2->select_db(DB);
                }
-               
+
                do {
                        $result = $connection->store_result();
                        if (is_object($result)) {
@@ -53,7 +53,7 @@ if (!$error && $_POST) {
                                ;
                        }
                } while ($connection->next_result());
-               
+
                if ($out) {
                        select($connection->query("SELECT " . implode(", ", $out)));
                }
index ac89542d74d2453f3cf26ef6a551350e64e2bb3e..c9804abcecac7f9f3068f68ae41c9c70c5aa8d73 100644 (file)
@@ -24,7 +24,7 @@ if (isset($_GET["mongo"])) {
                                        $this->error = $e->getMessage();
                                }
                        }
-                       
+
                        function query($query) {
                                return false;
                        }
@@ -109,7 +109,7 @@ if (isset($_GET["mongo"])) {
 
                class Min_Driver extends Min_SQL {
                        public $primary = "_id";
-                       
+
                        function select($table, $select, $where, $group, $order = array(), $limit = 1, $page = 0, $print = false) {
                                $select = ($select == array("*")
                                        ? array()
@@ -127,7 +127,7 @@ if (isset($_GET["mongo"])) {
                                        ->skip($page * $limit)
                                );
                        }
-                       
+
                        function insert($table, $set) {
                                try {
                                        $return = $this->_conn->_db->selectCollection($table)->insert($set);
@@ -219,7 +219,7 @@ if (isset($_GET["mongo"])) {
                                $this->_link = new $class($uri, $options);
                                $this->executeCommand($options["db"], array('ping' => 1));
                        }
-                       
+
                        function executeCommand($db, $command) {
                                $class = 'MongoDB\Driver\Command';
                                try {
@@ -229,7 +229,7 @@ if (isset($_GET["mongo"])) {
                                        return array();
                                }
                        }
-                       
+
                        function executeBulkWrite($namespace, $bulk, $counter) {
                                try {
                                        $results = $this->_link->executeBulkWrite($namespace, $bulk);
@@ -579,7 +579,7 @@ if (isset($_GET["mongo"])) {
                        "(date)>=",
                        "(date)<=",
                );
-       
+
        }
 
        function table($idf) {
index 9404211b898636e0177ad1f83029f640dcfdee6e..6f62a7e8089e6e87d74f75cf67f21cde6dedf7d4 100644 (file)
@@ -15,7 +15,7 @@ if ($_POST && !$error) {
                        : "AT " . q($row["STARTS"])
                        ) . " ON COMPLETION" . ($row["ON_COMPLETION"] ? "" : " NOT") . " PRESERVE"
                ;
-               
+
                queries_redirect(substr(ME, 0, -1), ($EVENT != "" ? lang('Event has been altered.') : lang('Event has been created.')), queries(($EVENT != ""
                        ? "ALTER EVENT " . idf_escape($EVENT) . $schedule
                        . ($EVENT != $row["EVENT_NAME"] ? "\nRENAME TO " . idf_escape($row["EVENT_NAME"]) : "")
index 726d6c798405d056323c091ba20056772f1ffa09..75a909e9c259b1731581856cd6550aafcadebd68 100644 (file)
@@ -6,7 +6,7 @@ $row = $_POST;
 if ($_POST && !$error && !$_POST["add"] && !$_POST["change"] && !$_POST["change-js"]) {
        $message = ($_POST["drop"] ? lang('Foreign key has been dropped.') : ($name != "" ? lang('Foreign key has been altered.') : lang('Foreign key has been created.')));
        $location = ME . "table=" . urlencode($TABLE);
-       
+
        if (!$_POST["drop"]) {
                $row["source"] = array_filter($row["source"], 'strlen');
                ksort($row["source"]); // enforce input order
@@ -16,7 +16,7 @@ if ($_POST && !$error && !$_POST["add"] && !$_POST["change"] && !$_POST["change-
                }
                $row["target"] = $target;
        }
-       
+
        if ($jush == "sqlite") {
                queries_redirect($location, $message, recreate_table($TABLE, $TABLE, array(), array(), array(" $name" => ($_POST["drop"] ? "" : " " . format_foreign_key($row)))));
        } else {
index 00d2fe3f8badcf7073fe9c02ceff7a451d967ea7..94399ec3e160987d4c72722a2de3cf81179fb945 100644 (file)
@@ -39,7 +39,7 @@ class Adminer {
        function bruteForceKey() {
                return $_SERVER["REMOTE_ADDR"];
        }
-       
+
        /** Get server name displayed in breadcrumbs
        * @param string
        * @return string HTML code or null
@@ -128,7 +128,7 @@ class Adminer {
                echo "<p><input type='submit' value='" . lang('Login') . "'>\n";
                echo checkbox("auth[permanent]", 1, $_COOKIE["adminer_permanent"], lang('Permanent login')) . "\n";
        }
-       
+
        /** Get login form field
        * @param string
        * @param string HTML
@@ -479,7 +479,7 @@ class Adminer {
                echo "</script>\n";
                echo "</div></fieldset>\n";
        }
-       
+
        /** Print command box in select
        * @return bool whether to print default commands
        */
index ed104154aea9d065ea078d86c94a35d423007d4b..cbf9518c937292def6d98badc07e1fe1a6a6053c 100644 (file)
@@ -72,14 +72,14 @@ if ($auth) {
        ) {
                redirect(auth_url($vendor, $server, $username, $db));
        }
-       
+
 } elseif ($_POST["logout"] && (!$has_token || verify_token())) {
        foreach (array("pwds", "db", "dbs", "queries") as $key) {
                set_session($key, null);
        }
        unset_permanent();
        redirect(substr(preg_replace('~\b(username|db|ns)=[^&]*&~', '', ME), 0, -1), lang('Logout successful.') . ' ' . lang('Thanks for using Adminer, consider <a href="https://www.adminer.org/en/donation/">donating</a>.'));
-       
+
 } elseif ($permanent && !$_SESSION["pwds"]) {
        session_regenerate_id();
        $private = $adminer->permanentLogin();
@@ -199,7 +199,7 @@ if ($_POST) {
                        : lang('Invalid CSRF token. Send the form again.') . ' ' . lang('If you did not send this request from Adminer then close this page.')
                );
        }
-       
+
 } elseif ($_SERVER["REQUEST_METHOD"] == "POST") {
        // posted form with no data means that post_max_size exceeded because Adminer always sends token at least
        $error = lang('Too big POST data. Reduce the data or increase the %s configuration directive.', "'post_max_size'");
index 38f477c8b35e9f8f071e4277a25a44f884ca3856..322444cd03ef5bfaa430dedd12b0223dbb9e33d1 100644 (file)
@@ -8,7 +8,7 @@ function connect_error() {
                if ($_POST["db"] && !$error) {
                        queries_redirect(substr(ME, 0, -1), lang('Databases have been dropped.'), drop_databases($_POST["db"]));
                }
-               
+
                page_header(lang('Select database'), $error, false);
                echo "<p class='links'>\n";
                foreach (array(
@@ -39,9 +39,9 @@ function connect_error() {
                                . "<td>" . lang('Size') . " - <a href='" . h(ME) . "dbsize=1'>" . lang('Compute') . "</a>" . script("qsl('a').onclick = partial(ajaxSetHtml, '" . js_escape(ME) . "script=connect');", "")
                                . "</thead>\n"
                        ;
-                       
+
                        $databases = ($_GET["dbsize"] ? count_tables($databases) : array_flip($databases));
-                       
+
                        foreach ($databases as $db => $tables) {
                                $root = h(ME) . "db=" . urlencode($db);
                                $id = h("Db-" . $db);
@@ -53,7 +53,7 @@ function connect_error() {
                                echo "<td align='right' id='size-" . h($db) . "'>" . ($_GET["dbsize"] ? db_size($db) : "?");
                                echo "\n";
                        }
-                       
+
                        echo "</table>\n";
                        echo (support("database")
                                ? "<div class='footer'><div>\n"
@@ -69,7 +69,7 @@ function connect_error() {
                        echo script("tableCheck();");
                }
        }
-       
+
        page_footer("db");
 }
 
index d849c7588710855bb906d1f242afdf3590f92da0..4abbe59bf716bb97825c3c058fb2f51cbe6cb90c 100644 (file)
@@ -22,14 +22,14 @@ function get_driver($id) {
 
 /*abstract*/ class Min_SQL {
        var $_conn;
-       
+
        /** Create object for performing database operations
        * @param Min_DB
        */
        function __construct($connection) {
                $this->_conn = $connection;
        }
-       
+
        /** Select data from table
        * @param string
        * @param array result of $adminer->selectColumnsProcess()[0]
@@ -61,7 +61,7 @@ function get_driver($id) {
                }
                return $return;
        }
-       
+
        /** Delete data from table
        * @param string
        * @param string " WHERE ..."
@@ -72,7 +72,7 @@ function get_driver($id) {
                $query = "FROM " . table($table);
                return queries("DELETE" . ($limit ? limit1($table, $query, $queryWhere) : " $query$queryWhere"));
        }
-       
+
        /** Update data in table
        * @param string
        * @param array escaped columns in keys, quoted data in values
@@ -89,7 +89,7 @@ function get_driver($id) {
                $query = table($table) . " SET$separator" . implode(",$separator", $values);
                return queries("UPDATE" . ($limit ? limit1($table, $query, $queryWhere, $separator) : " $query$queryWhere"));
        }
-       
+
        /** Insert data into table
        * @param string
        * @param array escaped columns in keys, quoted data in values
@@ -101,7 +101,7 @@ function get_driver($id) {
                        : " DEFAULT VALUES"
                ));
        }
-       
+
        /** Insert or update data in table
        * @param string
        * @param array
@@ -111,28 +111,28 @@ function get_driver($id) {
        /*abstract*/ function insertUpdate($table, $rows, $primary) {
                return false;
        }
-       
+
        /** Begin transaction
        * @return bool
        */
        function begin() {
                return queries("BEGIN");
        }
-       
+
        /** Commit transaction
        * @return bool
        */
        function commit() {
                return queries("COMMIT");
        }
-       
+
        /** Rollback transaction
        * @return bool
        */
        function rollback() {
                return queries("ROLLBACK");
        }
-       
+
        /** Return query with a timeout
        * @param string
        * @param int seconds
@@ -140,7 +140,7 @@ function get_driver($id) {
        */
        function slowQuery($query, $timeout) {
        }
-       
+
        /** Convert column to be searchable
        * @param string escaped column name
        * @param array array("op" => , "val" => )
@@ -178,19 +178,19 @@ function get_driver($id) {
        function quoteBinary($s) {
                return q($s);
        }
-       
+
        /** Get warnings about the last command
        * @return string HTML
        */
        function warnings() {
                return '';
        }
-       
+
        /** Get help link for table
        * @param string
        * @return string relative URL or null
        */
        function tableHelp($name) {
        }
-       
+
 }
index b883faf008b833af30c78612337b44920b453508..8beba55a0e1b37023e953430b36b26e909dd91b7 100644 (file)
@@ -243,7 +243,7 @@ function get_partitions_info($table) {
        $from = "FROM information_schema.PARTITIONS WHERE TABLE_SCHEMA = " . q(DB) . " AND TABLE_NAME = " . q($table);
        $result = $connection->query("SELECT PARTITION_METHOD, PARTITION_EXPRESSION, PARTITION_ORDINAL_POSITION $from ORDER BY PARTITION_ORDINAL_POSITION DESC LIMIT 1");
        $return = array();
-       list($return["partition_by"], $return["partition"],  $return["partitions"]) = $result->fetch_row();
+       list($return["partition_by"], $return["partition"], $return["partitions"]) = $result->fetch_row();
        $partitions = get_key_vals("SELECT PARTITION_NAME, PARTITION_DESCRIPTION $from AND PARTITION_NAME != '' ORDER BY PARTITION_ORDINAL_POSITION");
        $return["partition_names"] = array_keys($partitions);
        $return["partition_values"] = array_values($partitions);
index a42812153f92844ab0898084708d1be94dff28b7..e1b016eb7ae88a2a6d326cebc4f6965eecb54c04 100644 (file)
@@ -3,7 +3,7 @@
 if (extension_loaded('pdo')) {
        /*abstract*/ class Min_PDO {
                var $_result, $server_info, $affected_rows, $errno, $error, $pdo;
-               
+
                function __construct() {
                        global $adminer;
                        $pos = array_search("SQL", $adminer->operators);
@@ -11,7 +11,7 @@ if (extension_loaded('pdo')) {
                                unset($adminer->operators[$pos]);
                        }
                }
-               
+
                function dsn($dsn, $username, $password, $options = array()) {
                        $options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_SILENT;
                        $options[PDO::ATTR_STATEMENT_CLASS] = array('Min_PDOStatement');
@@ -22,13 +22,13 @@ if (extension_loaded('pdo')) {
                        }
                        $this->server_info = @$this->pdo->getAttribute(PDO::ATTR_SERVER_VERSION);
                }
-               
+
                /*abstract function select_db($database);*/
-               
+
                function quote($string) {
                        return $this->pdo->quote($string);
                }
-               
+
                function query($query, $unbuffered = false) {
                        $result = $this->pdo->query($query);
                        $this->error = "";
@@ -42,11 +42,11 @@ if (extension_loaded('pdo')) {
                        $this->store_result($result);
                        return $result;
                }
-               
+
                function multi_query($query) {
                        return $this->_result = $this->query($query);
                }
-               
+
                function store_result($result = null) {
                        if (!$result) {
                                $result = $this->_result;
@@ -61,7 +61,7 @@ if (extension_loaded('pdo')) {
                        $this->affected_rows = $result->rowCount();
                        return true;
                }
-               
+
                function next_result() {
                        if (!$this->_result) {
                                return false;
@@ -69,7 +69,7 @@ if (extension_loaded('pdo')) {
                        $this->_result->_offset = 0;
                        return @$this->_result->nextRowset(); // @ - PDO_PgSQL doesn't support it
                }
-               
+
                function result($query, $field = 0) {
                        $result = $this->query($query);
                        if (!$result) {
@@ -79,18 +79,18 @@ if (extension_loaded('pdo')) {
                        return $row[$field];
                }
        }
-       
+
        class Min_PDOStatement extends PDOStatement {
                var $_offset = 0, $num_rows;
-               
+
                function fetch_assoc() {
                        return $this->fetch(PDO::FETCH_ASSOC);
                }
-               
+
                function fetch_row() {
                        return $this->fetch(PDO::FETCH_NUM);
                }
-               
+
                function fetch_field() {
                        $row = (object) $this->getColumnMeta($this->_offset++);
                        $row->orgtable = $row->table;
index a7ca9164261e72d7dae47a33e999fda1a5f20019..79baf17b56807916988ac5177f7255be4e0951ae 100644 (file)
@@ -3,20 +3,20 @@
 class TmpFile {
        var $handler;
        var $size;
-       
+
        function __construct() {
                $this->handler = tmpfile();
        }
-       
+
        function write($contents) {
                $this->size += strlen($contents);
                fwrite($this->handler, $contents);
        }
-       
+
        function send() {
                fseek($this->handler, 0);
                fpassthru($this->handler);
                fclose($this->handler);
        }
-       
+
 }
index 4429bcd94b953374586111bf72c7c0a157f064d5..a76080d1d2fff06dc421bd9303740194fd4caf8b 100644 (file)
@@ -22,10 +22,10 @@ $translations = array(
        'Session expired, please login again.' => 'Сесията е изтекла; моля, влезте отново.',
        '%s version: %s through PHP extension %s' => '%s версия: %s през PHP разширение %s',
        'Refresh' => 'Обновяване',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Права',
        'Create user' => 'Създаване на потребител',
        'User has been dropped.' => 'Потребителя беше премахнат.',
@@ -36,14 +36,14 @@ $translations = array(
        'Routine' => 'Процедура',
        'Grant' => 'Осигуряване',
        'Revoke' => 'Отнемане',
-       
+
        'Process list' => 'Списък с процеси',
        '%d process(es) have been killed.' => array('%d процес беше прекъснат.', '%d процеса бяха прекъснати.'),
        'Kill' => 'Прекъсване',
-       
+
        'Variables' => 'Променливи',
        'Status' => 'Състояние',
-       
+
        'SQL command' => 'SQL команда',
        '%d query(s) executed OK.' => array('%d заявка е изпълнена.', '%d заявки са изпълнени.'),
        'Query executed OK, %d row(s) affected.' => array('Заявката е изпълнена, %d ред е засегнат.', 'Заявката е изпълнена, %d редове са засегнати.'),
@@ -57,7 +57,7 @@ $translations = array(
        'History' => 'Хронология',
        'Clear' => 'Изчистване',
        'Edit all' => 'Редактиране на всички',
-       
+
        'File upload' => 'Прикачване на файл',
        'From server' => 'От сървър',
        'Webserver file %s' => 'Сървърен файл %s',
@@ -69,14 +69,14 @@ $translations = array(
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Изпратени са прекалено много данни. Намалете обема на данните или увеличете %s управляващата директива.',
        'You can upload a big SQL file via FTP and import it from server.' => 'Можете да прикачите голям SQL файл чрез FTP и да го импортирате от сървъра.',
        'You are offline.' => 'Вие сте офлайн.',
-       
+
        'Export' => 'Експорт',
        'Output' => 'Резултат',
        'open' => 'показване',
        'save' => 'запис',
        'Format' => 'Формат',
        'Data' => 'Данни',
-       
+
        'Database' => 'База данни',
        'Use' => 'Избор',
        'Select database' => 'Избор на база данни',
@@ -89,10 +89,10 @@ $translations = array(
        'Alter database' => 'Промяна на база данни',
        'Create database' => 'Създаване на база данни',
        'Database schema' => 'Схема на базата данни',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Постоянна препратка',
-       
+
        // thousands separator - must contain single byte
        ',' => ',',
        '0123456789' => '0123456789',
@@ -115,7 +115,7 @@ $translations = array(
        'Tables have been moved.' => 'Таблиците бяха преместени.',
        'Copy' => 'Копиране',
        'Tables have been copied.' => 'Таблиците бяха копирани.',
-       
+
        'Routines' => 'Процедури',
        'Routine has been called, %d row(s) affected.' => array('Беше приложена процедура, %d ред е засегнат.', 'Беше приложена процедура, %d редове са засегнати.'),
        'Call' => 'Прилагане',
@@ -128,7 +128,7 @@ $translations = array(
        'Alter function' => 'Промяна на функция',
        'Alter procedure' => 'Промяна на процедура',
        'Return type' => 'Резултат',
-       
+
        'Events' => 'Събития',
        'Event has been dropped.' => 'Събитието беше премахнато.',
        'Event has been altered.' => 'Събитието беше променено.',
@@ -141,7 +141,7 @@ $translations = array(
        'Start' => 'Начало',
        'End' => 'Край',
        'On completion preserve' => 'Запазване след завършване',
-       
+
        'Tables' => 'Таблици',
        'Tables and views' => 'Таблици и изгледи',
        'Table' => 'Таблица',
@@ -173,12 +173,12 @@ $translations = array(
        'Move down' => 'Преместване надолу',
        'Remove' => 'Премахване',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Максималния брой полета е превишен. Моля, увеличете %s.',
-       
+
        'Partition by' => 'Разделяне на',
        'Partitions' => 'Раздели',
        'Partition name' => 'Име на раздела',
        'Values' => 'Стойности',
-       
+
        'View' => 'Изглед',
        'Materialized view' => 'Запаметен изглед',
        'View has been dropped.' => 'Изгледа беше премахнат.',
@@ -186,14 +186,14 @@ $translations = array(
        'View has been created.' => 'Изгледа беше създаден.',
        'Alter view' => 'Промяна на изглед',
        'Create view' => 'Създаване на изглед',
-       
+
        'Indexes' => 'Индекси',
        'Indexes have been altered.' => 'Индексите бяха променени.',
        'Alter indexes' => 'Промяна на индекси',
        'Add next' => 'Добавяне на следващ',
        'Index Type' => 'Вид на индекса',
        'Column (length)' => 'Колона (дължина)',
-       
+
        'Foreign keys' => 'Препратки',
        'Foreign key' => 'Препратка',
        'Foreign key has been dropped.' => 'Препратката беше премахната.',
@@ -209,7 +209,7 @@ $translations = array(
        'ON DELETE' => 'При изтриване',
        'ON UPDATE' => 'При промяна',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Колоните източник и цел трябва да са от еднакъв вид, трябва да има индекс на колоните приемник и да има въведени данни.',
-       
+
        'Triggers' => 'Тригери',
        'Add trigger' => 'Добавяне на тригер',
        'Trigger has been dropped.' => 'Тригера беше премахнат.',
@@ -220,7 +220,7 @@ $translations = array(
        'Time' => 'Време',
        'Event' => 'Събитие',
        'Name' => 'Име',
-       
+
        'select' => 'показване',
        'Select' => 'Показване',
        'Select data' => 'Показване на данни',
@@ -246,16 +246,16 @@ $translations = array(
        'Loading' => 'Зареждане',
        'Whole result' => 'Пълен резултат',
        '%d byte(s)' => array('%d байт', '%d байта'),
-       
+
        'Import' => 'Импорт',
        '%d row(s) have been imported.' => array('%d ред беше импортиран.', '%d реда бяха импортирани.'),
        'File must be in UTF-8 encoding.' => 'Файла трябва да е с UTF-8 кодировка.',
-       
+
        // in-place editing in select
        'Modify' => 'Промяна',
        'Ctrl+click on a value to modify it.' => 'Ctrl+щракване в стойността, за да я промените.',
        'Use edit link to modify this value.' => 'Използвайте "редакция" за промяна на данните.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Елементи%s бяха вмъкнати.',
        'Item has been deleted.' => 'Елемента беше изтрит.',
@@ -276,14 +276,14 @@ $translations = array(
        'Clone' => 'Клониране',
        'Delete' => 'Изтриване',
        'You have no privileges to update this table.' => 'Нямате праве за обновяване на таблицата.',
-       
+
        'E-mail' => 'E-mail',
        'From' => 'От',
        'Subject' => 'Тема',
        'Attachments' => 'Прикачени',
        'Send' => 'Изпращане',
        '%d e-mail(s) have been sent.' => array('%d писмо беше изпратено.', '%d писма бяха изпратени.'),
-       
+
        // data type descriptions
        'Numbers' => 'Числа',
        'Date and time' => 'Дата и час',
@@ -293,7 +293,7 @@ $translations = array(
        'Network' => 'Мрежа',
        'Geometry' => 'Геометрия',
        'Relations' => 'Зависимости',
-       
+
        'Editor' => 'Редактор',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$1-$3-$5',
@@ -304,11 +304,11 @@ $translations = array(
        'now' => 'сега',
        'yes' => 'да',
        'no' => 'не',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Файла вече съществува.',
        'Please use one of the extensions %s.' => 'Моля, използвайте някое от разширенията %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Промяна на схемата',
        'Create schema' => 'Създаване на схема',
@@ -317,7 +317,7 @@ $translations = array(
        'Schema has been altered.' => 'Схемата беше променена.',
        'Schema' => 'Схема',
        'Invalid schema.' => 'Невалидна схема.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Последователности',
        'Create sequence' => 'Създаване на последователност',
@@ -325,7 +325,7 @@ $translations = array(
        'Sequence has been created.' => 'Последователността беше създадена.',
        'Sequence has been altered.' => 'Последователността беше променена.',
        'Alter sequence' => 'Промяна на последователност',
-       
+
        // PostgreSQL user types support
        'User types' => 'Видове потребители',
        'Create type' => 'Създаване на вид',
index 9ca7cd0c3a7725e26b7c9a162c4409b1947a6d49..64401d42ead106468af2b34bd7631b240d2fd043 100644 (file)
@@ -29,10 +29,10 @@ $translations = array(
        'The action will be performed after successful login with the same credentials.' => 'Akce bude provedena po úspěšném přihlášení se stejnými přihlašovacími údaji.',
        '%s version: %s through PHP extension %s' => 'Verze %s: %s přes PHP rozšíření %s',
        'Refresh' => 'Obnovit',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Oprávnění',
        'Create user' => 'Vytvořit uživatele',
        'User has been dropped.' => 'Uživatel byl odstraněn.',
@@ -43,14 +43,14 @@ $translations = array(
        'Routine' => 'Procedura',
        'Grant' => 'Povolit',
        'Revoke' => 'Zakázat',
-       
+
        'Process list' => 'Seznam procesů',
        '%d process(es) have been killed.' => array('Byl ukončen %d proces.', 'Byly ukončeny %d procesy.', 'Bylo ukončeno %d procesů.'),
        'Kill' => 'Ukončit',
-       
+
        'Variables' => 'Proměnné',
        'Status' => 'Stav',
-       
+
        'SQL command' => 'SQL příkaz',
        '%d query(s) executed OK.' => array('%d příkaz proběhl v pořádku.', '%d příkazy proběhly v pořádku.', '%d příkazů proběhlo v pořádku.'),
        'Query executed OK, %d row(s) affected.' => array('Příkaz proběhl v pořádku, byl změněn %d záznam.', 'Příkaz proběhl v pořádku, byly změněny %d záznamy.', 'Příkaz proběhl v pořádku, bylo změněno %d záznamů.'),
@@ -67,7 +67,7 @@ $translations = array(
        'History' => 'Historie',
        'Clear' => 'Vyčistit',
        'Edit all' => 'Upravit vše',
-       
+
        'File upload' => 'Nahrání souboru',
        'From server' => 'Ze serveru',
        'Webserver file %s' => 'Soubor %s na webovém serveru',
@@ -79,14 +79,14 @@ $translations = array(
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Příliš velká POST data. Zmenšete data nebo zvyšte hodnotu konfigurační direktivy %s.',
        'You can upload a big SQL file via FTP and import it from server.' => 'Velký SQL soubor můžete nahrát pomocí FTP a importovat ho ze serveru.',
        'You are offline.' => 'Jste offline.',
-       
+
        'Export' => 'Export',
        'Output' => 'Výstup',
        'open' => 'otevřít',
        'save' => 'uložit',
        'Format' => 'Formát',
        'Data' => 'Data',
-       
+
        'Database' => 'Databáze',
        'DB' => 'DB',
        'Use' => 'Vybrat',
@@ -100,10 +100,10 @@ $translations = array(
        'Alter database' => 'Pozměnit databázi',
        'Create database' => 'Vytvořit databázi',
        'Database schema' => 'Schéma databáze',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Trvalý odkaz',
-       
+
        // thousands separator - must contain single byte
        ',' => ' ',
        '0123456789' => '0123456789',
@@ -127,7 +127,7 @@ $translations = array(
        'Copy' => 'Zkopírovat',
        'Tables have been copied.' => 'Tabulky byly zkopírovány.',
        'overwrite' => 'přepsat',
-       
+
        'Routines' => 'Procedury a funkce',
        'Routine has been called, %d row(s) affected.' => array('Procedura byla zavolána, byl změněn %d záznam.', 'Procedura byla zavolána, byly změněny %d záznamy.', 'Procedura byla zavolána, bylo změněno %d záznamů.'),
        'Call' => 'Zavolat',
@@ -140,7 +140,7 @@ $translations = array(
        'Alter function' => 'Změnit funkci',
        'Alter procedure' => 'Změnit proceduru',
        'Return type' => 'Návratový typ',
-       
+
        'Events' => 'Události',
        'Event has been dropped.' => 'Událost byla odstraněna.',
        'Event has been altered.' => 'Událost byla změněna.',
@@ -153,7 +153,7 @@ $translations = array(
        'Start' => 'Začátek',
        'End' => 'Konec',
        'On completion preserve' => 'Po dokončení zachovat',
-       
+
        'Tables' => 'Tabulky',
        'Tables and views' => 'Tabulky a pohledy',
        'Table' => 'Tabulka',
@@ -186,12 +186,12 @@ $translations = array(
        'Move down' => 'Přesunout dolů',
        'Remove' => 'Odebrat',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Byl překročen maximální povolený počet polí. Zvyšte prosím %s.',
-       
+
        'Partition by' => 'Rozdělit podle',
        'Partitions' => 'Oddíly',
        'Partition name' => 'Název oddílu',
        'Values' => 'Hodnoty',
-       
+
        'View' => 'Pohled',
        'Materialized view' => 'Materializovaný pohled',
        'View has been dropped.' => 'Pohled byl odstraněn.',
@@ -199,14 +199,14 @@ $translations = array(
        'View has been created.' => 'Pohled byl vytvořen.',
        'Alter view' => 'Pozměnit pohled',
        'Create view' => 'Vytvořit pohled',
-       
+
        'Indexes' => 'Indexy',
        'Indexes have been altered.' => 'Indexy byly změněny.',
        'Alter indexes' => 'Pozměnit indexy',
        'Add next' => 'Přidat další',
        'Index Type' => 'Typ indexu',
        'Column (length)' => 'Sloupec (délka)',
-       
+
        'Foreign keys' => 'Cizí klíče',
        'Foreign key' => 'Cizí klíč',
        'Foreign key has been dropped.' => 'Cizí klíč byl odstraněn.',
@@ -222,7 +222,7 @@ $translations = array(
        'ON DELETE' => 'Při smazání',
        'ON UPDATE' => 'Při změně',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Zdrojové a cílové sloupce musí mít stejný datový typ, nad cílovými sloupci musí být definován index a odkazovaná data musí existovat.',
-       
+
        'Triggers' => 'Triggery',
        'Add trigger' => 'Přidat trigger',
        'Trigger has been dropped.' => 'Trigger byl odstraněn.',
@@ -233,7 +233,7 @@ $translations = array(
        'Time' => 'Čas',
        'Event' => 'Událost',
        'Name' => 'Název',
-       
+
        'select' => 'vypsat',
        'Select' => 'Vypsat',
        'Select data' => 'Vypsat data',
@@ -259,16 +259,16 @@ $translations = array(
        'Loading' => 'Načítá se',
        'Whole result' => 'Celý výsledek',
        '%d byte(s)' => array('%d bajt', '%d bajty', '%d bajtů'),
-       
+
        'Import' => 'Import',
        '%d row(s) have been imported.' => array('Byl importován %d záznam.', 'Byly importovány %d záznamy.', 'Bylo importováno %d záznamů.'),
        'File must be in UTF-8 encoding.' => 'Soubor musí být v kódování UTF-8.',
-       
+
        // in-place editing in select
        'Modify' => 'Změnit',
        'Ctrl+click on a value to modify it.' => 'Ctrl+klikněte na políčko, které chcete změnit.',
        'Use edit link to modify this value.' => 'Ke změně této hodnoty použijte odkaz upravit.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Položka%s byla vložena.',
        'Item has been deleted.' => 'Položka byla smazána.',
@@ -289,14 +289,14 @@ $translations = array(
        'Clone' => 'Klonovat',
        'Delete' => 'Smazat',
        'You have no privileges to update this table.' => 'Nemáte oprávnění editovat tuto tabulku.',
-       
+
        'E-mail' => 'E-mail',
        'From' => 'Odesílatel',
        'Subject' => 'Předmět',
        'Attachments' => 'Přílohy',
        'Send' => 'Odeslat',
        '%d e-mail(s) have been sent.' => array('Byl odeslán %d e-mail.', 'Byly odeslány %d e-maily.', 'Bylo odesláno %d e-mailů.'),
-       
+
        // data type descriptions
        'Numbers' => 'Čísla',
        'Date and time' => 'Datum a čas',
@@ -306,7 +306,7 @@ $translations = array(
        'Network' => 'Síť',
        'Geometry' => 'Geometrie',
        'Relations' => 'Vztahy',
-       
+
        'Editor' => 'Editor',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$6.$4.$1',
@@ -317,11 +317,11 @@ $translations = array(
        'now' => 'teď',
        'yes' => 'ano',
        'no' => 'ne',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Soubor existuje.',
        'Please use one of the extensions %s.' => 'Prosím použijte jednu z koncovek %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Pozměnit schéma',
        'Create schema' => 'Vytvořit schéma',
@@ -330,7 +330,7 @@ $translations = array(
        'Schema has been altered.' => 'Schéma bylo změněno.',
        'Schema' => 'Schéma',
        'Invalid schema.' => 'Nesprávné schéma.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Sekvence',
        'Create sequence' => 'Vytvořit sekvenci',
@@ -338,7 +338,7 @@ $translations = array(
        'Sequence has been created.' => 'Sekvence byla vytvořena.',
        'Sequence has been altered.' => 'Sekvence byla změněna.',
        'Alter sequence' => 'Pozměnit sekvenci',
-       
+
        // PostgreSQL user types support
        'User types' => 'Uživatelské typy',
        'Create type' => 'Vytvořit typ',
index 463678793c2e1472428c8ece17b9ef5ebb261f4d..91fdeba75c9392ac2e5764ab475c1814f82f22c7 100644 (file)
@@ -22,10 +22,10 @@ $translations = array(
        'Session expired, please login again.' => 'Η συνεδρία έληξε, παρακαλώ συνδεθείτε ξανά.',
        '%s version: %s through PHP extension %s' => '%s έκδοση: %s μέσω επέκτασης PHP %s',
        'Refresh' => 'Ανανέωση',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Δικαιώματα',
        'Create user' => 'Δημιουργία Χρήστη',
        'User has been dropped.' => 'Ο Χρήστης διαγράφηκε.',
@@ -36,14 +36,14 @@ $translations = array(
        'Routine' => 'Ρουτίνα',
        'Grant' => 'Παραχώρηση',
        'Revoke' => 'Ανάκληση',
-       
+
        'Process list' => 'Λίστα διεργασιών',
        '%d process(es) have been killed.' => array('Τερματίστηκε %d διεργασία.', 'Τερματίστηκαν %d διεργασίες.'),
        'Kill' => 'Τερματισμός',
-       
+
        'Variables' => 'Μεταβλητές',
        'Status' => 'Κατάσταση',
-       
+
        'SQL command' => 'Εντολή SQL',
        '%d query(s) executed OK.' => array('Το ερώτημα %d εκτελέστηκε ΟΚ.', 'Τα ερώτηματα %d εκτελέστηκαν ΟΚ.'),
        'Query executed OK, %d row(s) affected.' => array('Το ερώτημα εκτελέστηκε ΟΚ, επηρεάστηκε %d σειρά.', 'Το ερώτημα εκτελέστηκε ΟΚ, επηρεάστηκαν %d σειρές.'),
@@ -57,7 +57,7 @@ $translations = array(
        'History' => 'Ιστορικό',
        'Clear' => 'Καθαρισμός',
        'Edit all' => 'Επεξεργασία όλων',
-       
+
        'File upload' => 'Μεταφόρτωση αρχείου',
        'From server' => 'Από διακομιστή',
        'Webserver file %s' => 'Αρχείο %s από διακομιστή web',
@@ -69,7 +69,7 @@ $translations = array(
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Πολλά δεδομένα POST. Μείωστε τα περιεχόμενα ή αυξήστε την σχετική ρύθμιση %s.',
        'You can upload a big SQL file via FTP and import it from server.' => 'Μπορείτε να μεταφορτώσετε ένα μεγάλο αρχείο SQL μέσω FTP και να το εισάγετε από το διακομιστή.',
        'You are offline.' => 'Βρίσκεστε εκτός σύνδεσης.',
-       
+
        'Export' => 'Εξαγωγή',
        'Output' => 'Αποτέλεσμα',
        'open' => 'άνοιγμα',
@@ -77,7 +77,7 @@ $translations = array(
        'Saving' => 'Γίνεται Αποθήκευση',
        'Format' => 'Μορφή',
        'Data' => 'Δεδομένα',
-       
+
        'Database' => 'Β. Δεδομένων',
        'Use' => 'χρήση',
        'Select database' => 'Επιλέξτε Β.Δ.',
@@ -90,10 +90,10 @@ $translations = array(
        'Alter database' => 'Τροποποίηση Β.Δ.',
        'Create database' => 'Δημιουργία Β.Δ.',
        'Database schema' => 'Σχήμα Β.Δ.',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Μόνιμος Σύνδεσμος',
-       
+
        // thousands separator - must contain single byte
        ',' => '.',
        '0123456789' => '0123456789',
@@ -116,7 +116,7 @@ $translations = array(
        'Tables have been moved.' => 'Οι πίνακες μεταφέρθηκαν.',
        'Copy' => 'Αντιγραφή',
        'Tables have been copied.' => 'Οι πίνακες αντιγράφηκαν.',
-       
+
        'Routines' => 'Ρουτίνες',
        'Routine has been called, %d row(s) affected.' => array('Η ρουτίνα εκτελέστηκε, επηρεάστηκε %d σειρά.', 'Η ρουτίνα εκτελέστηκε, επηρεάστηκαν %d σειρές.'),
        'Call' => 'Εκτέλεση',
@@ -129,7 +129,7 @@ $translations = array(
        'Alter function' => 'Τροποποίηση λειτουργίας',
        'Alter procedure' => 'Τροποποίηση διαδικασίας',
        'Return type' => 'Επιστρεφόμενος τύπος',
-       
+
        'Events' => 'Γεγονός',
        'Event has been dropped.' => 'Το γεγονός διαγράφηκε.',
        'Event has been altered.' => 'Το γεγονός τροποποιήθηκε.',
@@ -142,7 +142,7 @@ $translations = array(
        'Start' => 'Έναρξη',
        'End' => 'Λήξη',
        'On completion preserve' => 'Κατά την ολοκλήρωση διατήρησε',
-       
+
        'Tables' => 'Πίνακες',
        'Tables and views' => 'Πίνακες και Προβολές',
        'Table' => 'Πίνακας',
@@ -174,12 +174,12 @@ $translations = array(
        'Move down' => 'Μετακίνηση προς τα κάτω',
        'Remove' => 'Αφαίρεση',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Υπέρβαση μέγιστου επιτρεπόμενου αριθμού πεδίων. Παρακαλώ αυξήστε %s.',
-       
+
        'Partition by' => 'Τμηματοποίηση ανά',
        'Partitions' => 'Τμήματα',
        'Partition name' => 'Όνομα Τμήματος',
        'Values' => 'Τιμές',
-       
+
        'View' => 'Προβολή',
        'Materialized view' => 'Υλοποιημένη προβολή',
        'View has been dropped.' => 'Η προβολή διαγράφηκε.',
@@ -187,14 +187,14 @@ $translations = array(
        'View has been created.' => 'Η προβολή δημιουργήθηκε.',
        'Alter view' => 'Τροποποίηση προβολής',
        'Create view' => 'Δημιουργία προβολής',
-       
+
        'Indexes' => 'Δείκτες',
        'Indexes have been altered.' => 'Οι δείκτες τροποποιήθηκαν.',
        'Alter indexes' => 'Τροποποίηση δεικτών',
        'Add next' => 'Προσθήκη επόμενου',
        'Index Type' => 'Τύπος δείκτη',
        'Column (length)' => 'Στήλη (μήκος)',
-       
+
        'Foreign keys' => 'Εξαρτημένα κλειδιά',
        'Foreign key' => 'Εξαρτημένο κλειδί',
        'Foreign key has been dropped.' => 'Το εξαρτημένο κλειδί διαγράφηκε.',
@@ -210,7 +210,7 @@ $translations = array(
        'ON DELETE' => 'ΚΑΤΑ ΤΗ ΔΙΑΓΡΑΦΗ',
        'ON UPDATE' => 'ΚΑΤΑ ΤΗΝ ΑΛΛΑΓΗ',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Οι στήλες στην πηγή και το στόχο πρέπει να έχουν τον ίδιο τύπο, πρέπει να υπάρχει δείκτης στη στήλη στόχο και να υπάρχουν εξαρτημένα δεδομένα.',
-       
+
        'Triggers' => 'Εναύσματα',
        'Add trigger' => 'Προσθήκη εναύσματος',
        'Trigger has been dropped.' => 'Το έναυσμα διαγράφηκε.',
@@ -221,7 +221,7 @@ $translations = array(
        'Time' => 'Ώρα',
        'Event' => 'Γεγονός',
        'Name' => 'Όνομα',
-       
+
        'select' => 'επιλογή',
        'Select' => 'Επιλογή',
        'Select data' => 'Επιλέξτε δεδομένα',
@@ -247,16 +247,16 @@ $translations = array(
        'Loading' => 'Φορτώνει',
        'Whole result' => 'Όλο το αποτέλεσμα',
        '%d byte(s)' => array('%d byte', '%d bytes'),
-       
+
        'Import' => 'Εισαγωγή',
        '%d row(s) have been imported.' => array('$d σειρά εισήχθη.', '%d σειρές εισήχθησαν.'),
        'File must be in UTF-8 encoding.' => 'Το αρχείο πρέπει να έχει κωδικοποίηση UTF-8.',
-       
+
        // in-place editing in select
        'Modify' => 'Τροποποίηση',
        'Ctrl+click on a value to modify it.' => 'Πιέστε Ctrl+click σε μια τιμή για να την τροποποιήσετε.',
        'Use edit link to modify this value.' => 'Χρησιμοποιήστε το σύνδεσμο επεξεργασία για να τροποποιήσετε την τιμή.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Η εγγραφή%s εισήχθη.',
        'Item has been deleted.' => 'Η εγγραφή διαγράφηκε.',
@@ -276,14 +276,14 @@ $translations = array(
        'Clone' => 'Κλωνοποίηση',
        'Delete' => 'Διαγραφή',
        'You have no privileges to update this table.' => 'Δεν έχετε δικαίωμα να τροποποιήσετε αυτό τον πίνακα.',
-       
+
        'E-mail' => 'E-mail',
        'From' => 'Από',
        'Subject' => 'Θέμα',
        'Attachments' => 'Συνημμένα',
        'Send' => 'Αποστολή',
        '%d e-mail(s) have been sent.' => array('%d e-mail απεστάλη.', '%d e-mail απεστάλησαν.'),
-       
+
        // data type descriptions
        'Numbers' => 'Αριθμοί',
        'Date and time' => 'Ημερομηνία και ώρα',
@@ -293,7 +293,7 @@ $translations = array(
        'Network' => 'Δίκτυο',
        'Geometry' => 'Γεωμετρία',
        'Relations' => 'Συσχετήσεις',
-       
+
        'Editor' => 'Επεξεργαστής',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$5/$3/$1',
@@ -304,11 +304,11 @@ $translations = array(
        'now' => 'τώρα',
        'yes' => 'ναι',
        'no' => 'όχι',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Το αρχείο υπάρχει.',
        'Please use one of the extensions %s.' => 'Παρακαλώ χρησιμοποιείστε μια από τις επεκτάσεις %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Τροποποίηση σχήματος',
        'Create schema' => 'Δημιουργία σχήματος',
@@ -317,7 +317,7 @@ $translations = array(
        'Schema has been altered.' => 'Το σχήμα τροποποιήθηκε.',
        'Schema' => 'Σχήμα',
        'Invalid schema.' => 'Άκυρο σχήμα.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Αλληλουχία',
        'Create sequence' => 'Δημιουργία αλληλουχίας',
@@ -325,7 +325,7 @@ $translations = array(
        'Sequence has been created.' => 'Η αλληλουχία δημιουργήθηκε.',
        'Sequence has been altered.' => 'Η αλληλουχία τροποποιήθηκε.',
        'Alter sequence' => 'Τροποποίηση αλληλουχίας',
-       
+
        // PostgreSQL user types support
        'User types' => 'Τύποι χρήστη',
        'Create type' => 'Δημιουργία τύπου',
index 73e970648ea1b9d9aa870dd3c341e95d79447694..7df018c60698c718c6f751ce75676525f75322e1 100644 (file)
@@ -21,10 +21,10 @@ $translations = array(
        'Session expired, please login again.' => 'نشست پایان یافته، لطفا دوباره وارد شوید.',
        '%s version: %s through PHP extension %s' => 'نسخه %s : %s توسعه پی اچ پی %s',
        'Refresh' => 'بازیابی',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'rtl',
-       
+
        'Privileges' => 'امتیازات',
        'Create user' => 'ایجاد کاربر',
        'User has been dropped.' => 'کاربر حذف شد.',
@@ -35,14 +35,14 @@ $translations = array(
        'Routine' => 'روتین',
        'Grant' => 'اعطا',
        'Revoke' => 'لغو کردن',
-       
+
        'Process list' => 'لیست فرآیند',
        '%d process(es) have been killed.' => '%d فرآیند متوقف شد.',
        'Kill' => 'حذف فرآیند',
-       
+
        'Variables' => 'متغیرها',
        'Status' => 'وضعیت',
-       
+
        'SQL command' => 'دستور SQL',
        '%d query(s) executed OK.' => '%d کوئری اجرا شد.',
        'Query executed OK, %d row(s) affected.' => 'کوئری اجرا شد. %d سطر تغیر کرد.',
@@ -56,7 +56,7 @@ $translations = array(
        'History' => 'تاریخ',
        'Clear' => 'پاک کردن',
        'Edit all' => 'ویرایش همه',
-       
+
        'File upload' => 'بارگذاری فایل',
        'From server' => 'از سرور',
        'Webserver file %s' => '%s فایل وب سرور',
@@ -75,7 +75,7 @@ $translations = array(
        'save' => 'ذخیره',
        'Format' => 'حذف',
        'Data' => 'داده',
-       
+
        'Database' => 'پایگاه داده',
        'Use' => 'استفاده',
        'Select database' => 'انتخاب پایگاه داده',
@@ -88,10 +88,10 @@ $translations = array(
        'Alter database' => 'ویرایش پایگاه داده',
        'Create database' => 'ایجاد پایگاه داده',
        'Database schema' => 'ساختار پایگاه داده',
-       
+
        // link to current database schema layout
        'Permanent link' => 'ارتباط دائم',
-       
+
        // thousands separator - must contain single byte
        ',' => ' ',
        '0123456789' => '۰۱۲۳۴۵۶۷۸۹',
@@ -114,7 +114,7 @@ $translations = array(
        'Tables have been moved.' => 'جدولها انتقال داده شدند.',
        'Copy' => 'کپی کردن',
        'Tables have been copied.' => 'جدولها کپی شدند.',
-       
+
        'Routines' => 'روالها',
        'Routine has been called, %d row(s) affected.' => array('روال فراخوانی شد %d سطر متاثر شد.', 'روال فراخوانی شد %d سطر متاثر شد.'),
        'Call' => 'صدا زدن',
@@ -127,7 +127,7 @@ $translations = array(
        'Alter function' => 'ویرایش تابع',
        'Alter procedure' => 'ویرایش زیربرنامه',
        'Return type' => 'برگرداندن نوع',
-       
+
        'Events' => 'رویدادها',
        'Event has been dropped.' => 'رویداد حذف شد.',
        'Event has been altered.' => 'رویداد ویرایش شد.',
@@ -140,7 +140,7 @@ $translations = array(
        'Start' => 'آغاز',
        'End' => 'پایان',
        'On completion preserve' => 'تکمیل حفاظت فعال است',
-       
+
        'Tables' => 'جدولها',
        'Tables and views' => 'جدولها و نمایه ها',
        'Table' => 'جدول',
@@ -172,12 +172,12 @@ $translations = array(
        'Move down' => 'انتقال به پایین',
        'Remove' => 'حذف',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'حداکثر تعداد فیلدهای مجاز اشباع شد. لطفا %s را افزایش دهید.',
-       
+
        'Partition by' => 'بخشبندی توسط',
        'Partitions' => 'بخشبندیها',
        'Partition name' => 'نام بخش',
        'Values' => 'مقادیر',
-       
+
        'View' => 'نمایش',
        'Materialized view' => 'نمایه مادی',
        'View has been dropped.' => 'نمایش حذف شد.',
@@ -185,14 +185,14 @@ $translations = array(
        'View has been created.' => 'نمایش ایجاد شد.',
        'Alter view' => 'حذف نمایش',
        'Create view' => 'ایجاد نمایش',
-       
+
        'Indexes' => 'ایندکسها',
        'Indexes have been altered.' => 'ایندکسها ویرایش شدند.',
        'Alter indexes' => 'ویرایش ایندکسها',
        'Add next' => 'افرودن بعدی',
        'Index Type' => 'نوع ایندکس',
        'Column (length)' => 'ستون (طول)',
-       
+
        'Foreign keys' => 'کلیدهای خارجی',
        'Foreign key' => 'کلید خارجی',
        'Foreign key has been dropped.' => 'کلید خارجی حذف شد.',
@@ -208,7 +208,7 @@ $translations = array(
        'ON DELETE' => 'ON DELETE',
        'ON UPDATE' => 'ON UPDATE',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'داده مبدا و مقصد ستونها بایستی شبیه هم باشند.',
-       
+
        'Triggers' => 'تریگرها',
        'Add trigger' => 'افزودن تریگر',
        'Trigger has been dropped.' => 'تریگر حذف شد.',
@@ -219,7 +219,7 @@ $translations = array(
        'Time' => 'زمان',
        'Event' => 'رویداد',
        'Name' => 'نام',
-       
+
        'select' => 'انتخاب',
        'Select' => 'انتخاب',
        'Select data' => 'انتخاب داده',
@@ -245,16 +245,16 @@ $translations = array(
        'Loading' => 'در حال بارگزاری',
        'Whole result' => 'همه نتایج',
        '%d byte(s)' => array('%d بایت', '%d بایت'),
-       
+
        'Import' => 'وارد کردن',
        '%d row(s) have been imported.' => array('%d سطر وارد شد.', '%d سطر وارد شد.'),
        'File must be in UTF-8 encoding.' => 'فرمت فایل باید UTF-8 باشید.',
-       
+
        // in-place editing in select
        'Modify' => 'ویرایش',
        'Ctrl+click on a value to modify it.' => 'برای ویرایش بر روی مقدار ctrl+click کنید.',
        'Use edit link to modify this value.' => 'از لینک ویرایش برای ویرایش این مقدار استفاده کنید.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => '%s آیتم درج شد.',
        'Item has been deleted.' => 'آیتم حذف شد.',
@@ -274,14 +274,14 @@ $translations = array(
        'Clone' => 'تکثیر',
        'Delete' => 'حذف',
        'You have no privileges to update this table.' => 'شما اختیار ویرایش این جدول را ندارید.',
-       
+
        'E-mail' => 'پست الکترونیک',
        'From' => 'فرستنده',
        'Subject' => 'موضوع',
        'Attachments' => 'پیوست ها',
        'Send' => 'ارسال',
        '%d e-mail(s) have been sent.' => array('%d ایمیل ارسال شد.', '%d ایمیل ارسال شد.'),
-       
+
        // data type descriptions
        'Numbers' => 'اعداد',
        'Date and time' => 'تاریخ و زمان',
@@ -291,7 +291,7 @@ $translations = array(
        'Network' => 'شبکه',
        'Geometry' => 'هندسه',
        'Relations' => 'رابطه ها',
-       
+
        'Editor' => 'ویرایشگر',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$1-$3-$5',
@@ -306,7 +306,7 @@ $translations = array(
        // general SQLite error in create, drop or rename database
        'File exists.' => 'فایل موجود است.',
        'Please use one of the extensions %s.' => 'لطفا یکی از پسوندها را انتخاب نمائید %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'ویرایش ساختار',
        'Create schema' => 'ایجاد ساختار',
@@ -315,7 +315,7 @@ $translations = array(
        'Schema has been altered.' => 'ساختار ویرایش شد.',
        'Schema' => 'ساختار',
        'Invalid schema.' => 'ساختار نامعتبر.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'صف ها',
        'Create sequence' => 'ایجاد صف',
@@ -323,7 +323,7 @@ $translations = array(
        'Sequence has been created.' => 'صف ایجاد شد.',
        'Sequence has been altered.' => 'صف ویرایش شد.',
        'Alter sequence' => 'ویرایش صف',
-       
+
        // PostgreSQL user types support
        'User types' => 'انواع کاربر',
        'Create type' => 'ایجاد نوع',
index 682113cc8f272cddb2cdc425d93dcbecadd43907..7d04f5e00faaafc5f91c09297c4b7e67bd30a421 100644 (file)
@@ -22,10 +22,10 @@ $translations = array(
        'Session expired, please login again.' => 'Istunto vanhentunut, kirjaudu uudelleen.',
        '%s version: %s through PHP extension %s' => '%s versio: %s PHP-laajennuksella %s',
        'Refresh' => 'Virkistä',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Oikeudet',
        'Create user' => 'Luo käyttäjä',
        'User has been dropped.' => 'Käyttäjä poistettiin.',
@@ -36,14 +36,14 @@ $translations = array(
        'Routine' => 'Rutiini',
        'Grant' => 'Myönnä',
        'Revoke' => 'Kiellä',
-       
+
        'Process list' => 'Prosessilista',
        '%d process(es) have been killed.' => array('%d prosessi lopetettu.', '%d prosessia lopetettu..'),
        'Kill' => 'Lopeta',
-       
+
        'Variables' => 'Muuttujat',
        'Status' => 'Tila',
-       
+
        'SQL command' => 'SQL-komento',
        '%d query(s) executed OK.' => array('%d kysely onnistui.', '%d kyselyä onnistui.'),
        'Query executed OK, %d row(s) affected.' => array('Kysely onnistui, kohdistui %d riviin.', 'Kysely onnistui, kohdistui %d riviin.'),
@@ -57,7 +57,7 @@ $translations = array(
        'History' => 'Historia',
        'Clear' => 'Tyhjennä',
        'Edit all' => 'Muokkaa kaikkia',
-       
+
        'File upload' => 'Tiedoston lataus palvelimelle',
        'From server' => 'Verkkopalvelimella Adminer-kansiossa oleva tiedosto',
        'Webserver file %s' => 'Verkkopalvelintiedosto %s',
@@ -69,7 +69,7 @@ $translations = array(
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Liian suuri POST-datamäärä. Pienennä dataa tai kasvata arvoa %s konfigurointitiedostossa.',
        'You can upload a big SQL file via FTP and import it from server.' => 'Voit ladata suuren SQL-tiedoston FTP:n kautta ja tuoda sen sitten palvelimelta.',
        'You are offline.' => 'Olet offline-tilassa.',
-       
+
        'Export' => 'Vienti',
        'Output' => 'Tulos',
        'open' => 'avaa',
@@ -77,7 +77,7 @@ $translations = array(
        'Saving' => 'Tallennetaan',
        'Format' => 'Muoto',
        'Data' => 'Data',
-       
+
        'Database' => 'Tietokanta',
        'Use' => 'Käytä',
        'Select database' => 'Valitse tietokanta',
@@ -90,10 +90,10 @@ $translations = array(
        'Alter database' => 'Muuta tietokantaa',
        'Create database' => 'Luo tietokanta',
        'Database schema' => 'Tietokantakaava',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Pysyvä linkki',
-       
+
        // thousands separator - must contain single byte
        ',' => ',',
        '0123456789' => '0123456789',
@@ -116,7 +116,7 @@ $translations = array(
        'Tables have been moved.' => 'Taulut on siirretty.',
        'Copy' => 'Kopioi',
        'Tables have been copied.' => 'Taulut on kopioitu.',
-       
+
        'Routines' => 'Rutiinit',
        'Routine has been called, %d row(s) affected.' => array('Rutiini kutsuttu, kohdistui %d riviin.', 'Rutiini kutsuttu, kohdistui %d riviin.'),
        'Call' => 'Kutsua',
@@ -129,7 +129,7 @@ $translations = array(
        'Alter function' => 'Muuta funktiota',
        'Alter procedure' => 'Muuta proseduuria',
        'Return type' => 'Palautustyyppi',
-       
+
        'Events' => 'Tapahtumat',
        'Event has been dropped.' => 'Tapahtuma on poistettu.',
        'Event has been altered.' => 'Tapahtumaa on muutettu.',
@@ -142,7 +142,7 @@ $translations = array(
        'Start' => 'Aloitus',
        'End' => 'Lopetus',
        'On completion preserve' => 'Säilytä, kun valmis',
-       
+
        'Tables' => 'Taulut',
        'Tables and views' => 'Taulut ja näkymät',
        'Table' => 'Taulu',
@@ -174,12 +174,12 @@ $translations = array(
        'Move down' => 'Siirrä alas',
        'Remove' => 'Poista',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Kenttien sallittu enimmäismäärä ylitetty. Kasvata arvoa %s.',
-       
+
        'Partition by' => 'Osioi arvolla',
        'Partitions' => 'Osiot',
        'Partition name' => 'Osion nimi',
        'Values' => 'Arvot',
-       
+
        'View' => 'Näkymä',
        'Materialized view' => 'Materialisoitunut näkymä',
        'View has been dropped.' => 'Näkymä on poistettu.',
@@ -187,14 +187,14 @@ $translations = array(
        'View has been created.' => 'Näkymä on luotu.',
        'Alter view' => 'Muuta näkymää',
        'Create view' => 'Luo näkymä',
-       
+
        'Indexes' => 'Indeksit',
        'Indexes have been altered.' => 'Indeksejä on muutettu.',
        'Alter indexes' => 'Muuta indeksejä',
        'Add next' => 'Lisää seuraava',
        'Index Type' => 'Indeksityyppi',
        'Column (length)' => 'Sarake (pituus)',
-       
+
        'Foreign keys' => 'Vieraat avaimet',
        'Foreign key' => 'Vieras avain',
        'Foreign key has been dropped.' => 'Vieras avain on poistettu.',
@@ -210,7 +210,7 @@ $translations = array(
        'ON DELETE' => 'ON DELETE',
        'ON UPDATE' => 'ON UPDATE',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Lähde- ja kohdesarakkeiden tulee olla samaa tietotyyppiä, kohdesarakkeisiin tulee olla indeksi ja dataa, johon viitataan, täytyy olla.',
-       
+
        'Triggers' => 'Liipaisimet',
        'Add trigger' => 'Lisää liipaisin',
        'Trigger has been dropped.' => 'Liipaisin on poistettu.',
@@ -221,7 +221,7 @@ $translations = array(
        'Time' => 'Aika',
        'Event' => 'Tapahtuma',
        'Name' => 'Nimi',
-       
+
        'select' => 'valitse',
        'Select' => 'Valitse',
        'Select data' => 'Valitse data',
@@ -247,16 +247,16 @@ $translations = array(
        'Loading' => 'Ladataan',
        'Whole result' => 'Koko tulos',
        '%d byte(s)' => array('%d tavu', '%d tavua'),
-       
+
        'Import' => 'Tuonti',
        '%d row(s) have been imported.' => array('%d rivi tuotiin.', '%d riviä tuotiin.'),
        'File must be in UTF-8 encoding.' => 'Tiedoston täytyy olla UTF-8-muodossa.',
-       
+
        // in-place editing in select
        'Modify' => 'Muuta',
        'Ctrl+click on a value to modify it.' => 'Ctrl+napsauta arvoa muuttaaksesi.',
        'Use edit link to modify this value.' => 'Käytä muokkaa-linkkiä muuttaaksesi tätä arvoa.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Tietue%s lisättiin.',
        'Item has been deleted.' => 'Tietue poistettiin.',
@@ -276,14 +276,14 @@ $translations = array(
        'Clone' => 'Kloonaa',
        'Delete' => 'Poista',
        'You have no privileges to update this table.' => 'Sinulla ei ole oikeutta päivittää tätä taulua.',
-       
+
        'E-mail' => 'S-posti',
        'From' => 'Lähettäjä',
        'Subject' => 'Aihe',
        'Attachments' => 'Liitteet',
        'Send' => 'Lähetä',
        '%d e-mail(s) have been sent.' => array('% sähköpostiviestiä lähetetty.', '% sähköpostiviestiä lähetetty.'),
-       
+
        // data type descriptions
        'Numbers' => 'Numerot',
        'Date and time' => 'Päiväys ja aika',
@@ -293,7 +293,7 @@ $translations = array(
        'Network' => 'Verkko',
        'Geometry' => 'Geometria',
        'Relations' => 'Suhteet',
-       
+
        'Editor' => 'Editori',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$5.$3.$1',
@@ -304,11 +304,11 @@ $translations = array(
        'now' => 'nyt',
        'yes' => 'kyllä',
        'no' => 'ei',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Tiedosto on olemassa.',
        'Please use one of the extensions %s.' => 'Käytä jotain %s-laajennuksista.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Muuta kaavaa',
        'Create schema' => 'Luo kaava',
@@ -317,7 +317,7 @@ $translations = array(
        'Schema has been altered.' => 'Kaavaa muutettiin.',
        'Schema' => 'Kaava',
        'Invalid schema.' => 'Kaava ei kelpaa.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Sekvenssit',
        'Create sequence' => 'Luo sekvenssi',
@@ -325,7 +325,7 @@ $translations = array(
        'Sequence has been created.' => 'Sekvenssi on luotu.',
        'Sequence has been altered.' => 'Sekvenssiä on muutettu.',
        'Alter sequence' => 'Muuta sekvenssiä',
-       
+
        // PostgreSQL user types support
        'User types' => 'Käyttäjän tyypit',
        'Create type' => 'Luo tyyppi',
index 92969b2b009a18beeed671f951b66d13e2757b07..465e30f61c25c6b211ad153ca0a508b71644f5b0 100644 (file)
@@ -19,10 +19,10 @@ $translations = array(
        'Session expired, please login again.' => 'Sesijos galiojimas baigėsi. Prisijunkite iš naujo.',
        '%s version: %s through PHP extension %s' => '%s versija: %s per PHP plėtinį %s',
        'Refresh' => 'Atnaujinti',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Privilegijos',
        'Create user' => 'Sukurti vartotoją',
        'User has been dropped.' => 'Vartotojas ištrintas.',
@@ -33,14 +33,14 @@ $translations = array(
        'Routine' => 'Procedūra',
        'Grant' => 'Suteikti',
        'Revoke' => 'Atšaukti',
-       
+
        'Process list' => 'Procesų sąrašas',
        '%d process(es) have been killed.' => array('%d procesas nutrauktas.', '%d procesai nutraukti.', '%d procesų nutraukta.'),
        'Kill' => 'Nutraukti',
-       
+
        'Variables' => 'Kintamieji',
        'Status' => 'Būsena',
-       
+
        'SQL command' => 'SQL užklausa',
        '%d query(s) executed OK.' => array('%d užklausa įvykdyta.', '%d užklausos įvykdytos.', '%d užklausų įvykdyta.'),
        'Query executed OK, %d row(s) affected.' => array('Užklausa įvykdyta. Pakeistas %d įrašas.', 'Užklausa įvykdyta. Pakeisti %d įrašai.', 'Užklausa įvykdyta. Pakeista %d įrašų.'),
@@ -54,7 +54,7 @@ $translations = array(
        'History' => 'Istorija',
        'Clear' => 'Išvalyti',
        'Edit all' => 'Redaguoti visus',
-       
+
        'File upload' => 'Failo įkėlimas',
        'From server' => 'Iš serverio',
        'Webserver file %s' => 'Failas %s iš serverio',
@@ -64,14 +64,14 @@ $translations = array(
        'Unable to upload a file.' => 'Nepavyko įkelti failo.',
        'Maximum allowed file size is %sB.' => 'Maksimalus failo dydis - %sB.',
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Per daug POST duomenų. Sumažinkite duomenų kiekį arba padidinkite konfigūracijos nustatymą %s.',
-       
+
        'Export' => 'Eksportas',
        'Output' => 'Išvestis',
        'open' => 'atidaryti',
        'save' => 'išsaugoti',
        'Format' => 'Formatas',
        'Data' => 'Duomenys',
-       
+
        'Database' => 'Duomenų bazė',
        'Use' => 'Naudoti',
        'Select database' => 'Pasirinkti duomenų bazę',
@@ -84,10 +84,10 @@ $translations = array(
        'Alter database' => 'Redaguoti duomenų bazę',
        'Create database' => 'Sukurti duomenų bazę',
        'Database schema' => 'Duomenų bazės schema',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Pastovi nuoroda',
-       
+
        // thousands separator - must contain single byte
        ',' => ' ',
        '0123456789' => '0123456789',
@@ -109,7 +109,7 @@ $translations = array(
        'Tables have been moved.' => 'Lentelės perkeltos.',
        'Copy' => 'Kopijuoti',
        'Tables have been copied.' => 'Lentelės nukopijuotos.',
-       
+
        'Routines' => 'Procedūros',
        'Routine has been called, %d row(s) affected.' => array('Procedūra įvykdyta. %d įrašas pakeistas.', 'Procedūra įvykdyta. %d įrašai pakeisti.', 'Procedūra įvykdyta. %d įrašų pakeista.'),
        'Call' => 'Vykdyti',
@@ -122,7 +122,7 @@ $translations = array(
        'Alter function' => 'Keisti funkciją',
        'Alter procedure' => 'Keiskti procedūrą',
        'Return type' => 'Grąžinimo tipas',
-       
+
        'Events' => 'Įvykiai',
        'Event has been dropped.' => 'Įvykis pašalintas.',
        'Event has been altered.' => 'Įvykis pakeistas.',
@@ -135,7 +135,7 @@ $translations = array(
        'Start' => 'Pradžia',
        'End' => 'Pabaiga',
        'On completion preserve' => 'Įvykdžius išsaugoti',
-       
+
        'Tables' => 'Lentelės',
        'Tables and views' => 'Lentelės ir vaizdai',
        'Table' => 'Lentelė',
@@ -163,26 +163,26 @@ $translations = array(
        'Move down' => 'Perkelti žemyn',
        'Remove' => 'Pašalinti',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Viršytas maksimalus leidžiamų stulpelių kiekis. Padidinkite %s.',
-       
+
        'Partition by' => 'Skirstyti pagal',
        'Partitions' => 'Skirsniai',
        'Partition name' => 'Skirsnio pavadinimas',
        'Values' => 'Reikšmės',
-       
+
        'View' => 'Vaizdas',
        'View has been dropped.' => 'Vaizdas pašalintas.',
        'View has been altered.' => 'Vaizdas pakeistas.',
        'View has been created.' => 'Vaizdas sukurtas.',
        'Alter view' => 'Redaguoti vaizdą',
        'Create view' => 'Sukurti vaizdą',
-       
+
        'Indexes' => 'Indeksai',
        'Indexes have been altered.' => 'Indeksai pakeisti.',
        'Alter indexes' => 'Redaguoti indeksus',
        'Add next' => 'Pridėti kitą',
        'Index Type' => 'Indekso tipas',
        'Column (length)' => 'Stulpelis (ilgis)',
-       
+
        'Foreign keys' => 'Išoriniai raktai',
        'Foreign key' => 'Išorinis raktas',
        'Foreign key has been dropped.' => 'Išorinis raktas pašalintas.',
@@ -198,7 +198,7 @@ $translations = array(
        'ON DELETE' => 'Ištrinant',
        'ON UPDATE' => 'Atnaujinant',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Šaltinio ir tikslinis stulpelis turi būti to paties tipo, tiksliniame stulpelyje turi būti naudojamas indeksas ir duomenys turi egzistuoti.',
-       
+
        'Triggers' => 'Trigeriai',
        'Add trigger' => 'Pridėti trigerį',
        'Trigger has been dropped.' => 'Trigeris pašalintas.',
@@ -209,7 +209,7 @@ $translations = array(
        'Time' => 'Laikas',
        'Event' => 'Įvykis',
        'Name' => 'Pavadinimas',
-       
+
        'select' => 'atrinkti',
        'Select' => 'Atrinkti',
        'Select data' => 'Atrinkti duomenis',
@@ -230,13 +230,13 @@ $translations = array(
        'last' => 'paskutinis',
        'Whole result' => 'Visas rezultatas',
        '%d byte(s)' => array('%d baitas', '%d baigai', '%d baitų'),
-       
+
        'Import' => 'Importas',
        '%d row(s) have been imported.' => array('%d įrašas įkelta.', '%d įrašai įkelti.', '%d įrašų įkelta.'),
-       
+
        // in-place editing in select
        'Use edit link to modify this value.' => 'Norėdami redaguoti reikšmę naudokite redagavimo nuorodą.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Įrašas%s sukurtas.',
        'Item has been deleted.' => 'Įrašas ištrintas.',
@@ -254,14 +254,14 @@ $translations = array(
        'Save and insert next' => 'Išsaugoti ir įrašyti kitą',
        'Clone' => 'Klonuoti',
        'Delete' => 'Trinti',
-       
+
        'E-mail' => 'El. paštas',
        'From' => 'Nuo',
        'Subject' => 'Antraštė',
        'Attachments' => 'Priedai',
        'Send' => 'Siųsti',
        '%d e-mail(s) have been sent.' => array('Išsiųstas %d laiškas.', 'Išsiųsti %d laiškai.', 'Išsiųsta %d laiškų.'),
-       
+
        // data type descriptions
        'Numbers' => 'Skaičiai',
        'Date and time' => 'Data ir laikas',
@@ -271,7 +271,7 @@ $translations = array(
        'Network' => 'Tinklas',
        'Geometry' => 'Geometrija',
        'Relations' => 'Ryšiai',
-       
+
        'Editor' => 'Redaktorius',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$1-$3-$5',
@@ -280,11 +280,11 @@ $translations = array(
        // hint for time format - use language equivalents for hour, minute and second shortcuts
        'HH:MM:SS' => 'HH:MM:SS',
        'now' => 'dabar',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Failas egzistuoja.',
        'Please use one of the extensions %s.' => 'Naudokite vieną iš plėtinių %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Keisti schemą',
        'Create schema' => 'Sukurti schemą',
@@ -293,7 +293,7 @@ $translations = array(
        'Schema has been altered.' => 'Schema pakeista.',
        'Schema' => 'Schema',
        'Invalid schema.' => 'Neteisinga schema.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Sekos',
        'Create sequence' => 'Sukurti seką',
@@ -301,7 +301,7 @@ $translations = array(
        'Sequence has been created.' => 'Seka sukurta.',
        'Sequence has been altered.' => 'Seka pakeista.',
        'Alter sequence' => 'Keisti seką',
-       
+
        // PostgreSQL user types support
        'User types' => 'Vartotojų tipai',
        'Create type' => 'Sukurti tipą',
index 2fd996a1f691d3c8ae2e950e8376c521d6efad5e..8125d16941d40d5c2b181cb9806b15e4c727e098 100644 (file)
@@ -42,10 +42,10 @@ $translations = array(
        'Process list' => 'Lista procesów',
        '%d process(es) have been killed.' => array('Przerwano %d wątek.', 'Przerwano %d wątki.', 'Przerwano %d wątków.'),
        'Kill' => 'Przerwij wykonywanie',
-       
+
        'Variables' => 'Zmienne',
        'Status' => 'Status',
-       
+
        'SQL command' => 'Zapytanie SQL',
        '%d query(s) executed OK.' => array('Pomyślnie wykonano %d zapytanie.', 'Pomyślnie wykonano %d zapytania.', 'Pomyślnie wykonano %d zapytań.'),
        'Query executed OK, %d row(s) affected.' => array('Zapytanie wykonane pomyślnie, zmieniono %d rekord.', 'Zapytanie wykonane pomyślnie, zmieniono %d rekordy.', 'Zapytanie wykonane pomyślnie, zmieniono %d rekordów.'),
@@ -60,7 +60,7 @@ $translations = array(
        'History' => 'Historia',
        'Clear' => 'Wyczyść',
        'Edit all' => 'Edytuj wszystkie',
-       
+
        'File upload' => 'Wgranie pliku',
        'From server' => 'Z serwera',
        'Webserver file %s' => 'Plik %s na serwerze',
@@ -72,14 +72,14 @@ $translations = array(
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Przesłano zbyt dużo danych. Zmniejsz objętość danych lub zwiększ zmienną konfiguracyjną %s.',
        'You can upload a big SQL file via FTP and import it from server.' => 'Większe pliki SQL możesz wgrać na serwer poprzez FTP przed zaimportowaniem.',
        'You are offline.' => 'Jesteś offline.',
-       
+
        'Export' => 'Eksport',
        'Output' => 'Rezultat',
        'open' => 'otwórz',
        'save' => 'zapisz',
        'Format' => 'Format',
        'Data' => 'Dane',
-       
+
        'Database' => 'Baza danych',
        'Use' => 'Wybierz',
        'Select database' => 'Wybierz bazę danych',
@@ -92,10 +92,10 @@ $translations = array(
        'Alter database' => 'Zmień bazę danych',
        'Create database' => 'Utwórz bazę danych',
        'Database schema' => 'Schemat bazy danych',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Trwały link',
-       
+
        // thousands separator - must contain single byte
        ',' => ' ',
        '0123456789' => '0123456789',
@@ -118,7 +118,7 @@ $translations = array(
        'Tables have been moved.' => 'Tabele zostały przeniesione.',
        'Copy' => 'Kopiuj',
        'Tables have been copied.' => 'Tabele zostały skopiowane.',
-       
+
        'Routines' => 'Procedury i funkcje',
        'Routine has been called, %d row(s) affected.' => array('Procedura została uruchomiona, zmieniono %d rekord.', 'Procedura została uruchomiona, zmieniono %d rekordy.', 'Procedura została uruchomiona, zmieniono %d rekordów.'),
        'Call' => 'Uruchom',
@@ -131,7 +131,7 @@ $translations = array(
        'Alter function' => 'Zmień funkcję',
        'Alter procedure' => 'Zmień procedurę',
        'Return type' => 'Zwracany typ',
-       
+
        'Events' => 'Wydarzenia',
        'Event has been dropped.' => 'Wydarzenie zostało usunięte.',
        'Event has been altered.' => 'Wydarzenie zostało zmienione.',
@@ -144,7 +144,7 @@ $translations = array(
        'Start' => 'Początek',
        'End' => 'Koniec',
        'On completion preserve' => 'Nie kasuj wydarzenia po przeterminowaniu',
-       
+
        'Tables' => 'Tabele',
        'Tables and views' => 'Tabele i perspektywy',
        'Table' => 'Tabela',
@@ -177,12 +177,12 @@ $translations = array(
        'Move down' => 'Przesuń w dół',
        'Remove' => 'Usuń',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Przekroczono maksymalną liczbę pól. Zwiększ %s.',
-       
+
        'Partition by' => 'Partycjonowanie',
        'Partitions' => 'Partycje',
        'Partition name' => 'Nazwa partycji',
        'Values' => 'Wartości',
-       
+
        'View' => 'Perspektywa',
        'Materialized view' => 'Zmaterializowana perspektywa',
        'View has been dropped.' => 'Perspektywa została usunięta.',
@@ -190,14 +190,14 @@ $translations = array(
        'View has been created.' => 'Perspektywa została utworzona.',
        'Alter view' => 'Zmień perspektywę',
        'Create view' => 'Utwórz perspektywę',
-       
+
        'Indexes' => 'Indeksy',
        'Indexes have been altered.' => 'Indeksy zostały zmienione.',
        'Alter indexes' => 'Zmień indeksy',
        'Add next' => 'Dodaj następny',
        'Index Type' => 'Typ indeksu',
        'Column (length)' => 'Kolumna (długość)',
-       
+
        'Foreign keys' => 'Klucze obce',
        'Foreign key' => 'Klucz obcy',
        'Foreign key has been dropped.' => 'Klucz obcy został usunięty.',
@@ -213,7 +213,7 @@ $translations = array(
        'ON DELETE' => 'W przypadku usunięcia',
        'ON UPDATE' => 'W przypadku zmiany',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Źródłowa i docelowa kolumna muszą być tego samego typu, powinien istnieć indeks na docelowej kolumnie oraz muszą istnieć dane referencyjne.',
-       
+
        'Triggers' => 'Wyzwalacze',
        'Add trigger' => 'Dodaj wyzwalacz',
        'Trigger has been dropped.' => 'Wyzwalacz został usunięty.',
@@ -224,7 +224,7 @@ $translations = array(
        'Time' => 'Czas',
        'Event' => 'Wydarzenie',
        'Name' => 'Nazwa',
-       
+
        'select' => 'przeglądaj',
        'Select' => 'pokaż',
        'Select data' => 'Pokaż dane',
@@ -250,16 +250,16 @@ $translations = array(
        'Loading' => 'Wczytywanie',
        'Whole result' => 'Wybierz wszystkie',
        '%d byte(s)' => array('%d bajt', '%d bajty', '%d bajtów'),
-       
+
        'Import' => 'Import',
        '%d row(s) have been imported.' => array('%d rekord został zaimportowany.', '%d rekordy zostały zaimportowane.', '%d rekordów zostało zaimportowanych.'),
        'File must be in UTF-8 encoding.' => 'Kodowanie pliku musi być ustawione na UTF-8.',
-       
+
        // in-place editing in select
        'Modify' => 'Zmień',
        'Ctrl+click on a value to modify it.' => 'Ctrl+kliknij wartość, aby ją edytować.',
        'Use edit link to modify this value.' => 'Użyj linku edycji aby zmienić tę wartość.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Rekord%s został dodany.',
        'Item has been deleted.' => 'Rekord został usunięty.',
@@ -280,14 +280,14 @@ $translations = array(
        'Clone' => 'Duplikuj',
        'Delete' => 'Usuń',
        'You have no privileges to update this table.' => 'Brak uprawnień do edycji tej tabeli',
-       
+
        'E-mail' => 'E-mail',
        'From' => 'Nadawca',
        'Subject' => 'Temat',
        'Attachments' => 'Załączniki',
        'Send' => 'Wyślij',
        '%d e-mail(s) have been sent.' => array('Wysłano %d e-mail.', 'Wysłano %d e-maile.', 'Wysłano %d e-maili.'),
-       
+
        // data type descriptions
        'Numbers' => 'Numeryczne',
        'Date and time' => 'Data i czas',
@@ -297,7 +297,7 @@ $translations = array(
        'Network' => 'Sieć',
        'Geometry' => 'Geometria',
        'Relations' => 'Relacje',
-       
+
        'Editor' => 'Edytor',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$6.$4.$1',
@@ -308,11 +308,11 @@ $translations = array(
        'now' => 'teraz',
        'yes' => 'tak',
        'no' => 'nie',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Plik już istnieje.',
        'Please use one of the extensions %s.' => 'Proszę użyć jednego z rozszerzeń: %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Zmień schemat',
        'Create schema' => 'Utwórz schemat',
@@ -321,7 +321,7 @@ $translations = array(
        'Schema has been altered.' => 'Schemat został zmieniony.',
        'Schema' => 'Schemat',
        'Invalid schema.' => 'Nieprawidłowy schemat.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Sekwencje',
        'Create sequence' => 'Utwórz sekwencję',
@@ -329,7 +329,7 @@ $translations = array(
        'Sequence has been created.' => 'Sekwencja została utworzona.',
        'Sequence has been altered.' => 'Sekwencja została zmieniona.',
        'Alter sequence' => 'Zmień sekwencję',
-       
+
        // PostgreSQL user types support
        'User types' => 'Typy użytkownika',
        'Create type' => 'Utwórz typ',
index 4615fca2891acca7c999bf1983593153c60eaaab..c8b9d2023cee48a0fef8f2def110b0f4d03e0d9c 100644 (file)
@@ -287,7 +287,7 @@ $translations = array(
        'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Platnosť hlavného hesla vypršala. <a href="https://www.adminer.org/cs/extension/"%s>Implementujte</a> metodu %s, aby platilo natrvalo.',
        'The action will be performed after successful login with the same credentials.' => 'Akcia sa vykoná po úspešnom prihlásení s rovnakými prihlasovacími údajmi.',
        'Connecting to privileged ports is not allowed.' => 'Pripojenie k privilegovaným portom nie je povolené.',
-       'There is a space in the input password which might be the cause.' =>  'V zadanom hesle je medzera, ktorá môže byť príčinou.',
+       'There is a space in the input password which might be the cause.' => 'V zadanom hesle je medzera, ktorá môže byť príčinou.',
        'If you did not send this request from Adminer then close this page.' => 'Pokiaľ ste tento požiadavok neodoslali z Adminera, zatvorte túto stránku.',
        'You can upload a big SQL file via FTP and import it from server.' => 'Veľký SQL soubor môžete nahrať pomocou FTP a importovať ho zo servera.',
        'Size' => 'Veľkosť',
index 174ba9f482d3467a7b3245da749141b7ce8eb32f..d5fa8baf13b1f489002eaa5fea57d8745f5479f0 100644 (file)
@@ -19,10 +19,10 @@ $translations = array(
        'Session expired, please login again.' => 'Seja je potekla. Prosimo, ponovno se prijavite.',
        '%s version: %s through PHP extension %s' => 'Verzija %s: %s preko dodatka za PHP %s',
        'Refresh' => 'Osveži',
-       
+
        // text direction
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Pravice',
        'Create user' => 'Ustvari uporabnika',
        'User has been dropped.' => 'Uporabnik je odstranjen.',
@@ -33,14 +33,14 @@ $translations = array(
        'Routine' => 'Postopek',
        'Grant' => 'Dovoli',
        'Revoke' => 'Odvzemi',
-       
+
        'Process list' => 'Seznam procesov',
        '%d process(es) have been killed.' => array('Končan je %d proces.', 'Končana sta %d procesa.', 'Končani so %d procesi.', 'Končanih je %d procesov.'),
        'Kill' => 'Končaj',
-       
+
        'Variables' => 'Spremenljivke',
        'Status' => 'Stanje',
-       
+
        'SQL command' => 'Ukaz SQL',
        '%d query(s) executed OK.' => array('Uspešno se je končala %d poizvedba.', 'Uspešno sta se končali %d poizvedbi.', 'Uspešno so se končale %d poizvedbe.', 'Uspešno se je končalo %d poizvedb.'),
        'Query executed OK, %d row(s) affected.' => array('Poizvedba se je uspešno izvedla, spremenjena je %d vrstica.', 'Poizvedba se je uspešno izvedla, spremenjeni sta %d vrstici.', 'Poizvedba se je uspešno izvedla, spremenjene so %d vrstice.', 'Poizvedba se je uspešno izvedla, spremenjenih je %d vrstic.'),
@@ -53,7 +53,7 @@ $translations = array(
        '%.3f s' => '%.3f s',
        'History' => 'Zgodovina',
        'Clear' => 'Počisti',
-       
+
        'File upload' => 'Naloži datoteko',
        'From server' => 'z strežnika',
        'Webserver file %s' => 'Datoteka na spletnem strežniku %s',
@@ -63,14 +63,14 @@ $translations = array(
        'Unable to upload a file.' => 'Ne morem naložiti datoteke.',
        'Maximum allowed file size is %sB.' => 'Največja velikost datoteke je %sB.',
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Preveliko podatkov za POST. Zmanjšajte število podatkov ali povečajte nastavitev za %s.',
-       
+
        'Export' => 'Izvozi',
        'Output' => 'Izhod rezultata',
        'open' => 'odpri',
        'save' => 'shrani',
        'Format' => 'Format',
        'Data' => 'Podatki',
-       
+
        'Database' => 'Baza',
        'Use' => 'Uporabi',
        'Select database' => 'Izberi bazo',
@@ -83,7 +83,7 @@ $translations = array(
        'Alter database' => 'Spremeni bazo',
        'Create database' => 'Ustvari bazo',
        'Database schema' => 'Shema baze',
-       
+
        // thousands separator - must contain single byte
        ',' => ' ',
        '0123456789' => '0123456789',
@@ -105,7 +105,7 @@ $translations = array(
        'Tables have been moved.' => 'Tabele so premaknjene.',
        'Copy' => 'Kopiraj',
        'Tables have been copied.' => 'Tabele so kopirane.',
-       
+
        'Routines' => 'Postopki',
        'Routine has been called, %d row(s) affected.' => array('Klican je bil postopek, spremenjena je %d vrstica.', 'Klican je bil postopek, spremenjeni sta %d vrstici.', 'Klican je bil postopek, spremenjene so %d vrstice.', 'Klican je bil postopek, spremenjenih je %d vrstic.'),
        'Call' => 'Pokliči',
@@ -118,7 +118,7 @@ $translations = array(
        'Alter function' => 'Spremeni funkcijo',
        'Alter procedure' => 'Spremeni postopek',
        'Return type' => 'Vračalni tip',
-       
+
        'Events' => 'Dogodki',
        'Event has been dropped.' => 'Dogodek je zavržen.',
        'Event has been altered.' => 'Dogodek je spremenjen.',
@@ -131,7 +131,7 @@ $translations = array(
        'Start' => 'Začetek',
        'End' => 'Konec',
        'On completion preserve' => 'Po zaključku ohrani',
-       
+
        'Tables' => 'Tabele',
        'Tables and views' => 'Tabele in pogledi',
        'Table' => 'Tabela',
@@ -159,26 +159,26 @@ $translations = array(
        'Move down' => 'Premakni dol',
        'Remove' => 'Odstrani',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Največje število dovoljenih polje je preseženo. Prosimo, povečajte %s.',
-       
+
        'Partition by' => 'Porazdeli po',
        'Partitions' => 'Porazdelitve',
        'Partition name' => 'Ime porazdelitve',
        'Values' => 'Vrednosti',
-       
+
        'View' => 'Pogledi',
        'View has been dropped.' => 'Pogled je zavržen.',
        'View has been altered.' => 'Pogled je spremenjen.',
        'View has been created.' => 'Pogled je ustvarjen.',
        'Alter view' => 'Spremeni pogled',
        'Create view' => 'Ustvari pogled',
-       
+
        'Indexes' => 'Indeksi',
        'Indexes have been altered.' => 'Indeksi so spremenjeni.',
        'Alter indexes' => 'Spremeni indekse',
        'Add next' => 'Dodaj naslednjega',
        'Index Type' => 'Tip indeksa',
        'Column (length)' => 'Stolpec (dolžina)',
-       
+
        'Foreign keys' => 'Tuji ključi',
        'Foreign key' => 'Tuj ključ',
        'Foreign key has been dropped.' => 'Tuj ključ je zavržen.',
@@ -194,7 +194,7 @@ $translations = array(
        'ON DELETE' => 'pri brisanju',
        'ON UPDATE' => 'pri posodabljanju',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Izvorni in ciljni stolpec mora imeti isti podatkovni tip. Obstajati mora indeks na ciljnih stolpcih in obstajati morajo referenčni podatki.',
-       
+
        'Triggers' => 'Sprožilniki',
        'Add trigger' => 'Dodaj sprožilnik',
        'Trigger has been dropped.' => 'Sprožilnik je odstranjen.',
@@ -205,7 +205,7 @@ $translations = array(
        'Time' => 'Čas',
        'Event' => 'Dogodek',
        'Name' => 'Naziv',
-       
+
        'select' => 'izberi',
        'Select' => 'Izberi',
        'Select data' => 'Izberi podatke',
@@ -226,14 +226,14 @@ $translations = array(
        'last' => 'Zadnja',
        'Whole result' => 'Cel razultat',
        '%d byte(s)' => array('%d bajt', '%d bajta', '%d bajti', '%d bajtov'),
-       
+
        'Import' => 'Uvozi',
        '%d row(s) have been imported.' => array('Uvožena je %d vrstica.', 'Uvoženi sta %d vrstici.', 'Uvožene so %d vrstice.', 'Uvoženih je %d vrstic.'),
-       
+
        // in-place editing in select
        'Ctrl+click on a value to modify it.' => 'Ctrl+klik na vrednost za urejanje.',
        'Use edit link to modify this value.' => 'Uporabite urejanje povezave za spreminjanje te vrednosti.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Predmet%s je vstavljen.',
        'Item has been deleted.' => 'Predmet je izbrisan.',
@@ -251,14 +251,14 @@ $translations = array(
        'Save and insert next' => 'Shrani in vstavi tekst',
        'Clone' => 'Kloniraj',
        'Delete' => 'Izbriši',
-       
+
        'E-mail' => 'E-mail',
        'From' => 'Od',
        'Subject' => 'Zadeva',
        'Attachments' => 'Priponke',
        'Send' => 'Pošlji',
        '%d e-mail(s) have been sent.' => array('Poslan je %d e-mail.', 'Poslana sta %d e-maila.', 'Poslani so %d e-maili.', 'Poslanih je %d e-mailov.'),
-       
+
        // data type descriptions
        'Numbers' => 'Števila',
        'Date and time' => 'Datum in čas',
@@ -268,18 +268,18 @@ $translations = array(
        'Network' => 'Mrežni',
        'Geometry' => 'Geometrčni',
        'Relations' => 'Relacijski',
-       
+
        'Editor' => 'Urejevalnik',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$6.$4.$1',
        // hint for date format - use language equivalents for day, month and year shortcuts
        '[yyyy]-mm-dd' => 'd.m.[rrrr]',
        'now' => 'zdaj',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Datoteka obstaja.',
        'Please use one of the extensions %s.' => 'Prosim, uporabite enega od dodatkov %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Spremeni shemo',
        'Create schema' => 'Ustvari shemo',
@@ -288,7 +288,7 @@ $translations = array(
        'Schema has been altered.' => 'Shema je spremenjena.',
        'Schema' => 'Shema',
        'Invalid schema.' => 'Neveljavna shema.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Sekvence',
        'Create sequence' => 'Ustvari sekvenco',
@@ -296,7 +296,7 @@ $translations = array(
        'Sequence has been created.' => 'Sekvence je ustvarjena.',
        'Sequence has been altered.' => 'Sekvence je spremenjena.',
        'Alter sequence' => 'Spremni sekvenco',
-       
+
        // PostgreSQL user types support
        'User types' => 'Uporabniški tipi',
        'Create type' => 'Ustvari tip',
index 916977eb89cea1a495f038a31f10670252b73110..63baedfbd58b3544b9cfda6d656168649abedf1a 100644 (file)
@@ -19,10 +19,10 @@ $translations = array(
        'Session expired, please login again.' => 'Сесія закінчилась, будь ласка, увійдіть в систему знову.',
        '%s version: %s through PHP extension %s' => 'Версія %s: %s з PHP-розширенням %s',
        'Refresh' => 'Оновити',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Привілеї',
        'Create user' => 'Створити користувача',
        'User has been dropped.' => 'Користувача було видалено.',
@@ -33,14 +33,14 @@ $translations = array(
        'Routine' => 'Процедура',
        'Grant' => 'Дозволити',
        'Revoke' => 'Заборонити',
-       
+
        'Process list' => 'Перелік процесів',
        '%d process(es) have been killed.' => array('Було завершено %d процес.', 'Було завершено %d процеси.', 'Було завершёно %d процесів.'),
        'Kill' => 'Завершити процес',
-       
+
        'Variables' => 'Змінні',
        'Status' => 'Статус',
-       
+
        'SQL command' => 'SQL запит',
        '%d query(s) executed OK.' => array('%d запит виконано успішно.', '%d запити виконано успішно.', '%d запитів виконано успішно.'),
        'Query executed OK, %d row(s) affected.' => array('Запит виконано успішно, змінено %d рядок.', 'Запит виконано успішно, змінено %d рядки.', 'Запит виконано успішно, змінено %d рядків.'),
@@ -54,7 +54,7 @@ $translations = array(
        'History' => 'Історія',
        'Clear' => 'Очистити',
        'Edit all' => 'Редагувати все',
-       
+
        'File upload' => 'Завантажити файл',
        'From server' => 'З сервера',
        'Webserver file %s' => 'Файл %s на вебсервері',
@@ -64,14 +64,14 @@ $translations = array(
        'Unable to upload a file.' => 'Неможливо завантажити файл.',
        'Maximum allowed file size is %sB.' => 'Максимально допустимий розмір файлу %sБ.',
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Занадто великий об\'єм POST-даних. Зменшіть об\'єм або збільшіть параметр директиви %s конфигурації.',
-       
+
        'Export' => 'Експорт',
        'Output' => 'Вихідні дані',
        'open' => 'відкрити',
        'save' => 'зберегти',
        'Format' => 'Формат',
        'Data' => 'Дані',
-       
+
        'Database' => 'База даних',
        'Use' => 'Обрати',
        'Select database' => 'Обрати базу даних',
@@ -84,10 +84,10 @@ $translations = array(
        'Alter database' => 'Змінити базу даних',
        'Create database' => 'Створити базу даних',
        'Database schema' => 'Схема бази даних',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Постійне посилання',
-       
+
        // thousands separator - must contain single byte
        ',' => ' ',
        '0123456789' => '0123456789',
@@ -109,7 +109,7 @@ $translations = array(
        'Tables have been moved.' => 'Таблиці було перенесено.',
        'Copy' => 'копіювати',
        'Tables have been copied.' => 'Таблиці було зкопійовано.',
-       
+
        'Routines' => 'Збережені процедури',
        'Routine has been called, %d row(s) affected.' => array('Була викликана процедура, %d запис було змінено.', 'Була викликана процедура, %d записи було змінено.', 'Була викликана процедура, %d записів було змінено.'),
        'Call' => 'Викликати',
@@ -122,7 +122,7 @@ $translations = array(
        'Alter function' => 'Змінити функцію',
        'Alter procedure' => 'Змінити процедуру',
        'Return type' => 'Тип, що повернеться',
-       
+
        'Events' => 'Події',
        'Event has been dropped.' => 'Подію було видалено.',
        'Event has been altered.' => 'Подію було змінено.',
@@ -135,7 +135,7 @@ $translations = array(
        'Start' => 'Початок',
        'End' => 'Кінець',
        'On completion preserve' => 'Після завершення зберегти',
-       
+
        'Tables' => 'Таблиці',
        'Tables and views' => 'Таблиці і вигляди',
        'Table' => 'Таблиця',
@@ -164,26 +164,26 @@ $translations = array(
        'Move down' => 'Пересунути вниз',
        'Remove' => 'Видалити',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Досягнута максимальна кількість доступних полів. Будь ласка, збільшіть %s.',
-       
+
        'Partition by' => 'Розділити по',
        'Partitions' => 'Розділи',
        'Partition name' => 'Назва розділу',
        'Values' => 'Значення',
-       
+
        'View' => 'Вигляд',
        'View has been dropped.' => 'Вигляд було видалено.',
        'View has been altered.' => 'Вигляд було змінено.',
        'View has been created.' => 'Вигляд було створено.',
        'Alter view' => 'Змінити вигляд',
        'Create view' => 'Створити вигляд',
-       
+
        'Indexes' => 'Індекси',
        'Indexes have been altered.' => 'Індексування було змінено.',
        'Alter indexes' => 'Змінити індексування',
        'Add next' => 'Додати ще',
        'Index Type' => 'Тип індексу',
        'Column (length)' => 'Стовпець (довжина)',
-       
+
        'Foreign keys' => 'Зовнішні ключі',
        'Foreign key' => 'Зовнішній ключ',
        'Foreign key has been dropped.' => 'Зовнішній ключ було видалено.',
@@ -199,7 +199,7 @@ $translations = array(
        'ON DELETE' => 'ПРИ ВИДАЛЕННІ',
        'ON UPDATE' => 'ПРИ ЗМІНІ',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Стовпці повинні мати той самий тип даних, цільові стовпці повинні бути проіндексовані і дані, на які посилаються повинні існувати.',
-       
+
        'Triggers' => 'Тригери',
        'Add trigger' => 'Додати тригер',
        'Trigger has been dropped.' => 'Тригер було видалено.',
@@ -210,7 +210,7 @@ $translations = array(
        'Time' => 'Час',
        'Event' => 'Подія',
        'Name' => 'Назва',
-       
+
        'select' => 'вибрати',
        'Select' => 'Вибрати',
        'Select data' => 'Вибрати дані',
@@ -231,14 +231,14 @@ $translations = array(
        'last' => 'остання',
        'Whole result' => 'Весь результат',
        '%d byte(s)' => array('%d байт', '%d байта', '%d байтів'),
-       
+
        'Import' => 'Імпортувати',
        '%d row(s) have been imported.' => array('%d рядок було імпортовано.', '%d рядки було імпортовано.', '%d рядків було імпортовано.'),
-       
+
        // in-place editing in select
        'Ctrl+click on a value to modify it.' => 'Ctrl+клікніть на значенні щоб змінити його.',
        'Use edit link to modify this value.' => 'Використовуйте посилання щоб змінити це значення.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Запис%s було вставлено.',
        'Item has been deleted.' => 'Запис було видалено.',
@@ -256,14 +256,14 @@ $translations = array(
        'Save and insert next' => 'Зберегти і вставити знову',
        'Clone' => 'Клонувати',
        'Delete' => 'Видалити',
-       
+
        'E-mail' => 'E-mail',
        'From' => 'Від',
        'Subject' => 'Заголовок',
        'Attachments' => 'Додатки',
        'Send' => 'Надіслати',
        '%d e-mail(s) have been sent.' => array('Було надіслано %d повідомлення.', 'Було надіслано %d повідомлення.', 'Було надіслано %d повідомлень.'),
-       
+
        // data type descriptions
        'Numbers' => 'Числа',
        'Date and time' => 'Дата і час',
@@ -273,7 +273,7 @@ $translations = array(
        'Network' => 'Мережа',
        'Geometry' => 'Геометрія',
        'Relations' => 'Зв\'язки',
-       
+
        'Editor' => 'Редактор',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$5.$3.$1',
@@ -284,11 +284,11 @@ $translations = array(
        'now' => 'зараз',
        'yes' => 'так',
        'no' => 'ні',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Файл існує.',
        'Please use one of the extensions %s.' => 'Будь ласка, використовуйте одне з розширень %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Змінити схему',
        'Create schema' => 'Створити схему',
@@ -297,7 +297,7 @@ $translations = array(
        'Schema has been altered.' => 'Схему було змінено.',
        'Schema' => 'Схема',
        'Invalid schema.' => 'Невірна схема.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Послідовності',
        'Create sequence' => 'Створити послідовність',
@@ -305,7 +305,7 @@ $translations = array(
        'Sequence has been created.' => 'Послідовність було створено.',
        'Sequence has been altered.' => 'Послідовність було змінено.',
        'Alter sequence' => 'Змінити послідовність',
-       
+
        // PostgreSQL user types support
        'User types' => 'Типи користувачів',
        'Create type' => 'Створити тип',
index cfade4a8ad6ad52248fce62f3e457308b3cc2fc7..1347c7e2a8e603a68bbfc5239a647fd7ad9726e9 100644 (file)
@@ -21,10 +21,10 @@ $translations = array(
        'Session expired, please login again.' => 'Phiên làm việc đã hết, hãy đăng nhập lại.',
        '%s version: %s through PHP extension %s' => 'Phiên bản %s: %s (PHP extension: %s)',
        'Refresh' => 'Làm mới',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => 'Quyền truy cập',
        'Create user' => 'Tạo người dùng',
        'User has been dropped.' => 'Đã xoá người dùng.',
@@ -35,14 +35,14 @@ $translations = array(
        'Routine' => 'Hàm tích hợp',
        'Grant' => 'Cấp quyền',
        'Revoke' => 'Tước quyền',
-       
+
        'Process list' => 'Danh sách tiến trình',
        '%d process(es) have been killed.' => '%d tiến trình đã dừng.',
        'Kill' => 'Dừng',
-       
+
        'Variables' => 'Biến',
        'Status' => 'Trạng thái',
-       
+
        'SQL command' => 'Câu lệnh SQL',
        '%d query(s) executed OK.' => '%d câu lệnh đã chạy thành công.',
        'Query executed OK, %d row(s) affected.' => 'Đã thực hiện xong, ảnh hưởng đến %d dòng.',
@@ -56,7 +56,7 @@ $translations = array(
        'History' => 'Lịch sử',
        'Clear' => 'Xoá',
        'Edit all' => 'Sửa tất cả',
-       
+
        'File upload' => 'Tải tệp lên',
        'From server' => 'Dùng tệp trên máy chủ',
        'Webserver file %s' => 'Tệp trên máy chủ',
@@ -67,14 +67,14 @@ $translations = array(
        'Maximum allowed file size is %sB.' => 'Kích thước tệp tối đa là %sB.',
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Dữ liệu tải lên/POST quá lớn. Hãy giảm kích thước tệp hoặc tăng cấu hình (hiện tại %s).',
        'You can upload a big SQL file via FTP and import it from server.' => 'Bạn có thể tải tệp lên dùng FTP và nhập vào cơ sở dữ liệu.',
-       
+
        'Export' => 'Xuất',
        'Output' => 'Kết quả',
        'open' => 'xem',
        'save' => 'lưu',
        'Format' => 'Định dạng',
        'Data' => 'Dữ liệu',
-       
+
        'Database' => 'Cơ sở dữ liệu',
        'Use' => 'Sử dụng',
        'Select database' => 'Chọn CSDL',
@@ -87,10 +87,10 @@ $translations = array(
        'Alter database' => 'Thay đổi CSDL',
        'Create database' => 'Tạo CSDL',
        'Database schema' => 'Cấu trúc CSDL',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Liên kết cố định',
-       
+
        // thousands separator - must contain single byte
        ',' => ',',
        '0123456789' => '0123456789',
@@ -113,7 +113,7 @@ $translations = array(
        'Tables have been moved.' => 'Bảng.',
        'Copy' => 'Sao chép',
        'Tables have been copied.' => 'Bảng đã được sao chép.',
-       
+
        'Routines' => 'Routines',
        'Routine has been called, %d row(s) affected.' => 'Đã chạy routine, thay đổi %d dòng.',
        'Call' => 'Gọi',
@@ -138,7 +138,7 @@ $translations = array(
        'Start' => 'Bắt đầu',
        'End' => 'Kết thúc',
        'On completion preserve' => 'Khi kết thúc, duy trì',
-       
+
        'Tables' => 'Các bảng',
        'Tables and views' => 'Bảng và khung nhìn',
        'Table' => 'Bảng',
@@ -169,26 +169,26 @@ $translations = array(
        'Move down' => 'Chuyển xuống dưới',
        'Remove' => 'Xoá',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Thiết lập %s cần tăng thêm. (Đã vượt giới hạnố trường tối đa cho phép trong một biểu mẫu).',
-       
+
        'Partition by' => 'Phân chia bằng',
        'Partitions' => 'Phân hoạch',
        'Partition name' => 'Tên phân hoạch',
        'Values' => 'Giá trị',
-       
+
        'View' => 'Khung nhìn',
        'View has been dropped.' => 'Khung nhìn đã bị xoá.',
        'View has been altered.' => 'Khung nhìn đã được sửa.',
        'View has been created.' => 'Khung nhìn đã được tạo.',
        'Alter view' => 'Sửa khung nhìn',
        'Create view' => 'Tạo khung nhìn',
-       
+
        'Indexes' => 'Chỉ mục',
        'Indexes have been altered.' => 'Chỉ mục đã được sửa.',
        'Alter indexes' => 'Sửa chỉ mục',
        'Add next' => 'Thêm tiếp',
        'Index Type' => 'Loại chỉ mục',
        'Column (length)' => 'Cột (độ dài)',
-       
+
        'Foreign keys' => 'Các khoá ngoại',
        'Foreign key' => 'Khoá ngoại',
        'Foreign key has been dropped.' => 'Khoá ngoại đã bị xoá.',
@@ -204,7 +204,7 @@ $translations = array(
        'ON DELETE' => 'Khi xoá',
        'ON UPDATE' => 'Khi cập nhật',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Cột gốc và cột đích phải cùng kiểu, phải đặt chỉ mục trong cột đích và dữ liệu tham chiếu phải tồn tại.',
-       
+
        'Triggers' => 'Phản xạ',
        'Add trigger' => 'Thêm phản xạ',
        'Trigger has been dropped.' => 'Đã xoá phản xạ.',
@@ -215,7 +215,7 @@ $translations = array(
        'Time' => 'Thời gian',
        'Event' => 'Sự kiện',
        'Name' => 'Tên',
-       
+
        'select' => 'xem',
        'Select' => 'Xem',
        'Select data' => 'Xem dữ liệu',
@@ -239,16 +239,16 @@ $translations = array(
        'Loading' => 'Đang nạp',
        'Whole result' => 'Toàn bộ kết quả',
        '%d byte(s)' => '%d byte(s)',
-       
+
        'Import' => 'Nhập khẩu',
        '%d row(s) have been imported.' => 'Đã nhập % dòng dữ liệu.',
        'File must be in UTF-8 encoding.' => 'Tệp phải mã hoá bằng chuẩn UTF-8.',
-       
+
        // in-place editing in select
        'Modify' => 'Sửa',
        'Ctrl+click on a value to modify it.' => 'Nhấn Ctrl và bấm vào giá trị để sửa.',
        'Use edit link to modify this value.' => 'Dùng nút sửa để thay đổi giá trị này.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Đã thêm%s.',
        'Item has been deleted.' => 'Đã xoá.',
@@ -268,14 +268,14 @@ $translations = array(
        'Clone' => 'Sao chép',
        'Delete' => 'Xoá',
        'You have no privileges to update this table.' => 'Bạn không có quyền sửa bảng này.',
-       
+
        'E-mail' => 'Địa chỉ email',
        'From' => 'Người gửi',
        'Subject' => 'Chủ đề',
        'Attachments' => 'Đính kèm',
        'Send' => 'Gửi',
        '%d e-mail(s) have been sent.' => '%d thư đã gửi.',
-       
+
        // data type descriptions
        'Numbers' => 'Số',
        'Date and time' => 'Ngày giờ',
@@ -285,7 +285,7 @@ $translations = array(
        'Network' => 'Mạng',
        'Geometry' => 'Toạ độ',
        'Relations' => 'Quan hệ',
-       
+
        'Editor' => 'Biên tập',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$1-$3-$5',
@@ -296,11 +296,11 @@ $translations = array(
        'now' => 'hiện tại',
        'yes' => 'có',
        'no' => 'không',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Tệp đã có rồi.',
        'Please use one of the extensions %s.' => 'Cần phải dùng một trong các phần mở rộng sau: %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Thay đổi schema',
        'Create schema' => 'Tạo schema',
@@ -309,7 +309,7 @@ $translations = array(
        'Schema has been altered.' => 'Đã thay đổi schema.',
        'Schema' => 'Schema',
        'Invalid schema.' => 'Schema không hợp lệ.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Dãy số',
        'Create sequence' => 'Tạo dãy số',
@@ -317,7 +317,7 @@ $translations = array(
        'Sequence has been created.' => 'Đã tạo dãy số.',
        'Sequence has been altered.' => 'Đã sửa dãy số.',
        'Alter sequence' => 'Thay đổi dãy số',
-       
+
        // PostgreSQL user types support
        'User types' => 'Kiểu tự định nghĩa',
        'Create type' => 'Tạo kiểu',
index 0d7b19a5d5c4464fb8bddada4baf9b78dbff88cc..8ba3c5a691a6e34456c2f598451e3cc064f12372 100644 (file)
@@ -29,10 +29,10 @@ $translations = array(
        'The action will be performed after successful login with the same credentials.' => 'Xx.',
        '%s version: %s through PHP extension %s' => '%s xx: %s xx %s',
        'Refresh' => 'Xx',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'xx',
-       
+
        'Privileges' => 'Xx',
        'Create user' => 'Xx',
        'User has been dropped.' => 'Xx.',
@@ -43,14 +43,14 @@ $translations = array(
        'Routine' => 'Xx',
        'Grant' => 'Xx',
        'Revoke' => 'Xx',
-       
+
        'Process list' => 'Xx',
        '%d process(es) have been killed.' => array('%d xx.', '%d xx.'),
        'Kill' => 'Xx',
-       
+
        'Variables' => 'Xx',
        'Status' => 'Xx',
-       
+
        'SQL command' => 'Xx',
        '%d query(s) executed OK.' => array('%d xx.', '%d xx.'),
        'Query executed OK, %d row(s) affected.' => array('Xx, %d.', 'Xx, %d.'),
@@ -67,7 +67,7 @@ $translations = array(
        'History' => 'Xx',
        'Clear' => 'Xx',
        'Edit all' => 'Xx',
-       
+
        'File upload' => 'Xx',
        'From server' => 'Xx',
        'Webserver file %s' => 'Xx %s',
@@ -79,7 +79,7 @@ $translations = array(
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'Xx %s.',
        'You can upload a big SQL file via FTP and import it from server.' => 'Xx.',
        'You are offline.' => 'Xx.',
-       
+
        'Export' => 'Xx',
        'Output' => 'Xx',
        'open' => 'xx',
@@ -87,7 +87,7 @@ $translations = array(
        'Saving' => 'Xx',
        'Format' => 'Xx',
        'Data' => 'Xx',
-       
+
        'Database' => 'Xx',
        'DB' => 'XX',
        'Use' => 'Xx',
@@ -101,10 +101,10 @@ $translations = array(
        'Alter database' => 'Xx',
        'Create database' => 'Xx',
        'Database schema' => 'Xx',
-       
+
        // link to current database schema layout
        'Permanent link' => 'Xx',
-       
+
        // thousands separator - must contain single byte
        ',' => 'x',
        '0123456789' => 'xxxxxxxxxx',
@@ -128,7 +128,7 @@ $translations = array(
        'Copy' => 'Xx',
        'Tables have been copied.' => 'Xx.',
        'overwrite' => 'xx',
-       
+
        'Routines' => 'Xx',
        'Routine has been called, %d row(s) affected.' => array('Xx, %d.', 'Xx, %d.'),
        'Call' => 'Xx',
@@ -141,7 +141,7 @@ $translations = array(
        'Alter function' => 'Xx',
        'Alter procedure' => 'Xx',
        'Return type' => 'Xx',
-       
+
        'Events' => 'Xx',
        'Event has been dropped.' => 'Xx.',
        'Event has been altered.' => 'Xx.',
@@ -154,7 +154,7 @@ $translations = array(
        'Start' => 'Xx',
        'End' => 'Xx',
        'On completion preserve' => 'Xx',
-       
+
        'Tables' => 'Xx',
        'Tables and views' => 'Xx',
        'Table' => 'Xx',
@@ -187,12 +187,12 @@ $translations = array(
        'Move down' => 'Xx',
        'Remove' => 'Xx',
        'Maximum number of allowed fields exceeded. Please increase %s.' => 'Xx %s.',
-       
+
        'Partition by' => 'Xx',
        'Partitions' => 'Xx',
        'Partition name' => 'Xx',
        'Values' => 'Xx',
-       
+
        'View' => 'Xx',
        'Materialized view' => 'Xx',
        'View has been dropped.' => 'Xx.',
@@ -200,14 +200,14 @@ $translations = array(
        'View has been created.' => 'Xx.',
        'Alter view' => 'Xx',
        'Create view' => 'Xx',
-       
+
        'Indexes' => 'Xx',
        'Indexes have been altered.' => 'Xx.',
        'Alter indexes' => 'Xx',
        'Add next' => 'Xx',
        'Index Type' => 'Xx',
        'Column (length)' => 'Xx',
-       
+
        'Foreign keys' => 'Xx',
        'Foreign key' => 'Xx',
        'Foreign key has been dropped.' => 'Xx.',
@@ -223,7 +223,7 @@ $translations = array(
        'ON DELETE' => 'Xx',
        'ON UPDATE' => 'Xx',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => 'Xx.',
-       
+
        'Triggers' => 'Xx',
        'Add trigger' => 'Xx',
        'Trigger has been dropped.' => 'Xx.',
@@ -234,7 +234,7 @@ $translations = array(
        'Time' => 'Xx',
        'Event' => 'Xx',
        'Name' => 'Xx',
-       
+
        'select' => 'xx',
        'Select' => 'Xx',
        'Select data' => 'Xx',
@@ -260,16 +260,16 @@ $translations = array(
        'Loading' => 'Xx',
        'Whole result' => 'Xx',
        '%d byte(s)' => array('%d xx', '%d xx'),
-       
+
        'Import' => 'Xx',
        '%d row(s) have been imported.' => array('%d xx.', '%d xx.'),
        'File must be in UTF-8 encoding.' => 'Xx.',
-       
+
        // in-place editing in select
        'Modify' => 'Xx',
        'Ctrl+click on a value to modify it.' => 'Xx.',
        'Use edit link to modify this value.' => 'Xx.',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => 'Xx%s.',
        'Item has been deleted.' => 'Xx.',
@@ -289,14 +289,14 @@ $translations = array(
        'Clone' => 'Xx',
        'Delete' => 'Xx',
        'You have no privileges to update this table.' => 'Xx.',
-       
+
        'E-mail' => 'Xx',
        'From' => 'Xx',
        'Subject' => 'Xx',
        'Attachments' => 'Xx',
        'Send' => 'Xx',
        '%d e-mail(s) have been sent.' => array('%d xx.', '%d xx.'),
-       
+
        // data type descriptions
        'Numbers' => 'Xx',
        'Date and time' => 'Xx',
@@ -306,7 +306,7 @@ $translations = array(
        'Network' => 'Xx',
        'Geometry' => 'Xx',
        'Relations' => 'Xx',
-       
+
        'Editor' => 'Xx',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => 'xx',
@@ -317,11 +317,11 @@ $translations = array(
        'now' => 'xx',
        'yes' => 'xx',
        'no' => 'xx',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => 'Xx.',
        'Please use one of the extensions %s.' => 'Xx %s.',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => 'Xx',
        'Create schema' => 'Xx',
@@ -330,7 +330,7 @@ $translations = array(
        'Schema has been altered.' => 'Xx.',
        'Schema' => 'Xx',
        'Invalid schema.' => 'Xx.',
-       
+
        // PostgreSQL sequences support
        'Sequences' => 'Xx',
        'Create sequence' => 'Xx',
@@ -338,7 +338,7 @@ $translations = array(
        'Sequence has been created.' => 'Xx.',
        'Sequence has been altered.' => 'Xx.',
        'Alter sequence' => 'Xx',
-       
+
        // PostgreSQL user types support
        'User types' => 'Xx',
        'Create type' => 'Xx',
index ac36648fc7b736394fdee2a792963c4b28fc4ede..64e324f05be642d3b0a7261e307a809750762f27 100644 (file)
@@ -29,10 +29,10 @@ $translations = array(
        'The action will be performed after successful login with the same credentials.' => '此操作將在成功使用相同的憑據登錄後執行。',
        '%s version: %s through PHP extension %s' => '%s 版本:%s 透過 PHP 擴充模組 %s',
        'Refresh' => '重新載入',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
-       
+
        'Privileges' => '權限',
        'Create user' => '建立使用者',
        'User has been dropped.' => '已刪除使用者。',
@@ -43,14 +43,14 @@ $translations = array(
        'Routine' => '程序',
        'Grant' => '授權',
        'Revoke' => '廢除',
-       
+
        'Process list' => '處理程序列表',
        '%d process(es) have been killed.' => '%d 個 Process(es) 被終止',
        'Kill' => '終止',
-       
+
        'Variables' => '變數',
        'Status' => '狀態',
-       
+
        'SQL command' => 'SQL 命令',
        '%d query(s) executed OK.' => '已順利執行 %d 個查詢。',
        'Query executed OK, %d row(s) affected.' => '執行查詢 OK,%d 行受影響。',
@@ -67,7 +67,7 @@ $translations = array(
        'History' => '紀錄',
        'Clear' => '清除',
        'Edit all' => '編輯全部',
-       
+
        'File upload' => '檔案上傳',
        'From server' => '從伺服器',
        'Webserver file %s' => '網頁伺服器檔案 %s',
@@ -79,7 +79,7 @@ $translations = array(
        'Too big POST data. Reduce the data or increase the %s configuration directive.' => 'POST 資料太大。減少資料或者增加 %s 的設定值。',
        'You can upload a big SQL file via FTP and import it from server.' => '您可以通過FTP上傳大型SQL檔並從伺服器導入。',
        'You are offline.' => '您離線了。',
-       
+
        'Export' => '匯出',
        'Output' => '輸出',
        'open' => '打開',
@@ -87,7 +87,7 @@ $translations = array(
        'Saving' => '保存中',
        'Format' => '格式',
        'Data' => '資料',
-       
+
        'Database' => '資料庫',
        'DB' => '資料庫',
        'Use' => '使用',
@@ -101,10 +101,10 @@ $translations = array(
        'Alter database' => '修改資料庫',
        'Create database' => '建立資料庫',
        'Database schema' => '資料庫結構',
-       
+
        // link to current database schema layout
        'Permanent link' => '永久連結',
-       
+
        // thousands separator - must contain single byte
        ',' => ',',
        '0123456789' => '0123456789',
@@ -128,7 +128,7 @@ $translations = array(
        'Copy' => '複製',
        'Tables have been copied.' => '資料表已經複製',
        'overwrite' => '覆蓋',
-       
+
        'Routines' => '程序',
        'Routine has been called, %d row(s) affected.' => '程序已被執行,%d 行被影響',
        'Call' => '呼叫',
@@ -141,7 +141,7 @@ $translations = array(
        'Alter function' => '修改函式',
        'Alter procedure' => '修改預存程序',
        'Return type' => '回傳類型',
-       
+
        'Events' => '事件',
        'Event has been dropped.' => '已刪除事件。',
        'Event has been altered.' => '已修改事件。',
@@ -154,7 +154,7 @@ $translations = array(
        'Start' => '開始',
        'End' => '結束',
        'On completion preserve' => '在完成後儲存',
-       
+
        'Tables' => '資料表',
        'Tables and views' => '資料表和檢視表',
        'Table' => '資料表',
@@ -187,12 +187,12 @@ $translations = array(
        'Move down' => '下移',
        'Remove' => '移除',
        'Maximum number of allowed fields exceeded. Please increase %s.' => '超過允許的字段數量的最大值。請增加 %s。',
-       
+
        'Partition by' => '分區類型',
        'Partitions' => '分區',
        'Partition name' => '分區名稱',
        'Values' => '值',
-       
+
        'View' => '檢視表',
        'Materialized view' => '物化視圖',
        'View has been dropped.' => '已刪除檢視表。',
@@ -200,14 +200,14 @@ $translations = array(
        'View has been created.' => '已建立檢視表。',
        'Alter view' => '修改檢視表',
        'Create view' => '建立檢視表',
-       
+
        'Indexes' => '索引',
        'Indexes have been altered.' => '已修改索引。',
        'Alter indexes' => '修改索引',
        'Add next' => '新增下一筆',
        'Index Type' => '索引類型',
        'Column (length)' => '欄位(長度)',
-       
+
        'Foreign keys' => '外來鍵',
        'Foreign key' => '外來鍵',
        'Foreign key has been dropped.' => '已刪除外來鍵。',
@@ -223,7 +223,7 @@ $translations = array(
        'ON DELETE' => 'ON DELETE',
        'ON UPDATE' => 'ON UPDATE',
        'Source and target columns must have the same data type, there must be an index on the target columns and referenced data must exist.' => '來源列和目標列必須具有相同的資料類型,在目標列上必須有一個索引並且引用的資料必須存在。',
-       
+
        'Triggers' => '觸發器',
        'Add trigger' => '建立觸發器',
        'Trigger has been dropped.' => '已刪除觸發器。',
@@ -234,7 +234,7 @@ $translations = array(
        'Time' => '時間',
        'Event' => '事件',
        'Name' => '名稱',
-       
+
        'select' => '選擇',
        'Select' => '選擇',
        'Select data' => '選擇資料',
@@ -260,16 +260,16 @@ $translations = array(
        'Loading' => '載入中',
        'Whole result' => '所有結果',
        '%d byte(s)' => '%d byte(s)',
-       
+
        'Import' => '匯入',
        '%d row(s) have been imported.' => '已匯入 %d 行。',
        'File must be in UTF-8 encoding.' => '檔必須使用UTF-8編碼。',
-       
+
        // in-place editing in select
        'Modify' => '修改',
        'Ctrl+click on a value to modify it.' => '按住Ctrl並按一下某個值進行修改。',
        'Use edit link to modify this value.' => '使用編輯連結來修改。',
-       
+
        // %s can contain auto-increment value
        'Item%s has been inserted.' => '已新增項目 %s。',
        'Item has been deleted.' => '該項目已被刪除',
@@ -289,14 +289,14 @@ $translations = array(
        'Clone' => '複製',
        'Delete' => '刪除',
        'You have no privileges to update this table.' => '您沒有許可權更新這個資料表。',
-       
+
        'E-mail' => '電子郵件',
        'From' => '來自',
        'Subject' => '主旨',
        'Attachments' => '附件',
        'Send' => '寄出',
        '%d e-mail(s) have been sent.' => '已寄出 %d 封郵件。',
-       
+
        // data type descriptions
        'Numbers' => '數字',
        'Date and time' => '日期時間',
@@ -306,7 +306,7 @@ $translations = array(
        'Network' => '網路',
        'Geometry' => '幾何',
        'Relations' => '關聯',
-       
+
        'Editor' => '編輯器',
        // date format in Editor: $1 yyyy, $2 yy, $3 mm, $4 m, $5 dd, $6 d
        '$1-$3-$5' => '$1.$3.$5',
@@ -317,11 +317,11 @@ $translations = array(
        'now' => '現在',
        'yes' => '是',
        'no' => '否',
-       
+
        // general SQLite error in create, drop or rename database
        'File exists.' => '檔案已存在。',
        'Please use one of the extensions %s.' => '請使用下列其中一個擴充模組 %s。',
-       
+
        // PostgreSQL and MS SQL schema support
        'Alter schema' => '修改資料表結構',
        'Create schema' => '建立資料表結構',
@@ -330,7 +330,7 @@ $translations = array(
        'Schema has been altered.' => '已修改資料表結構。',
        'Schema' => '資料表結構',
        'Invalid schema.' => '無效的資料表結構。',
-       
+
        // PostgreSQL sequences support
        'Sequences' => '序列',
        'Create sequence' => '建立序列',
@@ -338,7 +338,7 @@ $translations = array(
        'Sequence has been created.' => '已建立序列。',
        'Sequence has been altered.' => '已修改序列。',
        'Alter sequence' => '修改序列',
-       
+
        // PostgreSQL user types support
        'User types' => '使用者類型',
        'Create type' => '建立類型',
index c009098b3f19de17f1203d5705b686abf00b9e33..bf7a89d22e2ece3c10e805cd8b13fa39fbe88488 100644 (file)
@@ -29,7 +29,7 @@ $translations = array(
        'The action will be performed after successful login with the same credentials.' => '此操作将在成功使用相同的凭据登录后执行。',
        '%s version: %s through PHP extension %s' => '%s 版本:%s, 使用PHP扩展 %s',
        'Refresh' => '刷新',
-       
+
        // text direction - 'ltr' or 'rtl'
        'ltr' => 'ltr',
 
index f092d88c0b99501e2a96d86ba851b993ff0c3e69..17e0c38df9039b5cdb9f9dfb2f7809e89ee2f5cc 100644 (file)
@@ -61,12 +61,12 @@ foreach ($schema as $name => $table) {
        echo "<div class='table' style='top: " . $table["pos"][0] . "em; left: " . $table["pos"][1] . "em;'>";
        echo '<a href="' . h(ME) . 'table=' . urlencode($name) . '"><b>' . h($name) . "</b></a>";
        echo script("qsl('div').onmousedown = schemaMousedown;");
-       
+
        foreach ($table["fields"] as $field) {
                $val = '<span' . type_class($field["type"]) . ' title="' . h($field["full_type"] . ($field["null"] ? " NULL" : '')) . '">' . h($field["field"]) . '</span>';
                echo "<br>" . ($field["primary"] ? "<i>$val</i>" : $val);
        }
-       
+
        foreach ((array) $table["references"] as $target_name => $refs) {
                foreach ($refs as $left => $ref) {
                        $left1 = $left - $table_pos[$name][1];
@@ -76,7 +76,7 @@ foreach ($schema as $name => $table) {
                        }
                }
        }
-       
+
        foreach ((array) $referenced[$name] as $target_name => $refs) {
                foreach ($refs as $left => $columns) {
                        $left1 = $left - $table_pos[$name][1];
@@ -86,7 +86,7 @@ foreach ($schema as $name => $table) {
                        }
                }
        }
-       
+
        echo "\n</div>\n";
 }
 
index ca2c3d41b03086b74be354e324d42fd540a2af49..e9587987930deb9cbc3415f9b42c6b58e94b6c07 100644 (file)
@@ -233,7 +233,7 @@ if (!isset($_GET["import"])) {
        echo script(($_POST ? "" : "qs('textarea').focus();\n") . "qs('#form').onsubmit = partial(sqlSubmit, qs('#form'), '" . js_escape(remove_from_uri("sql|limit|error_stops|only_errors|history")) . "');");
        echo "<p>$execute\n";
        echo lang('Limit rows') . ": <input type='number' name='limit' class='size' value='" . h($_POST ? $_POST["limit"] : $_GET["limit"]) . "'>\n";
-       
+
 } else {
        echo "<fieldset><legend>" . lang('File upload') . "</legend><div>";
        $gz = (extension_loaded("zlib") ? "[.gz]" : "");
index 1117c0ca48cc86c408e90bbab8ca100b5899217f..d1d278847d06131cad2dd7fe0e1b1a15ec06fc5f 100755 (executable)
@@ -191,7 +191,7 @@ function php_shrink($input) {
        $short_variables = array();
        $shortening = true;
        $tokens = token_get_all($input);
-       
+
        // remove unnecessary { }
        //! change also `while () { if () {;} }` to `while () if () ;` but be careful about `if () { if () { } } else { }
        $shorten = 0;
@@ -218,13 +218,13 @@ function php_shrink($input) {
                }
        }
        $tokens = array_values($tokens);
-       
+
        foreach ($tokens as $i => $token) {
                if ($token[0] === T_VARIABLE && !isset($special_variables[$token[1]])) {
                        $short_variables[$token[1]]++;
                }
        }
-       
+
        arsort($short_variables);
        $chars = implode(range('a', 'z')) . '_' . implode(range('A', 'Z'));
        // preserve variable names between versions if possible
@@ -235,7 +235,7 @@ function php_shrink($input) {
        foreach (array_keys($short_variables) as $number => $key) {
                $short_variables[$key] = short_identifier($number, $chars); // could use also numbers and \x7f-\xff
        }
-       
+
        $set = array_flip(preg_split('//', '!"#$%&\'()*+,-./:;<=>?@[]^`{|}'));
        $space = '';
        $output = '';
index 493e011c0f75c52fa3362c7083c084eca0293fa1..394da5334d470c69deafe22ca91e8a1f75fac2ed 100644 (file)
-* {\r
-       font: 11px/1.25 Verdana, 'Geneva CE', lucida, sans-serif;\r
-       color:#333333;\r
-       margin:0px;\r
-       padding:0px;\r
-}\r
-\r
-a,a:visited {\r
-       color:#0033ff;\r
-       text-decoration:none;\r
-       padding:3px 1px;\r
-}\r
-\r
-#content table thead span, #content table thead a {\r
-       font-weight:bold;\r
-       color:black;\r
-}\r
-\r
-#content table thead a:hover {\r
-       background:none;\r
-       text-decoration:underline;\r
-       color:black;\r
-}\r
-\r
-a:hover {\r
-       color:white;\r
-       background:#0033ff;\r
-}\r
-\r
-h1 {\r
-       font-size:1.5em;\r
-       line-height: 2em;\r
-       font-weight:bold;\r
-       background:white;\r
-       color:#1e5eb6;\r
-       border-bottom:1px solid #f4f4f4;\r
-\r
-       padding:20px;\r
-       margin:0px;\r
-}\r
-\r
-#menu h1 {\r
-       padding:0px 0px 5px 20px;\r
-       background:none;\r
-}\r
-\r
-h2,h3 {\r
-       font-size:1.5em;\r
-       font-weight:normal;\r
-       background:white;\r
-       color:#A0522D;\r
-       border-bottom:1px solid #f4f4f4;\r
-       padding:5px 0px;\r
-       margin:0px;\r
-}\r
-\r
-fieldset {\r
-       padding:5px;\r
-       border:1px solid #d0cdc4;\r
-       background:#fcfaf5;\r
-}\r
-\r
-input,select,textarea {\r
-       border:1px solid #e5e5e5;\r
-       margin:1px;\r
-       padding:3px;\r
-}\r
-\r
-input[type=submit] {\r
-       color:white;\r
-       background:#A0522D;\r
-       padding:3px 10px;\r
-       cursor:pointer;\r
-       border:0px solid;\r
-}\r
-\r
-input[type=submit]:hover{\r
-       background:blue;\r
-}\r
-\r
-input[type=checkbox]{\r
-       margin-right:5px;\r
-}\r
-\r
-input[type=image] {\r
-       border:1px solid #d0cdc4;\r
-}\r
-\r
-input[type=checkbox],input[type=radio]{\r
-       border:1px solid #e5e5e5;\r
-       padding:2px 5px;\r
-}\r
-\r
-code{\r
-       background:#f0ffe1;\r
-       border:1px dashed #d5f1b9;\r
-       padding:2px 4px;\r
-       font-family:"Courier New";\r
-}\r
-code a:hover{background:transparent}\r
-\r
-table{\r
-       margin:10px 0px;\r
-       border:1px solid #d0cdc4;\r
-       border-collapse:collapse;\r
-}\r
-\r
-tbody tr:hover td,tbody tr:hover th{\r
-       background:#edf4ff\r
-}\r
-\r
-thead th, thead td {\r
-       text-align:center;\r
-       vertical-align:middle;\r
-       font-weight:bold;\r
-       white-space:nowrap;\r
-       background:#f2eee1;\r
-       color:#808080;\r
-}\r
-\r
-th,td{\r
-       border:1px solid #d0cdc4;\r
-       padding:1px 4px;\r
-       vertical-align:middle;\r
-}\r
-\r
-th a {\r
-       font-weight:bold;\r
-       padding-bottom:0px;\r
-}\r
-\r
-th {\r
-       background:white;\r
-}\r
-\r
-tr.odd td {\r
-       background:#fcfaf5;\r
-}\r
-\r
-#content tbody tr.checked td, tr.checked.odd td {\r
-       background:#fbe2e2;\r
-       color:red;\r
-}\r
-\r
-.hidden{\r
-       display:none\r
-}\r
-\r
-.error,.message{\r
-       padding:0px;\r
-       background:transparent;\r
-       font-weight:bold\r
-}\r
-\r
-.error{\r
-       color:#c00\r
-}\r
-\r
-.message{\r
-       color:#090\r
-}\r
-\r
-#content{\r
-       margin:0px 0px 0px 255px;\r
-       padding:50px 20px 40px 0px;\r
-       height:100%;\r
-}\r
-\r
-#lang {\r
-       background:#f2eee1;\r
-       color:#808080;\r
-       position:fixed;\r
-       top:0px;\r
-       left:0px;\r
-       width:100%;\r
-       padding:10px 20px;\r
-       z-index:1;\r
-}\r
-\r
-#breadcrumb {\r
-       position:fixed;\r
-       top:0px;\r
-       left:260px;\r
-       background:#f2eee1;\r
-       z-index:2;\r
-       width:100%;\r
-       padding:10px;\r
-}\r
-\r
-#menu {\r
-       background:#fcfaf5;\r
-       position:fixed;\r
-       top:-10px;\r
-       padding:0px;\r
-       padding-top:10px;\r
-       bottom:0px;\r
-       overflow:auto;\r
-       left:0px;\r
-       width:240px;\r
-       border-right:5px solid #f2eee1;\r
-}\r
-\r
-#schema .table {\r
-       padding:5px;\r
-       background:#fcfaf5;\r
-       border:1px solid #d0cdc4;\r
-}\r
-\r
-#schema .table b {\r
-       color:#0033ff;\r
-       font-weight:bold;\r
-       text-decoration:underline;\r
-}\r
-\r
-#schema .table b:hover {\r
-       color:white;\r
-}\r
-\r
-input[name=logout] {\r
-       color:#fce2e2;\r
-       background:#d73e3e;\r
-}\r
-\r
-input[name=logout]:hover {\r
-       background:#ea0202;\r
-}\r
-\r
-#logins a, #tables a { \r
-       background:none;\r
-}\r
-\r
-#logins a:hover, #tables a:hover { \r
-       background:#A0522D;\r
-       color:white;\r
-}\r
-\r
-#logout {\r
-       color:#0033ff;\r
-       text-decoration:none;\r
-}\r
-\r
-#logout:hover {\r
-       color:white;\r
-       background:#0033ff;\r
-}\r
-\r
-.js .column {\r
-       background:#f2eee1;\r
-}\r
-\r
-#content table thead a.text:hover {\r
-       text-decoration:none;\r
-}\r
-\r
-#version, .version {\r
-       font-size:50%;\r
-}\r
-\r
-#h1:hover {\r
-       color:white;\r
-}\r
+* {
+       font: 11px/1.25 Verdana, 'Geneva CE', lucida, sans-serif;
+       color:#333333;
+       margin:0px;
+       padding:0px;
+}
+
+a,a:visited {
+       color:#0033ff;
+       text-decoration:none;
+       padding:3px 1px;
+}
+
+#content table thead span, #content table thead a {
+       font-weight:bold;
+       color:black;
+}
+
+#content table thead a:hover {
+       background:none;
+       text-decoration:underline;
+       color:black;
+}
+
+a:hover {
+       color:white;
+       background:#0033ff;
+}
+
+h1 {
+       font-size:1.5em;
+       line-height: 2em;
+       font-weight:bold;
+       background:white;
+       color:#1e5eb6;
+       border-bottom:1px solid #f4f4f4;
+
+       padding:20px;
+       margin:0px;
+}
+
+#menu h1 {
+       padding:0px 0px 5px 20px;
+       background:none;
+}
+
+h2,h3 {
+       font-size:1.5em;
+       font-weight:normal;
+       background:white;
+       color:#A0522D;
+       border-bottom:1px solid #f4f4f4;
+       padding:5px 0px;
+       margin:0px;
+}
+
+fieldset {
+       padding:5px;
+       border:1px solid #d0cdc4;
+       background:#fcfaf5;
+}
+
+input,select,textarea {
+       border:1px solid #e5e5e5;
+       margin:1px;
+       padding:3px;
+}
+
+input[type=submit] {
+       color:white;
+       background:#A0522D;
+       padding:3px 10px;
+       cursor:pointer;
+       border:0px solid;
+}
+
+input[type=submit]:hover{
+       background:blue;
+}
+
+input[type=checkbox]{
+       margin-right:5px;
+}
+
+input[type=image] {
+       border:1px solid #d0cdc4;
+}
+
+input[type=checkbox],input[type=radio]{
+       border:1px solid #e5e5e5;
+       padding:2px 5px;
+}
+
+code{
+       background:#f0ffe1;
+       border:1px dashed #d5f1b9;
+       padding:2px 4px;
+       font-family:"Courier New";
+}
+code a:hover{background:transparent}
+
+table{
+       margin:10px 0px;
+       border:1px solid #d0cdc4;
+       border-collapse:collapse;
+}
+
+tbody tr:hover td,tbody tr:hover th{
+       background:#edf4ff
+}
+
+thead th, thead td {
+       text-align:center;
+       vertical-align:middle;
+       font-weight:bold;
+       white-space:nowrap;
+       background:#f2eee1;
+       color:#808080;
+}
+
+th,td{
+       border:1px solid #d0cdc4;
+       padding:1px 4px;
+       vertical-align:middle;
+}
+
+th a {
+       font-weight:bold;
+       padding-bottom:0px;
+}
+
+th {
+       background:white;
+}
+
+tr.odd td {
+       background:#fcfaf5;
+}
+
+#content tbody tr.checked td, tr.checked.odd td {
+       background:#fbe2e2;
+       color:red;
+}
+
+.hidden{
+       display:none
+}
+
+.error,.message{
+       padding:0px;
+       background:transparent;
+       font-weight:bold
+}
+
+.error{
+       color:#c00
+}
+
+.message{
+       color:#090
+}
+
+#content{
+       margin:0px 0px 0px 255px;
+       padding:50px 20px 40px 0px;
+       height:100%;
+}
+
+#lang {
+       background:#f2eee1;
+       color:#808080;
+       position:fixed;
+       top:0px;
+       left:0px;
+       width:100%;
+       padding:10px 20px;
+       z-index:1;
+}
+
+#breadcrumb {
+       position:fixed;
+       top:0px;
+       left:260px;
+       background:#f2eee1;
+       z-index:2;
+       width:100%;
+       padding:10px;
+}
+
+#menu {
+       background:#fcfaf5;
+       position:fixed;
+       top:-10px;
+       padding:0px;
+       padding-top:10px;
+       bottom:0px;
+       overflow:auto;
+       left:0px;
+       width:240px;
+       border-right:5px solid #f2eee1;
+}
+
+#schema .table {
+       padding:5px;
+       background:#fcfaf5;
+       border:1px solid #d0cdc4;
+}
+
+#schema .table b {
+       color:#0033ff;
+       font-weight:bold;
+       text-decoration:underline;
+}
+
+#schema .table b:hover {
+       color:white;
+}
+
+input[name=logout] {
+       color:#fce2e2;
+       background:#d73e3e;
+}
+
+input[name=logout]:hover {
+       background:#ea0202;
+}
+
+#logins a, #tables a {
+       background:none;
+}
+
+#logins a:hover, #tables a:hover {
+       background:#A0522D;
+       color:white;
+}
+
+#logout {
+       color:#0033ff;
+       text-decoration:none;
+}
+
+#logout:hover {
+       color:white;
+       background:#0033ff;
+}
+
+.js .column {
+       background:#f2eee1;
+}
+
+#content table thead a.text:hover {
+       text-decoration:none;
+}
+
+#version, .version {
+       font-size:50%;
+}
+
+#h1:hover {
+       color:white;
+}
index 6657a1b5debb20a0be23f0a00f8763fe83a07ef2..ca79d227bcfb28ae500a52bd632a226a87e749bc 100644 (file)
@@ -15,7 +15,7 @@ if ($adminer->homepage()) {
        echo '<th>' . lang('Table');
        echo '<td>' . lang('Rows');
        echo "</thead>\n";
-       
+
        foreach (table_status() as $table => $row) {
                $name = $adminer->tableName($row);
                if (isset($row["Engine"]) && $name != "") {
@@ -25,7 +25,7 @@ if ($adminer->homepage()) {
                        echo "<td align='right'><a href='" . h(ME . "edit=") . urlencode($table) . "'>" . ($row["Engine"] == "InnoDB" && $val ? "~ $val" : $val) . "</a>";
                }
        }
-       
+
        echo "</table>\n";
        echo "</div>\n";
        echo "</form>\n";
index 831d1c8fb4f6ab85f98672b77f766870945e578b..8b8c44f8469c4f839e37fa87c768aa609f8e065d 100644 (file)
@@ -23,7 +23,7 @@ class Adminer {
        function bruteForceKey() {
                return $_SERVER["REMOTE_ADDR"];
        }
-       
+
        function serverName($server) {
        }
 
index 71d747d5a56588fa1f0d4813ba804809bb7a2631..17876d02f0d1529f4ebc9c0aa39cbb803969d624 100644 (file)
@@ -2,7 +2,7 @@
 function adminer_object() {
        include_once "../plugins/plugin.php";
        include_once "../plugins/login-password-less.php";
-       
+
        class AdminerCustomization extends AdminerPlugin {
                function loginFormField($name, $heading, $value) {
                        return parent::loginFormField($name, $heading, str_replace('value="server"', 'value="sqlite"', $value));
@@ -11,7 +11,7 @@ function adminer_object() {
                        return "PATH_TO_YOUR_SQLITE_HERE";
                }
        }
-       
+
        return new AdminerCustomization(array(
                // TODO: inline the result of password_hash() so that the password is not visible in source codes
                new AdminerLoginPasswordLess(password_hash("YOUR_PASSWORD_HERE", PASSWORD_DEFAULT)),
index 9e58a396d68b9ab69c782c3edf6f62ef5bf10129..622b67b594baf7219876e36699bcdddc0056cdf1 100644 (file)
@@ -8,14 +8,14 @@
 */
 class AdminerDatabaseHide {
        protected $disabled;
-       
+
        /**
        * @param array case insensitive database names in values
        */
        function __construct($disabled) {
                $this->disabled = array_map('strtolower', $disabled);
        }
-       
+
        function databases($flush = true) {
                $return = array();
                foreach (get_databases($flush) as $db) {
@@ -25,5 +25,5 @@ class AdminerDatabaseHide {
                }
                return $return;
        }
-       
+
 }
index eeca3be139263c87c89f27c96592a7e68bb6cf38..3cacf5aa067ff9193d85e6d892f7b0aa6d38a374 100644 (file)
@@ -9,14 +9,14 @@
 class AdminerDesigns {
        /** @access protected */
        var $designs;
-       
+
        /**
        * @param array URL in key, name in value
        */
        function __construct($designs) {
                $this->designs = $designs;
        }
-       
+
        function headers() {
                if (isset($_POST["design"]) && verify_token()) {
                        restart_session();
@@ -24,7 +24,7 @@ class AdminerDesigns {
                        redirect($_SERVER["REQUEST_URI"]);
                }
        }
-       
+
        function css() {
                $return = array();
                if (array_key_exists($_SESSION["design"], $this->designs)) {
@@ -32,7 +32,7 @@ class AdminerDesigns {
                }
                return $return;
        }
-       
+
        function navigation($missing) {
                echo "<form action='' method='post' style='position: fixed; bottom: .5em; right: .5em;'>";
                echo html_select("design", array("" => "(design)") + $this->designs, $_SESSION["design"], "this.form.submit();");
index 8030437cd509707d31b0f8a53aa99d3072e71d89..15b4d9ae19690396a7291c64a488aeacef444f5a 100644 (file)
@@ -305,7 +305,7 @@ if (isset($_GET["elastic5"])) {
        function db_collation($db, $collations) {
                //
        }
-       
+
        function engines() {
                return array();
        }
index 8822d2866964b455266c6a87253a94c6d83bd335..34f92d2f78e0ad6dd04c2795c73e5dff7ff50132 100644 (file)
@@ -20,7 +20,7 @@ if (isset($_GET["firebird"])) {
                        ;
 
                        function connect($server, $username, $password) {
-                               $this->_link = ibase_connect($server, $username, $password); 
+                               $this->_link = ibase_connect($server, $username, $password);
                                if ($this->_link) {
                                        $url_parts = explode(':', $server);
                                        $this->service_link = ibase_service_attach($url_parts[0], $username, $password);
@@ -109,9 +109,9 @@ if (isset($_GET["firebird"])) {
                }
 
        }
-       
-       
-       
+
+
+
        class Min_Driver extends Min_SQL {
        }
 
@@ -140,7 +140,7 @@ if (isset($_GET["firebird"])) {
        }
 
        function limit($query, $where, $limit, $offset = 0, $separator = " ") {
-               $return = ''; 
+               $return = '';
                $return .= ($limit !== null ? $separator . "FIRST $limit" . ($offset ? " SKIP $offset" : "") : "");
                $return .= " $query$where";
                return $return;
@@ -171,7 +171,7 @@ if (isset($_GET["firebird"])) {
                while ($row = ibase_fetch_assoc($result)) {
                                $return[$row['RDB$RELATION_NAME']] = 'table';
                }
-               ksort($return); 
+               ksort($return);
                return $return;
        }
 
index b314e7e680f198ecf00f2845746e4064e8470644..ae39413229555d2be1afbe2976276ea168a22609 100644 (file)
@@ -236,7 +236,7 @@ if (isset($_GET["simpledb"])) {
                function rollback() {
                        return false;
                }
-               
+
                function slowQuery($query, $timeout) {
                        $this->_conn->timeout = $timeout;
                        return $query;
index 50e9b694e05eb8cff4ffba2170b6b3a9fcacd34b..65ecead67a3047fc0f21d9f3d61b3624206a4f6a 100644 (file)
@@ -7,13 +7,13 @@
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
 */
 class AdminerDumpAlter {
-       
+
        function dumpFormat() {
                if (DRIVER == 'server') {
                        return array('sql_alter' => 'Alter');
                }
        }
-       
+
        function _database() {
                // drop old tables
                $query = "SELECT TABLE_NAME, ENGINE, TABLE_COLLATION, TABLE_COMMENT FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE()";
@@ -52,7 +52,7 @@ DROP PROCEDURE adminer_alter;
 SELECT @adminer_alter;
 ";
        }
-       
+
        function dumpDatabase($db) {
                static $first = true;
                if ($_POST["format"] == "sql_alter") {
@@ -66,7 +66,7 @@ SELECT @adminer_alter;
                        return true;
                }
        }
-       
+
        function dumpTable($table, $style, $is_view = 0) {
                if ($_POST["format"] == "sql_alter") {
                        $create = create_sql($table, $_POST["auto_increment"], $style);
@@ -152,7 +152,7 @@ DROP PROCEDURE adminer_alter;
                        return true;
                }
        }
-       
+
        function dumpData() {
                if ($_POST["format"] == "sql_alter") {
                        return true;
index 6515618a6e7340c3e06049071ece8ba6a7fbe592..8d42302ce0b34b6001a395a556717fbd83461678 100644 (file)
 class AdminerDumpBz2 {
        /** @access protected */
        var $filename, $fp;
-       
+
        function dumpOutput() {
                if (!function_exists('bzopen')) {
                        return array();
                }
                return array('bz2' => 'bzip2');
        }
-       
+
        function _bz2($string, $state) {
                bzwrite($this->fp, $string);
                if ($state & PHP_OUTPUT_HANDLER_END) {
@@ -28,7 +28,7 @@ class AdminerDumpBz2 {
                }
                return "";
        }
-       
+
        function dumpHeaders($identifier, $multi_table = false) {
                if ($_POST["output"] == "bz2") {
                        $this->filename = tempnam("", "bz2");
index febff93c69f88b34216cd7d9e4afaed9af5fac97..a5cf3afb41d4b556b7df43dc412c9d7312e3a826 100644 (file)
@@ -7,7 +7,7 @@
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
 */
 class AdminerDumpDate {
-       
+
        function dumpFilename($identifier) {
                $connection = connection();
                return friendly_url(($identifier != "" ? $identifier : (SERVER != "" ? SERVER : "localhost")) . "-" . $connection->result("SELECT NOW()"));
index 8c49ad75c25baa0bfbf048d9cf96e83aaced9af4..35316a6f78c1642eae390fca518c8b1b1f6cc077 100644 (file)
@@ -9,7 +9,7 @@
 class AdminerDumpJson {
        /** @access protected */
        var $database = false;
-       
+
        function dumpFormat() {
                return array('json' => 'JSON');
        }
@@ -19,11 +19,11 @@ class AdminerDumpJson {
                        return true;
                }
        }
-       
+
        function _database() {
                echo "}\n";
        }
-       
+
        function dumpData($table, $style, $query) {
                if ($_POST["format"] == "json") {
                        if ($this->database) {
index 580e9979b27cb87205db7909fb98fa713b52e1fb..cd07a3ac538f5ae091c50d901d0cfc3cf718df69 100644 (file)
@@ -9,7 +9,7 @@
 class AdminerDumpXml {
        /** @access protected */
        var $database = false;
-       
+
        function dumpFormat() {
                return array('xml' => 'XML');
        }
@@ -19,11 +19,11 @@ class AdminerDumpXml {
                        return true;
                }
        }
-       
+
        function _database() {
                echo "</database>\n";
        }
-       
+
        function dumpData($table, $style, $query) {
                if ($_POST["format"] == "xml") {
                        if (!$this->database) {
index ea2053068a16e67be8fa982d822c259d2d0e3be3..365cb7be87380cbfcf0c5a1009a69d5327d96f3f 100644 (file)
@@ -8,11 +8,11 @@
 */
 class AdminerEditForeign {
        var $_limit;
-       
+
        function __construct($limit = 0) {
                $this->_limit = $limit;
        }
-       
+
        function editInput($table, $field, $attrs, $value) {
                static $foreignTables = array();
                static $values = array();
@@ -39,5 +39,5 @@ class AdminerEditForeign {
                        }
                }
        }
-       
+
 }
index 928181351de95369392c7f5f90394bb9a6f7e3a3..1f1459573df75cd18d3b97eccaf6fae651ca1b81 100644 (file)
@@ -9,7 +9,7 @@
 class AdminerEmailTable {
        /** @access protected */
        var $table, $id, $title, $subject, $message;
-       
+
        /**
        * @param string quoted table name
        * @param string quoted column name
@@ -24,7 +24,7 @@ class AdminerEmailTable {
                $this->subject = $subject;
                $this->message = $message;
        }
-       
+
        function selectEmailPrint($emailFields, $columns) {
                if ($emailFields) {
                        print_fieldset("email", ('E-mail'));
@@ -46,7 +46,7 @@ class AdminerEmailTable {
                        return true;
                }
        }
-       
+
        function selectEmailProcess($where, $foreignKeys) {
                $connection = connection();
                if ($_POST["email_id"]) {
@@ -56,5 +56,5 @@ class AdminerEmailTable {
                        $_POST["email_message"] = $row[1];
                }
        }
-       
+
 }
index cc82a12563b72da8d566473c55db778add529017..bcede82600e6438d977806a644e49453f11d8cd1 100644 (file)
@@ -7,7 +7,7 @@
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
 */
 class AdminerEnumOption {
-       
+
        function editInput($table, $field, $attrs, $value) {
                if ($field["type"] == "enum") {
                        $options = array();
@@ -36,5 +36,5 @@ class AdminerEnumOption {
                        return "<select$attrs>" . optionlist($options, (string) $selected, 1) . "</select>"; // 1 - use keys
                }
        }
-       
+
 }
index 54c021c5faed16b232a6be6f8c621ec0843b3016..ae26cca77da969202ba66081bd4c1b82bc8b9bc2 100644 (file)
@@ -7,7 +7,7 @@
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
 */
 class AdminerForeignSystem {
-       
+
        function foreignKeys($table) {
                if (DRIVER == "server" && DB == "mysql") {
                        switch ($table) {
@@ -52,5 +52,5 @@ class AdminerForeignSystem {
                        }
                }
        }
-       
+
 }
index eb800989eaaaf2959ed15f05f19f9ee15c52c8a6..4fd71a669084f41539793f5eeba97939acfb1b1c 100644 (file)
@@ -9,14 +9,14 @@
 class AdminerFrames {
        /** @access protected */
        var $sameOrigin;
-       
+
        /**
        * @param bool allow running from the same origin only
        */
        function __construct($sameOrigin = false) {
                $this->sameOrigin = $sameOrigin;
        }
-       
+
        function headers() {
                if ($this->sameOrigin) {
                        header("X-Frame-Options: SameOrigin");
@@ -24,5 +24,5 @@ class AdminerFrames {
                        header_remove("X-Frame-Options");
                }
        }
-       
+
 }
index c6f3f8e8247197f2356989b68f0d69d859e1de86..09829aa4fa103f6d6ddbdd60f95d8e12cf8e99a8 100644 (file)
@@ -11,7 +11,7 @@ class AdminerLoginIp {
        var $ips;
        /** @access protected */
        var $forwarded_for;
-       
+
        /** Set allowed IP addresses
        * @param array IP address prefixes
        * @param array X-Forwarded-For prefixes if IP address matches, empty array means anything
index f639dab51c519e2dc367e40a1747c58ae4f6f042..759cdd86464e9ce6c72dedb56548e6ad56deeb9f 100644 (file)
@@ -9,8 +9,8 @@
 class AdminerLoginOtp {
        /** @access protected */
        var $secret;
-       
-       /** 
+
+       /**
        * @param string decoded secret, e.g. base64_decode("SECRET")
        */
        function __construct($secret) {
@@ -19,7 +19,7 @@ class AdminerLoginOtp {
                        $_SESSION["otp"] = (string) $_POST["auth"]["otp"];
                }
        }
-       
+
        function loginFormField($name, $heading, $value) {
                if ($name == 'password') {
                        return $heading . $value
@@ -43,7 +43,7 @@ class AdminerLoginOtp {
                        return 'Invalid OTP.';
                }
        }
-       
+
        function getOtp($timeSlot) {
                $data = str_pad(pack('N', $timeSlot), 8, "\0", STR_PAD_LEFT);
                $hash = hash_hmac('sha1', $data, $this->secret, true);
index 2a0a50d5dfebb19a3791b29e37dccb6f3ba8e517..f501b3e954103e389a3854b6dcac9b06285007d9 100644 (file)
@@ -9,7 +9,7 @@
 class AdminerLoginPasswordLess {
        /** @access protected */
        var $password_hash;
-       
+
        /** Set allowed password
        * @param string result of password_hash
        */
@@ -21,7 +21,7 @@ class AdminerLoginPasswordLess {
                $password = get_password();
                return array(SERVER, $_GET["username"], (password_verify($password, $this->password_hash) ? "" : $password));
        }
-       
+
        function login($login, $password) {
                if ($password != "") {
                        return true;
index d4a789f01c31a83f6cdb1840d78d39bb5dc494fd..50203f5adaeaa798f648708172098b0b65ada9ab 100644 (file)
@@ -9,7 +9,7 @@
 class AdminerLoginServers {
        /** @access protected */
        var $servers;
-       
+
        /** Set supported servers
        * @param array array($description => array("server" => , "driver" => "server|pgsql|sqlite|..."))
        */
@@ -20,17 +20,17 @@ class AdminerLoginServers {
                        $_POST["auth"]["driver"] = $this->servers[$key]["driver"];
                }
        }
-       
+
        function credentials() {
                return array($this->servers[SERVER]["server"], $_GET["username"], get_password());
        }
-       
+
        function login($login, $password) {
                if (!$this->servers[SERVER]) {
                        return false;
                }
        }
-       
+
        function loginFormField($name, $heading, $value) {
                if ($name == 'driver') {
                        return '';
@@ -38,5 +38,5 @@ class AdminerLoginServers {
                        return $heading . "<select name='auth[server]'>" . optionlist(array_keys($this->servers), SERVER) . "</select>\n";
                }
        }
-       
+
 }
index d7d994f43fb33a58a76022ce51fd0e6078200ba1..0909cbe3cda4c24611dd8c53bd864d1e4a096cc5 100644 (file)
@@ -23,5 +23,5 @@ class AdminerLoginSsl {
        function connectSsl() {
                return $this->ssl;
        }
-       
+
 }
index e0818d636c33eeeab6e7058f86184a842248f7d6..efc6e358e9f9b9471913bdbf425a0ea3c9fcb642 100644 (file)
@@ -18,17 +18,17 @@ CREATE TABLE login (
 class AdminerLoginTable {
        /** @access protected */
        var $database;
-       
+
        /** Set database of login table
        * @param string
        */
        function __construct($database) {
                $this->database = $database;
        }
-       
+
        function login($login, $password) {
                $connection = connection();
                return (bool) $connection->result("SELECT COUNT(*) FROM " . idf_escape($this->database) . ".login WHERE login = " . q($login) . " AND password_sha1 = " . q(sha1($password)));
        }
-       
+
 }
index 4798c65c33988cafd39d212d20d50e74ca3e2f4c..eb42e6aec91835cfe3a2c1d4d36aa5678635ca41 100644 (file)
@@ -8,20 +8,20 @@
 */
 class AdminerMasterSlave {
        private $masters = array();
-       
+
        /**
        * @param array ($slave => $master)
        */
        function __construct($masters) {
                $this->masters = $masters;
        }
-       
+
        function credentials() {
                if ($_POST && isset($this->masters[SERVER])) {
                        return array($this->masters[SERVER], $_GET["username"], get_session("pwds"));
                }
        }
-       
+
        function login($login, $password) {
                if (!$_POST && ($master = &$_SESSION["master"])) {
                        $connection = connection();
index 065b0af9d1d30bef6a72db0dbfd607d2aba64676..adcc440d3043532417618c5eeaa97a7a9764013e 100644 (file)
@@ -9,14 +9,14 @@
 class AdminerPlugin extends Adminer {
        /** @access protected */
        var $plugins;
-       
+
        function _findRootClass($class) { // is_subclass_of(string, string) is available since PHP 5.0.3
                do {
                        $return = $class;
                } while ($class = get_parent_class($class));
                return $return;
        }
-       
+
        /** Register plugins
        * @param array object instances or null to register all classes starting by 'Adminer'
        */
@@ -32,11 +32,11 @@ class AdminerPlugin extends Adminer {
                $this->plugins = $plugins;
                //! it is possible to use ReflectionObject to find out which plugins defines which methods at once
        }
-       
+
        function _callParent($function, $args) {
                return call_user_func_array(array('parent', $function), $args);
        }
-       
+
        function _applyPlugin($function, $args) {
                foreach ($this->plugins as $plugin) {
                        if (method_exists($plugin, $function)) {
@@ -57,7 +57,7 @@ class AdminerPlugin extends Adminer {
                }
                return $this->_callParent($function, $args);
        }
-       
+
        function _appendPlugin($function, $args) {
                $return = $this->_callParent($function, $args);
                foreach ($this->plugins as $plugin) {
@@ -70,14 +70,14 @@ class AdminerPlugin extends Adminer {
                }
                return $return;
        }
-       
+
        // appendPlugin
-       
+
        function dumpFormat() {
                $args = func_get_args();
                return $this->_appendPlugin(__FUNCTION__, $args);
        }
-       
+
        function dumpOutput() {
                $args = func_get_args();
                return $this->_appendPlugin(__FUNCTION__, $args);
@@ -94,7 +94,7 @@ class AdminerPlugin extends Adminer {
        }
 
        // applyPlugin
-       
+
        function name() {
                $args = func_get_args();
                return $this->_applyPlugin(__FUNCTION__, $args);
index 584fe3ef0dcc6e3efc6277374d67b1768380c041..d4891d81d6d58b2e513e4dcfee9854370f0048d1 100644 (file)
@@ -9,14 +9,14 @@
 class AdminerSqlLog {
        /** @access protected */
        var $filename;
-       
+
        /**
        * @param string defaults to "$database.sql"
        */
        function __construct($filename = "") {
                $this->filename = $filename;
        }
-       
+
        function messageQuery($query, $time, $failed = false) {
                $this->_log($query);
        }
@@ -37,5 +37,5 @@ class AdminerSqlLog {
                flock($fp, LOCK_UN);
                fclose($fp);
        }
-       
+
 }
index 7f44e1d7ee2edeb1568e4608e80f91990e7d0aed..e4824342584ce9a9474b7a12c5c273586f203ebd 100644 (file)
@@ -17,7 +17,7 @@ CREATE TABLE translation (
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
 */
 class AdminerTranslation {
-       
+
        function _translate($idf) {
                static $translations, $lang;
                if ($lang === null) {
@@ -37,19 +37,19 @@ class AdminerTranslation {
                }
                return $return;
        }
-       
+
        function tableName(&$tableStatus) {
                $tableStatus["Comment"] = $this->_translate($tableStatus["Comment"]);
        }
-       
+
        function fieldName(&$field, $order = 0) {
                $field["comment"] = $this->_translate($field["comment"]);
        }
-       
+
        function editVal(&$val, $field) {
                if ($field["type"] == "enum") {
                        $val = $this->_translate($val);
                }
        }
-       
+
 }
index b552cbbd9da6354823baa4def2246dfa385f30d1..cbf79d8ea1815ac782ac033578d5a636e3cc43d4 100644 (file)
@@ -7,9 +7,9 @@
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
 */
 class AdminerVersionNoverify {
-       
+
        function head() {
                echo script("verifyVersion = function () {};");
        }
-       
+
 }