Version Description
- Russian translation is added
Download this release
Release Info
Developer | arisoft |
Plugin | ARI Adminer – WordPress Database Manager |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- ari-adminer.php +1 -1
- includes/defines.php +1 -1
- includes/views/adminer-runner/class-html.php +2 -2
- includes/views/adminer-runner/tmpl/default.php +5 -5
- includes/views/connections/class-html.php +6 -6
- includes/views/connections/tmpl/default.php +3 -3
- includes/views/connections/tmpl/toolbar.php +2 -2
- languages/ari-adminer-ru_RU.mo +0 -0
- languages/ari-adminer-ru_RU.po +401 -0
- languages/ari-adminer.pot +55 -4
- readme.txt +9 -1
ari-adminer.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: ARI Adminer
|
4 |
Plugin URI: http://wp-quiz.ari-soft.com/plugins/wordpress-adminer.html
|
5 |
Description: Powerful, compact and easy to use database manager plugin for WordPress.
|
6 |
-
Version: 1.0.
|
7 |
Author: ARI Soft
|
8 |
Author URI: http://www.ari-soft.com
|
9 |
Text Domain: ari-adminer
|
3 |
Plugin Name: ARI Adminer
|
4 |
Plugin URI: http://wp-quiz.ari-soft.com/plugins/wordpress-adminer.html
|
5 |
Description: Powerful, compact and easy to use database manager plugin for WordPress.
|
6 |
+
Version: 1.0.3
|
7 |
Author: ARI Soft
|
8 |
Author URI: http://www.ari-soft.com
|
9 |
Text Domain: ari-adminer
|
includes/defines.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
define( 'ARIADMINER_VERSION', '1.0.
|
3 |
define( 'ARIADMINER_SLUG', 'ari-adminer' );
|
4 |
define( 'ARIADMINER_ASSETS_URL', ARIADMINER_URL . 'assets/' );
|
5 |
define( 'ARIADMINER_VERSION_OPTION', 'ari_adminer' );
|
1 |
<?php
|
2 |
+
define( 'ARIADMINER_VERSION', '1.0.3' );
|
3 |
define( 'ARIADMINER_SLUG', 'ari-adminer' );
|
4 |
define( 'ARIADMINER_ASSETS_URL', ARIADMINER_URL . 'assets/' );
|
5 |
define( 'ARIADMINER_VERSION_OPTION', 'ari_adminer' );
|
includes/views/adminer-runner/class-html.php
CHANGED
@@ -22,9 +22,9 @@ class Html extends Base {
|
|
22 |
'ajaxUrl' => admin_url( 'admin-ajax.php?action=ari_adminer' ),
|
23 |
|
24 |
'messages' => array(
|
25 |
-
'connectionOk' => 'Connection parameters are valid.',
|
26 |
|
27 |
-
'connectionFailed' => 'Could not connect to DB. The following error occurs: ',
|
28 |
),
|
29 |
);
|
30 |
|
22 |
'ajaxUrl' => admin_url( 'admin-ajax.php?action=ari_adminer' ),
|
23 |
|
24 |
'messages' => array(
|
25 |
+
'connectionOk' => __( 'Connection parameters are valid.', 'ari-adminer' ),
|
26 |
|
27 |
+
'connectionFailed' => __( 'Could not connect to DB. The following error occurs: ', 'ari-adminer' ),
|
28 |
),
|
29 |
);
|
30 |
|
includes/views/adminer-runner/tmpl/default.php
CHANGED
@@ -15,7 +15,7 @@ $run_url = Helper::build_url(
|
|
15 |
<div class="metabox-holder has-right-sidebar">
|
16 |
<div class="inner-sidebar">
|
17 |
<div class="postbox">
|
18 |
-
<h3><?php _e( '
|
19 |
<div class="inside">
|
20 |
<ul>
|
21 |
<li>
|
@@ -28,7 +28,7 @@ $run_url = Helper::build_url(
|
|
28 |
<a href="https://twitter.com/ARISoft" target="_blank"><?php _e( 'Follow us on Twitter', 'ari-adminer' ); ?></a>
|
29 |
</li>
|
30 |
<li>
|
31 |
-
<a href="http://wp-quiz.ari-soft.com" target="_blank" class="important_link"><?php _e( '
|
32 |
</li>
|
33 |
</ul>
|
34 |
</div>
|
@@ -70,13 +70,13 @@ $run_url = Helper::build_url(
|
|
70 |
|
71 |
<div id="rowConnectionHost" class="row">
|
72 |
<label for="tbxConnectionHost"><?php _e( 'Host', 'ari-adminer' ); ?></label>
|
73 |
-
<input id="tbxConnectionHost" class="form-control pure-input-1" data-key="host" type="text" placeholder="Eg. localhost" autocomplete="off" />
|
74 |
</div>
|
75 |
|
76 |
<div id="rowConnectionDB" class="row">
|
77 |
<label id="lblConnectionPath" for="tbxConnectionDB"><?php _e( 'Path to DB file', 'ari-adminer' ); ?></label>
|
78 |
<label id="lblConnectionDB" for="tbxConnectionDB"><?php _e( 'DB name', 'ari-adminer' ); ?></label>
|
79 |
-
<input id="tbxConnectionDB" class="form-control pure-input-1" data-key="db_name" type="text" autocomplete="off" data-validator="require" data-validator-message="<?php echo
|
80 |
</div>
|
81 |
|
82 |
<div id="rowConnectionUser" class="row">
|
@@ -90,7 +90,7 @@ $run_url = Helper::build_url(
|
|
90 |
</div>
|
91 |
|
92 |
<div class="align-right">
|
93 |
-
<a id="btnConnectionTest" href="#" class="button"><?php _e( 'Test Connection','
|
94 |
</div>
|
95 |
</div>
|
96 |
|
15 |
<div class="metabox-holder has-right-sidebar">
|
16 |
<div class="inner-sidebar">
|
17 |
<div class="postbox">
|
18 |
+
<h3><?php _e( 'How can I help?', 'ari-adminer' ); ?></h3>
|
19 |
<div class="inside">
|
20 |
<ul>
|
21 |
<li>
|
28 |
<a href="https://twitter.com/ARISoft" target="_blank"><?php _e( 'Follow us on Twitter', 'ari-adminer' ); ?></a>
|
29 |
</li>
|
30 |
<li>
|
31 |
+
<a href="http://wp-quiz.ari-soft.com" target="_blank" class="important_link"><?php _e( 'Try our WordPress plugins', 'ari-adminer' ); ?></a>
|
32 |
</li>
|
33 |
</ul>
|
34 |
</div>
|
70 |
|
71 |
<div id="rowConnectionHost" class="row">
|
72 |
<label for="tbxConnectionHost"><?php _e( 'Host', 'ari-adminer' ); ?></label>
|
73 |
+
<input id="tbxConnectionHost" class="form-control pure-input-1" data-key="host" type="text" placeholder="<?php esc_attr_e( 'Eg. localhost', 'ari-adminer' ); ?>" autocomplete="off" />
|
74 |
</div>
|
75 |
|
76 |
<div id="rowConnectionDB" class="row">
|
77 |
<label id="lblConnectionPath" for="tbxConnectionDB"><?php _e( 'Path to DB file', 'ari-adminer' ); ?></label>
|
78 |
<label id="lblConnectionDB" for="tbxConnectionDB"><?php _e( 'DB name', 'ari-adminer' ); ?></label>
|
79 |
+
<input id="tbxConnectionDB" class="form-control pure-input-1" data-key="db_name" type="text" autocomplete="off" data-validator="require" data-validator-message="<?php echo esc_attr_e( 'Specify database', 'ari-adminer' ); ?>" />
|
80 |
</div>
|
81 |
|
82 |
<div id="rowConnectionUser" class="row">
|
90 |
</div>
|
91 |
|
92 |
<div class="align-right">
|
93 |
+
<a id="btnConnectionTest" href="#" class="button"><?php _e( 'Test Connection', 'ari-adminer' ); ?></a>
|
94 |
</div>
|
95 |
</div>
|
96 |
|
includes/views/connections/class-html.php
CHANGED
@@ -32,17 +32,17 @@ class Html extends Base {
|
|
32 |
|
33 |
'bulkDeleteConfirm' => __( 'Do you want to delete the selected items?', 'ari-adminer' ),
|
34 |
|
35 |
-
'connectionOk' => 'Connection parameters are valid.',
|
36 |
|
37 |
-
'connectionFailed' => 'Could not connect to DB. The following error occurs: ',
|
38 |
|
39 |
-
'connectionSaveFailed' => 'The connection could not be saved. Try again please.',
|
40 |
|
41 |
-
'connectionTestFailed' => 'The connection could not be tested. Try again please.',
|
42 |
|
43 |
-
'selectAction' => 'Select an action',
|
44 |
|
45 |
-
'selectItem' => 'Select at least one item',
|
46 |
),
|
47 |
);
|
48 |
|
32 |
|
33 |
'bulkDeleteConfirm' => __( 'Do you want to delete the selected items?', 'ari-adminer' ),
|
34 |
|
35 |
+
'connectionOk' => __( 'Connection parameters are valid.', 'ari-adminer' ),
|
36 |
|
37 |
+
'connectionFailed' => __( 'Could not connect to DB. The following error occurs: ', 'ari-adminer' ),
|
38 |
|
39 |
+
'connectionSaveFailed' => __( 'The connection could not be saved. Try again please.', 'ari-adminer' ),
|
40 |
|
41 |
+
'connectionTestFailed' => __( 'The connection could not be tested. Try again please.', 'ari-adminer' ),
|
42 |
|
43 |
+
'selectAction' => __( 'Select an action', 'ari-adminer' ),
|
44 |
|
45 |
+
'selectItem' => __( 'Select at least one item', 'ari-adminer' ),
|
46 |
),
|
47 |
);
|
48 |
|
includes/views/connections/tmpl/default.php
CHANGED
@@ -36,7 +36,7 @@ $tmpl_path = dirname( __FILE__ ) . '/';
|
|
36 |
|
37 |
<div id="rowConnectionTitle" class="row">
|
38 |
<label for="tbxConnectionTitle"><?php _e( 'Title', 'ari-adminer' ); ?></label>
|
39 |
-
<input id="tbxConnectionTitle" class="form-control pure-input-1" data-key="title" type="text" autocomplete="off" data-validator="require" data-validator-message="<?php
|
40 |
</div>
|
41 |
|
42 |
<div id="rowConnectionDriver" class="row">
|
@@ -50,13 +50,13 @@ $tmpl_path = dirname( __FILE__ ) . '/';
|
|
50 |
|
51 |
<div id="rowConnectionHost" class="row">
|
52 |
<label for="tbxConnectionHost"><?php _e( 'Host', 'ari-adminer' ); ?></label>
|
53 |
-
<input id="tbxConnectionHost" class="form-control pure-input-1" data-key="host" type="text" placeholder="Eg. localhost" autocomplete="off" />
|
54 |
</div>
|
55 |
|
56 |
<div id="rowConnectionDB" class="row">
|
57 |
<label id="lblConnectionPath" for="tbxConnectionDB"><?php _e( 'Path to DB file', 'ari-adminer' ); ?></label>
|
58 |
<label id="lblConnectionDB" for="tbxConnectionDB"><?php _e( 'DB name', 'ari-adminer' ); ?></label>
|
59 |
-
<input id="tbxConnectionDB" class="form-control pure-input-1" data-key="db_name" type="text" autocomplete="off" data-validator="require" data-validator-message="<?php
|
60 |
</div>
|
61 |
|
62 |
<div id="rowConnectionUser" class="row">
|
36 |
|
37 |
<div id="rowConnectionTitle" class="row">
|
38 |
<label for="tbxConnectionTitle"><?php _e( 'Title', 'ari-adminer' ); ?></label>
|
39 |
+
<input id="tbxConnectionTitle" class="form-control pure-input-1" data-key="title" type="text" autocomplete="off" data-validator="require" data-validator-message="<?php esc_attr_e( 'Specify title', 'ari-adminer' ); ?>" data-validator-group="connection" />
|
40 |
</div>
|
41 |
|
42 |
<div id="rowConnectionDriver" class="row">
|
50 |
|
51 |
<div id="rowConnectionHost" class="row">
|
52 |
<label for="tbxConnectionHost"><?php _e( 'Host', 'ari-adminer' ); ?></label>
|
53 |
+
<input id="tbxConnectionHost" class="form-control pure-input-1" data-key="host" type="text" placeholder="<?php esc_attr_e( 'Eg. localhost', 'ari-adminer' ); ?>" autocomplete="off" />
|
54 |
</div>
|
55 |
|
56 |
<div id="rowConnectionDB" class="row">
|
57 |
<label id="lblConnectionPath" for="tbxConnectionDB"><?php _e( 'Path to DB file', 'ari-adminer' ); ?></label>
|
58 |
<label id="lblConnectionDB" for="tbxConnectionDB"><?php _e( 'DB name', 'ari-adminer' ); ?></label>
|
59 |
+
<input id="tbxConnectionDB" class="form-control pure-input-1" data-key="db_name" type="text" autocomplete="off" data-validator="require" data-validator-message="<?php esc_attr_e( 'Specify database', 'ari-adminer' ); ?>" data-validator-group="connection test_connection" />
|
60 |
</div>
|
61 |
|
62 |
<div id="rowConnectionUser" class="row">
|
includes/views/connections/tmpl/toolbar.php
CHANGED
@@ -5,8 +5,8 @@ $container_class = $data['class'];
|
|
5 |
<div class="alignleft actions bulkactions">
|
6 |
<label for="bulk-action-selector-top" class="screen-reader-text"><?php _e( 'Select bulk action', 'ari-adminer' ); ?></label>
|
7 |
<select class="bulk-action-select">
|
8 |
-
<option value=""><?php _e( '- Bulk Actions -', '' ); ?></option>
|
9 |
-
<option value="bulk_delete"><?php _e( 'Delete', '' ); ?></option>
|
10 |
</select>
|
11 |
<button class="button btn-bulk-action"><?php _e( 'Apply', 'ari-adminer' ); ?></button>
|
12 |
</div>
|
5 |
<div class="alignleft actions bulkactions">
|
6 |
<label for="bulk-action-selector-top" class="screen-reader-text"><?php _e( 'Select bulk action', 'ari-adminer' ); ?></label>
|
7 |
<select class="bulk-action-select">
|
8 |
+
<option value=""><?php _e( '- Bulk Actions -', 'ari-adminer' ); ?></option>
|
9 |
+
<option value="bulk_delete"><?php _e( 'Delete', 'ari-adminer' ); ?></option>
|
10 |
</select>
|
11 |
<button class="button btn-bulk-action"><?php _e( 'Apply', 'ari-adminer' ); ?></button>
|
12 |
</div>
|
languages/ari-adminer-ru_RU.mo
ADDED
Binary file
|
languages/ari-adminer-ru_RU.po
ADDED
@@ -0,0 +1,401 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# WordPress Blank Pot
|
2 |
+
# Copyright (C) 2014 ...
|
3 |
+
# This file is distributed under the GNU General Public License v2 or later.
|
4 |
+
msgid ""
|
5 |
+
msgstr ""
|
6 |
+
"Project-Id-Version: ARI Adminer v 1.0.0\n"
|
7 |
+
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
8 |
+
"POT-Creation-Date: 2016-12-29 15:01+0300\n"
|
9 |
+
"PO-Revision-Date: \n"
|
10 |
+
"Last-Translator: \n"
|
11 |
+
"Language-Team: ARI Soft <info@ari-soft.com>\n"
|
12 |
+
"Language: ru_RU\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
17 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
18 |
+
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
19 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
21 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
22 |
+
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
23 |
+
"X-Poedit-Basepath: ..\n"
|
24 |
+
"X-Generator: Poedit 1.8.11\n"
|
25 |
+
"X-Poedit-SearchPath-0: .\n"
|
26 |
+
"X-Poedit-SearchPathExcluded-0: adminer\n"
|
27 |
+
"X-Poedit-SearchPathExcluded-1: assets\n"
|
28 |
+
"X-Poedit-SearchPathExcluded-2: install\n"
|
29 |
+
"X-Poedit-SearchPathExcluded-3: languages\n"
|
30 |
+
|
31 |
+
#: ari-adminer.php:72
|
32 |
+
#, php-format
|
33 |
+
msgid "update PHP version on your server from v. %s to at least v. %s"
|
34 |
+
msgstr ""
|
35 |
+
"PHP версии %s используется на Вашем сервере, обновите его минимум до версии "
|
36 |
+
"%s"
|
37 |
+
|
38 |
+
#: ari-adminer.php:78
|
39 |
+
msgid "install PHP SPL extension"
|
40 |
+
msgstr "установите SPL расширение для PHP"
|
41 |
+
|
42 |
+
#: ari-adminer.php:82
|
43 |
+
#, php-format
|
44 |
+
msgid "update WordPress v. %s to at least v. %s"
|
45 |
+
msgstr "Вы используете WordPress версии %s, обновите его до версии %s или выше"
|
46 |
+
|
47 |
+
#: ari-adminer.php:89
|
48 |
+
#, php-format
|
49 |
+
msgid ""
|
50 |
+
"\"ARI Adminer\" can not be activated. It requires PHP version 5.4.0+ with "
|
51 |
+
"SPL extension and WordPress 4.0+.<br /><br /><b>Recommendations:</b> %s.<br /"
|
52 |
+
"><br /><a href=\"%s\" class=\"button button-primary\">Back</a>"
|
53 |
+
msgstr ""
|
54 |
+
"“ARI Adminer” не может быть установлен. Требуется PHP версии 5.4.0 или выше "
|
55 |
+
"с установленным расширением SPL и WordPress версии 4.0 или выше.<br /><br /"
|
56 |
+
"><b>Рекомендации:</b> %s.<br /><br /><a href=\"%s\" class=\"button button-"
|
57 |
+
"primary\">Назад</a>"
|
58 |
+
|
59 |
+
#: includes/class-plugin.php:38 includes/class-plugin.php:39
|
60 |
+
#: includes/views/adminer-runner/class-html.php:8
|
61 |
+
msgid "ARI Adminer"
|
62 |
+
msgstr "ARI Adminer"
|
63 |
+
|
64 |
+
#: includes/class-plugin.php:48 includes/class-plugin.php:49
|
65 |
+
msgid "Run Adminer"
|
66 |
+
msgstr "Запустить Adminer"
|
67 |
+
|
68 |
+
#: includes/class-plugin.php:57 includes/class-plugin.php:58
|
69 |
+
#: includes/views/connections/class-html.php:12
|
70 |
+
msgid "Connections"
|
71 |
+
msgstr "Подключения к БД"
|
72 |
+
|
73 |
+
#: includes/class-plugin.php:66 includes/class-plugin.php:67
|
74 |
+
msgid "Settings"
|
75 |
+
msgstr "Настройки"
|
76 |
+
|
77 |
+
#: includes/controllers/adminer-runner/class-run.php:17
|
78 |
+
msgid "You do not have permissions to run Adminer"
|
79 |
+
msgstr "У вас недостаточно прав для запуска Adminer"
|
80 |
+
|
81 |
+
#: includes/controllers/adminer-runner/class-run.php:31
|
82 |
+
msgid "The selected connection is not available."
|
83 |
+
msgstr "Выбранное подключение не доступно"
|
84 |
+
|
85 |
+
#: includes/controllers/adminer-runner/class-run.php:47
|
86 |
+
msgid "Connection parameters are invalid."
|
87 |
+
msgstr "Введены некорректные параметры подключения"
|
88 |
+
|
89 |
+
#: includes/controllers/connections/class-bulk-delete.php:31
|
90 |
+
msgid "The connection(s) deleted successfully"
|
91 |
+
msgstr "Подключения удалены успешно"
|
92 |
+
|
93 |
+
#: includes/controllers/connections/class-bulk-delete.php:45
|
94 |
+
msgid "The connection(s) can not be deleted"
|
95 |
+
msgstr "Подключения не могут быть удалены"
|
96 |
+
|
97 |
+
#: includes/controllers/connections/class-delete.php:29
|
98 |
+
msgid "The connection deleted successfully"
|
99 |
+
msgstr "Подключение было удалено"
|
100 |
+
|
101 |
+
#: includes/controllers/connections/class-delete.php:43
|
102 |
+
msgid "The connection can not be deleted"
|
103 |
+
msgstr "Подключение не может быть удалено"
|
104 |
+
|
105 |
+
#: includes/controllers/connections/class-reload.php:23
|
106 |
+
msgid "The connection is saved successfully"
|
107 |
+
msgstr "Параметры подключения к БД сохранены"
|
108 |
+
|
109 |
+
#: includes/controls/grid/class-grid.php:13
|
110 |
+
msgid "No results found"
|
111 |
+
msgstr "Записей не найдено"
|
112 |
+
|
113 |
+
#: includes/helpers/class-helper.php:90
|
114 |
+
msgid "MySQL"
|
115 |
+
msgstr "MySQL"
|
116 |
+
|
117 |
+
#: includes/helpers/class-helper.php:94
|
118 |
+
msgid "SQLite"
|
119 |
+
msgstr "SQLite"
|
120 |
+
|
121 |
+
#: includes/helpers/class-helper.php:98
|
122 |
+
msgid "PostgreSQL"
|
123 |
+
msgstr "PostgreSQL"
|
124 |
+
|
125 |
+
#: includes/helpers/class-screen.php:11
|
126 |
+
msgid "Help"
|
127 |
+
msgstr "Помощь"
|
128 |
+
|
129 |
+
#: includes/helpers/class-screen.php:13
|
130 |
+
#, php-format
|
131 |
+
msgid "User's guide is available <a href=\"%s\" target=\"_blank\">here</a>."
|
132 |
+
msgstr ""
|
133 |
+
"Руководство пользователя доступно <a href=\"%s\" target=\"_blank\">здесь</a>."
|
134 |
+
|
135 |
+
#: includes/helpers/class-settings.php:44
|
136 |
+
msgid "Adminer theme"
|
137 |
+
msgstr "Adminer тема"
|
138 |
+
|
139 |
+
#: includes/helpers/class-settings.php:46
|
140 |
+
msgid "The selected theme will be used in Adminer application."
|
141 |
+
msgstr "Выбранная тема будет использована в приложении Adminer"
|
142 |
+
|
143 |
+
#: includes/helpers/class-settings.php:56
|
144 |
+
msgid "Mode"
|
145 |
+
msgstr "Режим работы"
|
146 |
+
|
147 |
+
#: includes/helpers/class-settings.php:58
|
148 |
+
msgid ""
|
149 |
+
"If \"Advanced\" mode is selected, \"Adminer\" application will be used. It "
|
150 |
+
"full-featured application for database management. When \"Simple\" option is "
|
151 |
+
"chosen, \"Adminer Editor\" will be used. It has limited functionality."
|
152 |
+
msgstr ""
|
153 |
+
"Если выбран “Продвинутый” режим, будет использоваться приложение Adminer. "
|
154 |
+
"Это многофункциональное приложение для управления базами данных. Adminer "
|
155 |
+
"Editor используется, если выбран “Простой” режим. Adminer Editor "
|
156 |
+
"поддерживает меньше возможностей."
|
157 |
+
|
158 |
+
#: includes/helpers/class-settings.php:68
|
159 |
+
msgid "Stop \"Adminer\" on logout"
|
160 |
+
msgstr "Останавливать Adminer при выходе из WordPress"
|
161 |
+
|
162 |
+
#: includes/helpers/class-settings.php:70
|
163 |
+
msgid ""
|
164 |
+
"If the parameter is enabled, all \"Adminer\" sessions will be terminated "
|
165 |
+
"when user is logged out from WordPress."
|
166 |
+
msgstr ""
|
167 |
+
"Используйте этот параметр, если хотите прервать все запущенные сессии "
|
168 |
+
"текущим пользователем в Adminer при выходе из WordPress."
|
169 |
+
|
170 |
+
#: includes/helpers/class-settings.php:80
|
171 |
+
msgid "Roles"
|
172 |
+
msgstr "Роли пользователей"
|
173 |
+
|
174 |
+
#: includes/helpers/class-settings.php:82
|
175 |
+
msgid "Only users with the selected user role will have access to the plugin."
|
176 |
+
msgstr "Только пользователи с выбранными ролями будут иметь доступ к Adminer"
|
177 |
+
|
178 |
+
#: includes/helpers/class-settings.php:162
|
179 |
+
msgid "Advanced"
|
180 |
+
msgstr "Продвинутый"
|
181 |
+
|
182 |
+
#: includes/helpers/class-settings.php:164
|
183 |
+
msgid "Simple"
|
184 |
+
msgstr "Простой"
|
185 |
+
|
186 |
+
#: includes/helpers/class-settings.php:193
|
187 |
+
msgid "Stop on logout"
|
188 |
+
msgstr "Прервать при выходе из WordPress"
|
189 |
+
|
190 |
+
#: includes/utils/dbcheck/class-db-check.php:25
|
191 |
+
#, php-format
|
192 |
+
msgid ""
|
193 |
+
"It is not possible to test connection. \"%s\" DB driver is not implemented."
|
194 |
+
msgstr "Невозможно проверить подключение к БД. “%s” БД драйвер отсутствует."
|
195 |
+
|
196 |
+
#: includes/views/adminer-runner/class-html.php:25
|
197 |
+
#: includes/views/connections/class-html.php:35
|
198 |
+
msgid "Connection parameters are valid."
|
199 |
+
msgstr "Введены корректные параметры подключения"
|
200 |
+
|
201 |
+
#: includes/views/adminer-runner/class-html.php:27
|
202 |
+
#: includes/views/connections/class-html.php:37
|
203 |
+
msgid "Could not connect to DB. The following error occurs: "
|
204 |
+
msgstr "Не получилось подключиться к БД. Произошла следующая ошибка: "
|
205 |
+
|
206 |
+
#: includes/views/adminer-runner/tmpl/default.php:18
|
207 |
+
msgid "How can I help?"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/views/adminer-runner/tmpl/default.php:22
|
211 |
+
msgid "Share feedback or idea"
|
212 |
+
msgstr "Поделитесь идеей"
|
213 |
+
|
214 |
+
#: includes/views/adminer-runner/tmpl/default.php:25
|
215 |
+
msgid "Write a review and give a rating"
|
216 |
+
msgstr "Напишите отзыв"
|
217 |
+
|
218 |
+
#: includes/views/adminer-runner/tmpl/default.php:28
|
219 |
+
msgid "Follow us on Twitter"
|
220 |
+
msgstr "Присоединяйтесь в Twitter"
|
221 |
+
|
222 |
+
#: includes/views/adminer-runner/tmpl/default.php:31
|
223 |
+
msgid "Try our WordPress plugins"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/views/adminer-runner/tmpl/default.php:40
|
227 |
+
msgid "DB Connection parameters"
|
228 |
+
msgstr "Параметры подключения к БД"
|
229 |
+
|
230 |
+
#: includes/views/adminer-runner/tmpl/default.php:45
|
231 |
+
msgid "Connection"
|
232 |
+
msgstr "Подключение"
|
233 |
+
|
234 |
+
#: includes/views/adminer-runner/tmpl/default.php:47
|
235 |
+
msgid "- Custom parameters -"
|
236 |
+
msgstr "- Ввести параметры -"
|
237 |
+
|
238 |
+
#: includes/views/adminer-runner/tmpl/default.php:48
|
239 |
+
msgid "- WordPress database -"
|
240 |
+
msgstr "- WordPress БД -"
|
241 |
+
|
242 |
+
#: includes/views/adminer-runner/tmpl/default.php:63
|
243 |
+
#: includes/views/connections/tmpl/default.php:43
|
244 |
+
msgid "DB Type"
|
245 |
+
msgstr "Тип БД"
|
246 |
+
|
247 |
+
#: includes/views/adminer-runner/tmpl/default.php:72
|
248 |
+
#: includes/views/connections/tmpl/default.php:52
|
249 |
+
msgid "Host"
|
250 |
+
msgstr "Имя сервера с БД"
|
251 |
+
|
252 |
+
#: includes/views/adminer-runner/tmpl/default.php:73
|
253 |
+
#: includes/views/connections/tmpl/default.php:53
|
254 |
+
msgid "Eg. localhost"
|
255 |
+
msgstr "localhost"
|
256 |
+
|
257 |
+
#: includes/views/adminer-runner/tmpl/default.php:77
|
258 |
+
#: includes/views/connections/tmpl/default.php:57
|
259 |
+
msgid "Path to DB file"
|
260 |
+
msgstr "Пусть к файлу БД"
|
261 |
+
|
262 |
+
#: includes/views/adminer-runner/tmpl/default.php:78
|
263 |
+
#: includes/views/connections/tmpl/default.php:58
|
264 |
+
msgid "DB name"
|
265 |
+
msgstr "Имя БД"
|
266 |
+
|
267 |
+
#: includes/views/adminer-runner/tmpl/default.php:79
|
268 |
+
#: includes/views/connections/tmpl/default.php:59
|
269 |
+
msgid "Specify database"
|
270 |
+
msgstr "Укажите БД"
|
271 |
+
|
272 |
+
#: includes/views/adminer-runner/tmpl/default.php:83
|
273 |
+
#: includes/views/connections/tmpl/default.php:63
|
274 |
+
msgid "User"
|
275 |
+
msgstr "Пользователь"
|
276 |
+
|
277 |
+
#: includes/views/adminer-runner/tmpl/default.php:88
|
278 |
+
#: includes/views/connections/tmpl/default.php:68
|
279 |
+
msgid "Password"
|
280 |
+
msgstr "Пароль"
|
281 |
+
|
282 |
+
#: includes/views/adminer-runner/tmpl/default.php:93
|
283 |
+
#: includes/views/connections/tmpl/default.php:74
|
284 |
+
msgid "Test Connection"
|
285 |
+
msgstr "Проверить соединение"
|
286 |
+
|
287 |
+
#: includes/views/adminer-runner/tmpl/default.php:98
|
288 |
+
msgid "Run Adminer in modal window"
|
289 |
+
msgstr "Запустить Adminer в модальном окне"
|
290 |
+
|
291 |
+
#: includes/views/adminer-runner/tmpl/default.php:99
|
292 |
+
msgid "Run Adminer in a new window"
|
293 |
+
msgstr "Запустить Adminer в новом окне"
|
294 |
+
|
295 |
+
#: includes/views/class-base.php:27
|
296 |
+
msgid "Yes"
|
297 |
+
msgstr "Да"
|
298 |
+
|
299 |
+
#: includes/views/class-base.php:29
|
300 |
+
msgid "No"
|
301 |
+
msgstr "Нет"
|
302 |
+
|
303 |
+
#: includes/views/class-base.php:31
|
304 |
+
msgid "OK"
|
305 |
+
msgstr "ОК"
|
306 |
+
|
307 |
+
#: includes/views/class-base.php:33
|
308 |
+
msgid "Cancel"
|
309 |
+
msgstr "Отмена"
|
310 |
+
|
311 |
+
#: includes/views/class-base.php:35
|
312 |
+
msgid "Close"
|
313 |
+
msgstr "Закрыть"
|
314 |
+
|
315 |
+
#: includes/views/connections/class-html.php:31
|
316 |
+
msgid "Do you want to delete the selected item?"
|
317 |
+
msgstr "Вы действительно хотите удалить выбранную запись?"
|
318 |
+
|
319 |
+
#: includes/views/connections/class-html.php:33
|
320 |
+
msgid "Do you want to delete the selected items?"
|
321 |
+
msgstr "Вы действительно хотите удалить выбранные записи?"
|
322 |
+
|
323 |
+
#: includes/views/connections/class-html.php:39
|
324 |
+
msgid "The connection could not be saved. Try again please."
|
325 |
+
msgstr "Параметры подключения к БД не были сохранены. Попробуйте ещё раз."
|
326 |
+
|
327 |
+
#: includes/views/connections/class-html.php:41
|
328 |
+
msgid "The connection could not be tested. Try again please."
|
329 |
+
msgstr "Не удалось проверить параметры подключения. Попробуйте ещё раз."
|
330 |
+
|
331 |
+
#: includes/views/connections/class-html.php:43
|
332 |
+
msgid "Select an action"
|
333 |
+
msgstr "Выберите действие"
|
334 |
+
|
335 |
+
#: includes/views/connections/class-html.php:45
|
336 |
+
msgid "Select at least one item"
|
337 |
+
msgstr "Выберите хотя бы одну запись"
|
338 |
+
|
339 |
+
#: includes/views/connections/class-html.php:114
|
340 |
+
#: includes/views/connections/tmpl/default.php:38
|
341 |
+
msgid "Title"
|
342 |
+
msgstr "Название"
|
343 |
+
|
344 |
+
#: includes/views/connections/class-html.php:129
|
345 |
+
msgid "Edit"
|
346 |
+
msgstr "Редактировать"
|
347 |
+
|
348 |
+
#: includes/views/connections/class-html.php:135
|
349 |
+
#: includes/views/connections/tmpl/toolbar.php:9
|
350 |
+
msgid "Delete"
|
351 |
+
msgstr "Удалить"
|
352 |
+
|
353 |
+
#: includes/views/connections/class-html.php:144
|
354 |
+
msgid "Show more details"
|
355 |
+
msgstr "Показать больше данных"
|
356 |
+
|
357 |
+
#: includes/views/connections/class-html.php:154
|
358 |
+
msgid "Type"
|
359 |
+
msgstr "Тип"
|
360 |
+
|
361 |
+
#: includes/views/connections/tmpl/default.php:16
|
362 |
+
msgid "Add New"
|
363 |
+
msgstr "Добавить"
|
364 |
+
|
365 |
+
#: includes/views/connections/tmpl/default.php:34
|
366 |
+
msgid "Connection settings"
|
367 |
+
msgstr "Параметры подключения"
|
368 |
+
|
369 |
+
#: includes/views/connections/tmpl/default.php:39
|
370 |
+
msgid "Specify title"
|
371 |
+
msgstr "Введите название"
|
372 |
+
|
373 |
+
#: includes/views/connections/tmpl/default.php:73
|
374 |
+
msgid "Save"
|
375 |
+
msgstr "Сохранить"
|
376 |
+
|
377 |
+
#: includes/views/connections/tmpl/toolbar.php:6
|
378 |
+
msgid "Select bulk action"
|
379 |
+
msgstr "Выберите массовое действие"
|
380 |
+
|
381 |
+
#: includes/views/connections/tmpl/toolbar.php:8
|
382 |
+
msgid "- Bulk Actions -"
|
383 |
+
msgstr "- Действие -"
|
384 |
+
|
385 |
+
#: includes/views/connections/tmpl/toolbar.php:11
|
386 |
+
msgid "Apply"
|
387 |
+
msgstr "Применить"
|
388 |
+
|
389 |
+
#: includes/views/settings/class-html.php:8
|
390 |
+
msgid "ARI Adminer - Settings"
|
391 |
+
msgstr "ARI Adminer - Настройки"
|
392 |
+
|
393 |
+
#: includes/views/settings/tmpl/default.php:6
|
394 |
+
msgid "Save Changes"
|
395 |
+
msgstr "Сохранить изменения"
|
396 |
+
|
397 |
+
#~ msgid "What's next?"
|
398 |
+
#~ msgstr "Как помочь проекту?"
|
399 |
+
|
400 |
+
#~ msgid "Other our WordPress plugins"
|
401 |
+
#~ msgstr "Наши WordPress плагины"
|
languages/ari-adminer.pot
CHANGED
@@ -7,7 +7,7 @@ msgstr ""
|
|
7 |
"Project-Id-Version: ARI "
|
8 |
"Adminer v 1.0.0\n"
|
9 |
"POT-Creation-Date: "
|
10 |
-
"2016-12-
|
11 |
"PO-Revision-Date: \n"
|
12 |
"Last-Translator: Your "
|
13 |
"Name <you@example.com>\n"
|
@@ -274,8 +274,23 @@ msgid ""
|
|
274 |
"implemented."
|
275 |
msgstr ""
|
276 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
#: includes/views/adminer-runner/tmpl/default.php:18
|
278 |
-
msgid "
|
279 |
msgstr ""
|
280 |
|
281 |
#: includes/views/adminer-runner/tmpl/default.php:22
|
@@ -296,8 +311,7 @@ msgstr ""
|
|
296 |
|
297 |
#: includes/views/adminer-runner/tmpl/default.php:31
|
298 |
msgid ""
|
299 |
-
"
|
300 |
-
"plugins"
|
301 |
msgstr ""
|
302 |
|
303 |
#: includes/views/adminer-runner/tmpl/default.php:40
|
@@ -329,6 +343,11 @@ msgstr ""
|
|
329 |
msgid "Host"
|
330 |
msgstr ""
|
331 |
|
|
|
|
|
|
|
|
|
|
|
332 |
#: includes/views/adminer-runner/tmpl/default.php:77
|
333 |
#: includes/views/connections/tmpl/default.php:57
|
334 |
msgid "Path to DB file"
|
@@ -339,6 +358,11 @@ msgstr ""
|
|
339 |
msgid "DB name"
|
340 |
msgstr ""
|
341 |
|
|
|
|
|
|
|
|
|
|
|
342 |
#: includes/views/adminer-runner/tmpl/default.php:83
|
343 |
#: includes/views/connections/tmpl/default.php:63
|
344 |
msgid "User"
|
@@ -398,6 +422,29 @@ msgid ""
|
|
398 |
"the selected items?"
|
399 |
msgstr ""
|
400 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
#: includes/views/connections/class-html.php:114
|
402 |
#: includes/views/connections/tmpl/default.php:38
|
403 |
msgid "Title"
|
@@ -428,6 +475,10 @@ msgstr ""
|
|
428 |
msgid "Connection settings"
|
429 |
msgstr ""
|
430 |
|
|
|
|
|
|
|
|
|
431 |
#: includes/views/connections/tmpl/default.php:73
|
432 |
msgid "Save"
|
433 |
msgstr ""
|
7 |
"Project-Id-Version: ARI "
|
8 |
"Adminer v 1.0.0\n"
|
9 |
"POT-Creation-Date: "
|
10 |
+
"2016-12-29 15:01+0300\n"
|
11 |
"PO-Revision-Date: \n"
|
12 |
"Last-Translator: Your "
|
13 |
"Name <you@example.com>\n"
|
274 |
"implemented."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/views/adminer-runner/class-html.php:25
|
278 |
+
#: includes/views/connections/class-html.php:35
|
279 |
+
msgid ""
|
280 |
+
"Connection parameters "
|
281 |
+
"are valid."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: includes/views/adminer-runner/class-html.php:27
|
285 |
+
#: includes/views/connections/class-html.php:37
|
286 |
+
msgid ""
|
287 |
+
"Could not connect to DB. "
|
288 |
+
"The following error "
|
289 |
+
"occurs: "
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
#: includes/views/adminer-runner/tmpl/default.php:18
|
293 |
+
msgid "How can I help?"
|
294 |
msgstr ""
|
295 |
|
296 |
#: includes/views/adminer-runner/tmpl/default.php:22
|
311 |
|
312 |
#: includes/views/adminer-runner/tmpl/default.php:31
|
313 |
msgid ""
|
314 |
+
"Try our WordPress plugins"
|
|
|
315 |
msgstr ""
|
316 |
|
317 |
#: includes/views/adminer-runner/tmpl/default.php:40
|
343 |
msgid "Host"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/views/adminer-runner/tmpl/default.php:73
|
347 |
+
#: includes/views/connections/tmpl/default.php:53
|
348 |
+
msgid "Eg. localhost"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
#: includes/views/adminer-runner/tmpl/default.php:77
|
352 |
#: includes/views/connections/tmpl/default.php:57
|
353 |
msgid "Path to DB file"
|
358 |
msgid "DB name"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: includes/views/adminer-runner/tmpl/default.php:79
|
362 |
+
#: includes/views/connections/tmpl/default.php:59
|
363 |
+
msgid "Specify database"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
#: includes/views/adminer-runner/tmpl/default.php:83
|
367 |
#: includes/views/connections/tmpl/default.php:63
|
368 |
msgid "User"
|
422 |
"the selected items?"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/views/connections/class-html.php:39
|
426 |
+
msgid ""
|
427 |
+
"The connection could not "
|
428 |
+
"be saved. Try again "
|
429 |
+
"please."
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: includes/views/connections/class-html.php:41
|
433 |
+
msgid ""
|
434 |
+
"The connection could not "
|
435 |
+
"be tested. Try again "
|
436 |
+
"please."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: includes/views/connections/class-html.php:43
|
440 |
+
msgid "Select an action"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: includes/views/connections/class-html.php:45
|
444 |
+
msgid ""
|
445 |
+
"Select at least one item"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
#: includes/views/connections/class-html.php:114
|
449 |
#: includes/views/connections/tmpl/default.php:38
|
450 |
msgid "Title"
|
475 |
msgid "Connection settings"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/views/connections/tmpl/default.php:39
|
479 |
+
msgid "Specify title"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
#: includes/views/connections/tmpl/default.php:73
|
483 |
msgid "Save"
|
484 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wp-quiz.ari-soft.com/plugins/wordpress-adminer.html
|
|
4 |
Tags: adminer, sql, database, mysql, report, sqlite, table, postgresql, dump, backup, import, export, phpmyadmin
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.0
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -34,6 +34,8 @@ ARI Adminer supports the following features:
|
|
34 |
|
35 |
* Run SQL queries, import and export data, create dump and backup
|
36 |
|
|
|
|
|
37 |
|
38 |
More information can be found in [user's guide](http://www.ari-soft.com/docs/wordpress/ari-adminer/v1/en/index.html).
|
39 |
|
@@ -67,6 +69,9 @@ Sure, it is available [here](http://www.ari-soft.com/docs/wordpress/ari-adminer/
|
|
67 |
|
68 |
== Changelog ==
|
69 |
|
|
|
|
|
|
|
70 |
= 1.0.2 =
|
71 |
* Ask confirmation on connections bulk delete
|
72 |
|
@@ -79,6 +84,9 @@ Sure, it is available [here](http://www.ari-soft.com/docs/wordpress/ari-adminer/
|
|
79 |
|
80 |
== Upgrade Notice ==
|
81 |
|
|
|
|
|
|
|
82 |
= 1.0.2 =
|
83 |
* Ask confirmation on connections bulk delete
|
84 |
|
4 |
Tags: adminer, sql, database, mysql, report, sqlite, table, postgresql, dump, backup, import, export, phpmyadmin
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.0
|
7 |
+
Stable tag: 1.0.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
34 |
|
35 |
* Run SQL queries, import and export data, create dump and backup
|
36 |
|
37 |
+
* WordPress part contains **English** and **Russian** translations, can create your own. Adminer contains more than 35 translations
|
38 |
+
|
39 |
|
40 |
More information can be found in [user's guide](http://www.ari-soft.com/docs/wordpress/ari-adminer/v1/en/index.html).
|
41 |
|
69 |
|
70 |
== Changelog ==
|
71 |
|
72 |
+
= 1.0.3 =
|
73 |
+
* Russian translation is added
|
74 |
+
|
75 |
= 1.0.2 =
|
76 |
* Ask confirmation on connections bulk delete
|
77 |
|
84 |
|
85 |
== Upgrade Notice ==
|
86 |
|
87 |
+
= 1.0.3 =
|
88 |
+
* Russian translation is added
|
89 |
+
|
90 |
= 1.0.2 =
|
91 |
* Ask confirmation on connections bulk delete
|
92 |
|