Version Description
- On the plugin settings page, text of buttons are corrected.
- On the plugin settings page, the information about the plugin version number moved to header section.
- Some mention of constants replaced with variables for easier access.
- Content of the "Usage" tab updated.
- Content of the "FAQ" tab updated.
- An SSL issue within the admin area fixed. The 'src=http://' replaced with 'src=//'.
- Added load of the jQuery library on the plugin settings page.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | My Custom Functions |
Version | 4.4 |
Comparing to | |
See all releases |
Code changes from version 4.3 to 4.4
- inc/css/admin.css +12 -15
- inc/js/admin.js +1 -1
- inc/php/enqueue.php +18 -10
- inc/php/messages.php +2 -2
- inc/php/page.php +85 -65
- inc/php/settings.php +18 -20
- inc/php/versioning.php +1 -0
- languages/Readme.txt +5 -3
- languages/my-custom-functions-es_ES.mo +0 -0
- languages/my-custom-functions-es_ES.po +107 -80
- languages/my-custom-functions-fr_FR.mo +0 -0
- languages/my-custom-functions-fr_FR.po +118 -88
- languages/my-custom-functions-ru_RU.mo +0 -0
- languages/my-custom-functions-ru_RU.po +128 -91
- languages/my-custom-functions-zh_TW.mo +0 -0
- languages/my-custom-functions-zh_TW.po +118 -88
- languages/my-custom-functions.pot +109 -84
- my-custom-functions.php +2 -2
- readme.txt +19 -6
inc/css/admin.css
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @uthor Arthur Gareginyan
|
6 |
* @link http://www.arthurgareginyan.com
|
7 |
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
-
* @since 4.
|
9 |
*/
|
10 |
|
11 |
|
@@ -52,16 +52,7 @@ h2 span {
|
|
52 |
display: block ;
|
53 |
margin-top: 15px;
|
54 |
font-size: 16px;
|
55 |
-
text-shadow:
|
56 |
-
0 1px 0 #2e2e2e,
|
57 |
-
0 2px 0 #2a2a2a,
|
58 |
-
0 3px 0 #262626,
|
59 |
-
0 4px 0 #222,
|
60 |
-
0 5px 0 #1e1e1e,
|
61 |
-
0 6px 0 #1a1a1a,
|
62 |
-
0 7px 0 #161616,
|
63 |
-
0 8px 0 #121212,
|
64 |
-
0 22px 30px rgba(0, 0, 0, 0.9);
|
65 |
line-height: 20px !important;
|
66 |
}
|
67 |
h2 span a,
|
@@ -74,6 +65,13 @@ h2 span a:hover {
|
|
74 |
-webkit-transition: all 0.2s ease-in-out;
|
75 |
transition: all 0.2s ease-in-out;
|
76 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
/* Titles and Descriptions of sections
|
79 |
-------------------------------------------------------------- */
|
@@ -100,6 +98,9 @@ h3.title {
|
|
100 |
margin-right: 20px;
|
101 |
border-radius: 15px;
|
102 |
}
|
|
|
|
|
|
|
103 |
.hello-message .modal-body p {
|
104 |
font-size: 16px;
|
105 |
}
|
@@ -142,10 +143,6 @@ h3.title {
|
|
142 |
#side-sortables .paypal {
|
143 |
font-size: 18px;
|
144 |
}
|
145 |
-
#side-sortables .version {
|
146 |
-
color: #888888;
|
147 |
-
text-align: right;
|
148 |
-
}
|
149 |
|
150 |
/* Support - addition section
|
151 |
-------------------------------------------------------------- */
|
5 |
* @uthor Arthur Gareginyan
|
6 |
* @link http://www.arthurgareginyan.com
|
7 |
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
+
* @since 4.4
|
9 |
*/
|
10 |
|
11 |
|
52 |
display: block ;
|
53 |
margin-top: 15px;
|
54 |
font-size: 16px;
|
55 |
+
text-shadow: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
line-height: 20px !important;
|
57 |
}
|
58 |
h2 span a,
|
65 |
-webkit-transition: all 0.2s ease-in-out;
|
66 |
transition: all 0.2s ease-in-out;
|
67 |
}
|
68 |
+
h2 .version {
|
69 |
+
position: absolute;
|
70 |
+
right: 40px;
|
71 |
+
color: #a6a6a6;
|
72 |
+
text-shadow: none;
|
73 |
+
letter-spacing: .1em;
|
74 |
+
}
|
75 |
|
76 |
/* Titles and Descriptions of sections
|
77 |
-------------------------------------------------------------- */
|
98 |
margin-right: 20px;
|
99 |
border-radius: 15px;
|
100 |
}
|
101 |
+
.hello-message .modal-body .emoji {
|
102 |
+
float: none;
|
103 |
+
}
|
104 |
.hello-message .modal-body p {
|
105 |
font-size: 16px;
|
106 |
}
|
143 |
#side-sortables .paypal {
|
144 |
font-size: 18px;
|
145 |
}
|
|
|
|
|
|
|
|
|
146 |
|
147 |
/* Support - addition section
|
148 |
-------------------------------------------------------------- */
|
inc/js/admin.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
* Plugin JavaScript and
|
3 |
*
|
4 |
* @package My Custom Functions
|
5 |
* @uthor Arthur Gareginyan
|
1 |
/*
|
2 |
+
* Plugin JavaScript and jQuery code for the admin pages of website
|
3 |
*
|
4 |
* @package My Custom Functions
|
5 |
* @uthor Arthur Gareginyan
|
inc/php/enqueue.php
CHANGED
@@ -10,31 +10,39 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
10 |
/**
|
11 |
* Load scripts and style sheet for settings page
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function MCFunctions_load_scripts_admin( $hook ) {
|
16 |
|
|
|
|
|
|
|
|
|
|
|
17 |
// Return if the page is not a settings page of this plugin
|
18 |
-
$settings_page = 'appearance_page_' .
|
19 |
if ( $settings_page != $hook ) {
|
20 |
return;
|
21 |
}
|
22 |
|
|
|
|
|
|
|
23 |
// Style sheet
|
24 |
-
wp_enqueue_style(
|
25 |
|
26 |
// JavaScript
|
27 |
-
wp_enqueue_script(
|
28 |
|
29 |
// Bootstrap library
|
30 |
-
wp_enqueue_style(
|
31 |
-
wp_enqueue_style(
|
32 |
-
wp_enqueue_script(
|
33 |
|
34 |
// CodeMirror library
|
35 |
-
wp_enqueue_style(
|
36 |
-
wp_enqueue_script(
|
37 |
-
wp_enqueue_script(
|
38 |
|
39 |
}
|
40 |
add_action( 'admin_enqueue_scripts', MCFUNC_PREFIX . '_load_scripts_admin' );
|
10 |
/**
|
11 |
* Load scripts and style sheet for settings page
|
12 |
*
|
13 |
+
* @since 4.4
|
14 |
*/
|
15 |
function MCFunctions_load_scripts_admin( $hook ) {
|
16 |
|
17 |
+
// Put value of constants to variables for easier access
|
18 |
+
$slug = MCFUNC_SLUG;
|
19 |
+
$prefix = MCFUNC_PREFIX;
|
20 |
+
$url = MCFUNC_URL;
|
21 |
+
|
22 |
// Return if the page is not a settings page of this plugin
|
23 |
+
$settings_page = 'appearance_page_' . $slug;
|
24 |
if ( $settings_page != $hook ) {
|
25 |
return;
|
26 |
}
|
27 |
|
28 |
+
// Load jQuery library
|
29 |
+
wp_enqueue_script( 'jquery' );
|
30 |
+
|
31 |
// Style sheet
|
32 |
+
wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css' );
|
33 |
|
34 |
// JavaScript
|
35 |
+
wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), false, true );
|
36 |
|
37 |
// Bootstrap library
|
38 |
+
wp_enqueue_style( $prefix . '-bootstrap-css', $url . 'inc/lib/bootstrap/bootstrap.css' );
|
39 |
+
wp_enqueue_style( $prefix . '-bootstrap-theme-css', $url . 'inc/lib/bootstrap/bootstrap-theme.css' );
|
40 |
+
wp_enqueue_script( $prefix . '-bootstrap-js', $url . 'inc/lib/bootstrap/bootstrap.js' );
|
41 |
|
42 |
// CodeMirror library
|
43 |
+
wp_enqueue_style( $prefix . '-codemirror-css', $url . 'inc/lib/codemirror/codemirror.css' );
|
44 |
+
wp_enqueue_script( $prefix . '-codemirror-js', $url . 'inc/lib/codemirror/codemirror-compressed.js' );
|
45 |
+
wp_enqueue_script( $prefix . '-codemirror-active-line-js', $url . 'inc/lib/codemirror/addons/active-line.js' );
|
46 |
|
47 |
}
|
48 |
add_action( 'admin_enqueue_scripts', MCFUNC_PREFIX . '_load_scripts_admin' );
|
inc/php/messages.php
CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
10 |
/**
|
11 |
* Hello message - Bootstrap Modal
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function MCFunctions_hello_message() {
|
16 |
|
@@ -29,7 +29,7 @@ function MCFunctions_hello_message() {
|
|
29 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
30 |
<p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', MCFUNC_TEXT ); ?></p>
|
31 |
<p><?php printf(
|
32 |
-
__( 'Thank you for installing my plugin! I hope you will love it %s', MCFUNC_TEXT ),
|
33 |
'😃'
|
34 |
);
|
35 |
?></p>
|
10 |
/**
|
11 |
* Hello message - Bootstrap Modal
|
12 |
*
|
13 |
+
* @since 4.3
|
14 |
*/
|
15 |
function MCFunctions_hello_message() {
|
16 |
|
29 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
30 |
<p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', MCFUNC_TEXT ); ?></p>
|
31 |
<p><?php printf(
|
32 |
+
__( 'Thank you for installing my plugin! I hope you will love it! %s', MCFUNC_TEXT ),
|
33 |
'😃'
|
34 |
);
|
35 |
?></p>
|
inc/php/page.php
CHANGED
@@ -10,10 +10,16 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function MCFunctions_render_submenu_page() {
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
// Call messages
|
18 |
MCFunctions_hello_message();
|
19 |
MCFunctions_error_message();
|
@@ -24,27 +30,28 @@ function MCFunctions_render_submenu_page() {
|
|
24 |
?>
|
25 |
<div class="wrap">
|
26 |
<h2>
|
27 |
-
<?php echo
|
28 |
<span>
|
29 |
<?php printf(
|
30 |
-
__( 'by %s Arthur Gareginyan %s',
|
31 |
'<a href="http://www.arthurgareginyan.com" target="_blank">',
|
32 |
'</a>'
|
33 |
);
|
34 |
?>
|
35 |
</span>
|
|
|
36 |
</h2>
|
37 |
|
38 |
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
39 |
|
40 |
<!-- TABS NAVIGATION MENU -->
|
41 |
<ul class="tabs-nav">
|
42 |
-
<li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Main',
|
43 |
-
<li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage',
|
44 |
-
<li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.',
|
45 |
-
<li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author',
|
46 |
-
<li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support',
|
47 |
-
<li><a href="#tab-family" data-toggle="tab"><?php _e( 'Family',
|
48 |
</ul>
|
49 |
<!-- END-TABS NAVIGATION MENU -->
|
50 |
|
@@ -59,24 +66,26 @@ function MCFunctions_render_submenu_page() {
|
|
59 |
<!-- TAB 2 -->
|
60 |
<div class="tab-page fade" id="tab-usage">
|
61 |
<div class="postbox">
|
62 |
-
<h3 class="title"><?php _e( 'Usage',
|
63 |
<div class="inside">
|
64 |
-
<p><?php _e( 'To add your custom functions (the PHP code) to your website, simply follow these steps:',
|
65 |
<ol class="custom-counter">
|
66 |
-
<li><?php _e( 'Go to the "Main" tab.',
|
67 |
-
<li><?php _e( '
|
68 |
-
<?php _e( 'Example of PHP code:',
|
69 |
<pre><code>function NameOfYourFunction {
|
70 |
|
71 |
...
|
72 |
|
73 |
}</code></pre>
|
74 |
-
<p class="note"><b><?php _e( 'Note!',
|
75 |
-
<p class="note"><b><?php _e( 'Note!',
|
76 |
</li>
|
77 |
-
<li><?php _e( '
|
|
|
|
|
78 |
</ol>
|
79 |
-
<p class="note"><b><?php _e( 'Note!',
|
80 |
</div>
|
81 |
</div>
|
82 |
</div>
|
@@ -85,12 +94,16 @@ function MCFunctions_render_submenu_page() {
|
|
85 |
<!-- TAB 3 -->
|
86 |
<div class="tab-page fade" id="tab-faq">
|
87 |
<div class="postbox">
|
88 |
-
<h3 class="title"><?php _e( 'Frequently Asked Questions',
|
89 |
<div class="inside">
|
90 |
|
|
|
|
|
|
|
|
|
91 |
<div class="panel-group" id="collapse-group">
|
92 |
<?php
|
93 |
-
$loopvalue = '
|
94 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
95 |
echo '<div class="panel panel-default">
|
96 |
<div class="panel-heading">
|
@@ -107,21 +120,22 @@ function MCFunctions_render_submenu_page() {
|
|
107 |
?>
|
108 |
</div>
|
109 |
|
110 |
-
<div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?',
|
111 |
-
<div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.',
|
112 |
|
113 |
-
<div class="question-2"><?php _e( 'Can I use this plugin on my language?',
|
114 |
<div class="answer-2"><?php printf(
|
115 |
-
__( 'Yes. But If your language is not available then you can make one.
|
116 |
-
'<a href="mailto:arthurgareginyan@gmail.com?subject=
|
117 |
);
|
118 |
-
|
|
|
119 |
|
120 |
-
<div class="question-3"><?php _e( 'How does it work?',
|
121 |
-
<div class="answer-3"><?php _e( 'On the "
|
122 |
|
123 |
-
<div class="question-4"><?php _e( 'Can I use HTML/CSS/JS code integrated in PHP code?',
|
124 |
-
<div class="answer-4"><?php _e( 'Yes. But you need to do it properly, like this:',
|
125 |
<pre><code>function NameOfYourFunction {
|
126 |
|
127 |
echo "<script>
|
@@ -131,65 +145,71 @@ function MCFunctions_render_submenu_page() {
|
|
131 |
}</code></pre>
|
132 |
</div>
|
133 |
|
134 |
-
<div class="question-5"><?php _e( 'How much of PHP code (characters) I can enter in the text field?',
|
135 |
-
<div class="answer-5"><?php _e( 'I don\'t limit the number of characters.',
|
136 |
|
137 |
-
<div class="question-6 question-red"><?php _e( 'On the plugin settings page, an error message appears. What could be wrong?',
|
138 |
-
<div class="answer-6"><?php _e( 'Here are a few of the most likely causes of the error message:',
|
139 |
<ol class="custom-counter">
|
140 |
-
<li><?php _e( 'You make a syntax error in the code that you have entered. Check the syntax of your code and try again.',
|
141 |
-
<li><?php _e( 'You entered two functions with the same name. Use a unique names for your functions.',
|
142 |
-
<li><?php _e( 'You have entered function with a name that is already occupied by another function. Use a unique name for your function.',
|
143 |
-
<li><?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.',
|
144 |
</ol></div>
|
145 |
|
146 |
-
<div class="question-7"><?php _e( 'Does this plugin requires any modification of the theme?',
|
147 |
-
<div class="answer-7"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.',
|
148 |
|
149 |
-
<div class="question-8"><?php _e( 'Does this require any knowledge of HTML or CSS?',
|
150 |
-
<div class="answer-8"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.',
|
151 |
|
152 |
-
<div class="question-9 question-red"><?php _e( 'It\'s not working. What could be wrong?',
|
153 |
-
<div class="answer-9"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache. Clearing your browser\'s cache may solve the problem.',
|
154 |
-
<?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, I\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.',
|
155 |
|
156 |
-
<div class="question-10 question-red"><?php _e( 'What to do if this plugin crashed the website?',
|
157 |
-
<div class="answer-10"><?php _e( 'This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This is due to the fact that your custom code has a syntax error that this plugin could not detect. When this happens with you just do the following and all will be fine.',
|
158 |
<ol class="custom-counter">
|
159 |
-
<li><?php _e( 'Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>).',
|
160 |
-
<li><?php _e( 'Rename the "START" file to "STOP". This will stop the execution of your custom code.',
|
161 |
-
<li><?php _e( 'Return to the plugin settings page and edit/fix your custom code that you entered before the crash.',
|
162 |
-
<li><?php _e( 'Rename the "STOP" file to "START" and you\'re done!',
|
163 |
</ol>
|
164 |
-
<?php _e( 'This plugin stored you entered code in the database of your website. For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>.',
|
165 |
|
166 |
-
<div class="question-11 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?',
|
167 |
-
<div class="answer-11"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.',
|
168 |
|
169 |
-
<div class="question-12 question-red"><?php _e( 'Where to report bug if found?',
|
170 |
<div class="answer-12"><?php printf(
|
171 |
-
__( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.',
|
172 |
-
'<a href="https://github.com/ArthurGareginyan/
|
173 |
'</a>'
|
174 |
);
|
175 |
?></div>
|
176 |
|
177 |
-
<div class="question-13"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?',
|
178 |
<div class="answer-13"><?php printf(
|
179 |
-
__( 'Any suggestions are very welcome! Please send me an email to %s
|
180 |
-
'<a href="mailto:arthurgareginyan@gmail.com?subject=
|
181 |
-
'</a>'
|
182 |
);
|
183 |
?></div>
|
184 |
|
185 |
-
<div class="question-14"><?php _e( 'I love this plugin! Can I help somehow?',
|
186 |
<div class="answer-14"><?php printf(
|
187 |
-
__( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!',
|
188 |
'<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
|
189 |
'</a>'
|
190 |
);
|
191 |
?></div>
|
192 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
</div>
|
194 |
</div>
|
195 |
</div>
|
@@ -198,7 +218,7 @@ function MCFunctions_render_submenu_page() {
|
|
198 |
<!-- TAB 4 -->
|
199 |
<div class="tab-page fade" id="tab-author">
|
200 |
<div class="postbox">
|
201 |
-
<h3 class="title"><?php _e( 'Author',
|
202 |
<div class="inside include-tab-author"></div>
|
203 |
</div>
|
204 |
</div>
|
@@ -207,7 +227,7 @@ function MCFunctions_render_submenu_page() {
|
|
207 |
<!-- TAB 5 -->
|
208 |
<div class="tab-page fade" id="tab-support">
|
209 |
<div class="postbox">
|
210 |
-
<h3 class="title"><?php _e( 'Support',
|
211 |
<div class="inside include-tab-support"></div>
|
212 |
</div>
|
213 |
</div>
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
+
* @since 4.4
|
14 |
*/
|
15 |
function MCFunctions_render_submenu_page() {
|
16 |
|
17 |
+
// Put value of constants to variables for easier access
|
18 |
+
$name = MCFUNC_NAME;
|
19 |
+
$slug = MCFUNC_SLUG;
|
20 |
+
$version = MCFUNC_VERSION;
|
21 |
+
$text = MCFUNC_TEXT;
|
22 |
+
|
23 |
// Call messages
|
24 |
MCFunctions_hello_message();
|
25 |
MCFunctions_error_message();
|
30 |
?>
|
31 |
<div class="wrap">
|
32 |
<h2>
|
33 |
+
<?php echo $name; ?>
|
34 |
<span>
|
35 |
<?php printf(
|
36 |
+
__( 'by %s Arthur Gareginyan %s', $text ),
|
37 |
'<a href="http://www.arthurgareginyan.com" target="_blank">',
|
38 |
'</a>'
|
39 |
);
|
40 |
?>
|
41 |
</span>
|
42 |
+
<p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
|
43 |
</h2>
|
44 |
|
45 |
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
46 |
|
47 |
<!-- TABS NAVIGATION MENU -->
|
48 |
<ul class="tabs-nav">
|
49 |
+
<li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Main', $text ); ?></a></li>
|
50 |
+
<li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
|
51 |
+
<li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
|
52 |
+
<li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
|
53 |
+
<li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
|
54 |
+
<li><a href="#tab-family" data-toggle="tab"><?php _e( 'Family', $text ); ?></a></li>
|
55 |
</ul>
|
56 |
<!-- END-TABS NAVIGATION MENU -->
|
57 |
|
66 |
<!-- TAB 2 -->
|
67 |
<div class="tab-page fade" id="tab-usage">
|
68 |
<div class="postbox">
|
69 |
+
<h3 class="title"><?php _e( 'Usage', $text ); ?></h3>
|
70 |
<div class="inside">
|
71 |
+
<p><?php _e( 'To add your custom functions (the PHP code) to your website, simply follow these steps:', $text ); ?></p>
|
72 |
<ol class="custom-counter">
|
73 |
+
<li><?php _e( 'Go to the "Main" tab.', $text ); ?></li>
|
74 |
+
<li><?php _e( 'Place your PHP code in the field.', $text ); ?><br><br>
|
75 |
+
<?php _e( 'Example of PHP code:', $text ); ?>
|
76 |
<pre><code>function NameOfYourFunction {
|
77 |
|
78 |
...
|
79 |
|
80 |
}</code></pre>
|
81 |
+
<p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'Please do not wrap your PHP code in the <code><?php</code>...<code>?></code> HTML tags.', $text ); ?></p>
|
82 |
+
<p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash.', $text ); ?></p>
|
83 |
</li>
|
84 |
+
<li><?php _e( 'Switch the toggle to the "ON" position.', $text ); ?></li>
|
85 |
+
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
86 |
+
<li><?php _e( 'Enjoy the result of applying your PHP code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
87 |
</ol>
|
88 |
+
<p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'If you want more options then tell me and I will be happy to add it.', $text ); ?></p>
|
89 |
</div>
|
90 |
</div>
|
91 |
</div>
|
94 |
<!-- TAB 3 -->
|
95 |
<div class="tab-page fade" id="tab-faq">
|
96 |
<div class="postbox">
|
97 |
+
<h3 class="title"><?php _e( 'Frequently Asked Questions', $text ); ?></h3>
|
98 |
<div class="inside">
|
99 |
|
100 |
+
<p class="note">
|
101 |
+
<?php _e( 'If you have a question, please read the Frequently Asked Questions below to see if the answer is here.', $text ); ?>
|
102 |
+
</p>
|
103 |
+
|
104 |
<div class="panel-group" id="collapse-group">
|
105 |
<?php
|
106 |
+
$loopvalue = '15';
|
107 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
108 |
echo '<div class="panel panel-default">
|
109 |
<div class="panel-heading">
|
120 |
?>
|
121 |
</div>
|
122 |
|
123 |
+
<div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?', $text ); ?></div>
|
124 |
+
<div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
|
125 |
|
126 |
+
<div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
|
127 |
<div class="answer-2"><?php printf(
|
128 |
+
__( 'Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the <code>languages</code> folder. Just send the PO file to me at the %s and I will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ),
|
129 |
+
'<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
|
130 |
);
|
131 |
+
?><br><br>
|
132 |
+
<?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?></div>
|
133 |
|
134 |
+
<div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
|
135 |
+
<div class="answer-3"><?php _e( 'On the "Main" tab, place your PHP code in the field, switch the toggle to the "ON" position and click the "Save changes" button. Enjoy the result of applying your PHP code. It\'s that simple!', $text ); ?></div>
|
136 |
|
137 |
+
<div class="question-4"><?php _e( 'Can I use HTML/CSS/JS code integrated in PHP code?', $text ); ?></div>
|
138 |
+
<div class="answer-4"><?php _e( 'Yes. But you need to do it properly, like this:', $text ); ?><br>
|
139 |
<pre><code>function NameOfYourFunction {
|
140 |
|
141 |
echo "<script>
|
145 |
}</code></pre>
|
146 |
</div>
|
147 |
|
148 |
+
<div class="question-5"><?php _e( 'How much of PHP code (characters) I can enter in the text field?', $text ); ?></div>
|
149 |
+
<div class="answer-5"><?php _e( 'I don\'t limit the number of characters.', $text ); ?></div>
|
150 |
|
151 |
+
<div class="question-6 question-red"><?php _e( 'On the plugin settings page, an error message appears. What could be wrong?', $text ); ?></div>
|
152 |
+
<div class="answer-6"><?php _e( 'Here are a few of the most likely causes of the error message:', $text ); ?>
|
153 |
<ol class="custom-counter">
|
154 |
+
<li><?php _e( 'You make a syntax error in the code that you have entered. Check the syntax of your code and try again.', $text ); ?></li>
|
155 |
+
<li><?php _e( 'You entered two functions with the same name. Use a unique names for your functions.', $text ); ?></li>
|
156 |
+
<li><?php _e( 'You have entered function with a name that is already occupied by another function. Use a unique name for your function.', $text ); ?></li>
|
157 |
+
<li><?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.', $text ); ?></li>
|
158 |
</ol></div>
|
159 |
|
160 |
+
<div class="question-7"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
|
161 |
+
<div class="answer-7"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
|
162 |
|
163 |
+
<div class="question-8"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
|
164 |
+
<div class="answer-8"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
|
165 |
|
166 |
+
<div class="question-9 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
|
167 |
+
<div class="answer-9"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache. Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
|
168 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, I\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?></div>
|
169 |
|
170 |
+
<div class="question-10 question-red"><?php _e( 'What to do if this plugin crashed the website?', $text ); ?></div>
|
171 |
+
<div class="answer-10"><?php _e( 'This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This is due to the fact that your custom code has a syntax error that this plugin could not detect. When this happens with you just do the following and all will be fine.', $text ); ?>
|
172 |
<ol class="custom-counter">
|
173 |
+
<li><?php _e( 'Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>).', $text ); ?></li>
|
174 |
+
<li><?php _e( 'Rename the "START" file to "STOP". This will stop the execution of your custom code.', $text ); ?></li>
|
175 |
+
<li><?php _e( 'Return to the plugin settings page and edit/fix your custom code that you entered before the crash.', $text ); ?></li>
|
176 |
+
<li><?php _e( 'Rename the "STOP" file to "START" and you\'re done!', $text ); ?></li>
|
177 |
</ol>
|
178 |
+
<?php _e( 'This plugin stored you entered code in the database of your website. For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>.', $text ); ?></div>
|
179 |
|
180 |
+
<div class="question-11 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
|
181 |
+
<div class="answer-11"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', $text ); ?></div>
|
182 |
|
183 |
+
<div class="question-12 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
|
184 |
<div class="answer-12"><?php printf(
|
185 |
+
__( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', $text ),
|
186 |
+
'<a href="https://github.com/ArthurGareginyan/' . $slug . '" target="_blank">',
|
187 |
'</a>'
|
188 |
);
|
189 |
?></div>
|
190 |
|
191 |
+
<div class="question-13"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
|
192 |
<div class="answer-13"><?php printf(
|
193 |
+
__( 'Any suggestions are very welcome! Please send me an email to %s. Thank you!', $text ),
|
194 |
+
'<a href="mailto:arthurgareginyan@gmail.com?subject=Suggestions about the ' . $name . '">arthurgareginyan@gmail.com</a>'
|
|
|
195 |
);
|
196 |
?></div>
|
197 |
|
198 |
+
<div class="question-14"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
|
199 |
<div class="answer-14"><?php printf(
|
200 |
+
__( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', $text ),
|
201 |
'<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
|
202 |
'</a>'
|
203 |
);
|
204 |
?></div>
|
205 |
|
206 |
+
<div class="question-15"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
|
207 |
+
<div class="answer-15"><?php printf(
|
208 |
+
__( 'You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is no a special support team, so I have no way to answer everyone.', $text ),
|
209 |
+
'<a href="https://wordpress.org/support/plugin/' . $slug . '/" target="_blank">here</a>'
|
210 |
+
);
|
211 |
+
?></div>
|
212 |
+
|
213 |
</div>
|
214 |
</div>
|
215 |
</div>
|
218 |
<!-- TAB 4 -->
|
219 |
<div class="tab-page fade" id="tab-author">
|
220 |
<div class="postbox">
|
221 |
+
<h3 class="title"><?php _e( 'Author', $text ); ?></h3>
|
222 |
<div class="inside include-tab-author"></div>
|
223 |
</div>
|
224 |
</div>
|
227 |
<!-- TAB 5 -->
|
228 |
<div class="tab-page fade" id="tab-support">
|
229 |
<div class="postbox">
|
230 |
+
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
231 |
<div class="inside include-tab-support"></div>
|
232 |
</div>
|
233 |
</div>
|
inc/php/settings.php
CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
10 |
/**
|
11 |
* Render Settings Tab
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
?>
|
16 |
<!-- SIDEBAR -->
|
@@ -18,36 +18,34 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
18 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
19 |
|
20 |
<div id="about" class="postbox">
|
21 |
-
<h3 class="title"><?php _e( 'About',
|
22 |
<div class="inside">
|
23 |
-
<p><?php _e( 'This plugin allows you to easily and safely add your custom functions (PHP code) to your website.',
|
24 |
-
<p class="version"><?php _e( 'Version', MCFUNC_TEXT ); ?> <?php echo MCFUNC_VERSION; ?></p>
|
25 |
</div>
|
26 |
</div>
|
27 |
|
28 |
<div id="upgrade" class="postbox">
|
29 |
-
<h3 class="title"><?php _e( 'Upgrade',
|
30 |
<div class="inside">
|
31 |
-
<a href="
|
32 |
-
<img src="
|
33 |
</a>
|
34 |
</div>
|
35 |
</div>
|
36 |
|
37 |
<div id="support" class="postbox">
|
38 |
-
<h3 class="title"><?php _e( 'Support',
|
39 |
<div class="inside">
|
40 |
-
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.',
|
41 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal',
|
42 |
-
<p><?php _e( 'Thanks for your support!',
|
43 |
</div>
|
44 |
</div>
|
45 |
|
46 |
<div id="help" class="postbox">
|
47 |
-
<h3 class="title"><?php _e( 'Help',
|
48 |
<div class="inside">
|
49 |
-
<p><?php _e( '
|
50 |
-
<p><a href="mailto:arthurgareginyan@gmail.com?subject=<?php echo MCFUNC_NAME; ?>">arthurgareginyan@gmail.com</a></p>
|
51 |
</div>
|
52 |
</div>
|
53 |
|
@@ -74,7 +72,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
74 |
|
75 |
<div class="postbox">
|
76 |
<h3 class="title">
|
77 |
-
<label for="anarcho_cfunctions_settings[anarcho_cfunctions-content]" ><?php _e( 'Functions (PHP code)',
|
78 |
<div class="trigger">
|
79 |
<input type="checkbox" name="anarcho_cfunctions_settings[enable]" id="anarcho_cfunctions_settings[enable]" <?php echo $enable; ?> >
|
80 |
<label for="anarcho_cfunctions_settings[enable]"></label>
|
@@ -85,14 +83,14 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
85 |
</div>
|
86 |
</div>
|
87 |
|
88 |
-
<?php submit_button( __( 'Save
|
89 |
|
90 |
<div class="postbox" id="support-addition">
|
91 |
-
<h3 class="title"><?php _e( 'Support',
|
92 |
<div class="inside">
|
93 |
-
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.',
|
94 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal',
|
95 |
-
<p><?php _e( 'Thanks for your support!',
|
96 |
</div>
|
97 |
</div>
|
98 |
|
10 |
/**
|
11 |
* Render Settings Tab
|
12 |
*
|
13 |
+
* @since 4.4
|
14 |
*/
|
15 |
?>
|
16 |
<!-- SIDEBAR -->
|
18 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
19 |
|
20 |
<div id="about" class="postbox">
|
21 |
+
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
22 |
<div class="inside">
|
23 |
+
<p><?php _e( 'This plugin allows you to easily and safely add your custom functions (PHP code) to your website.', $text ); ?></p>
|
|
|
24 |
</div>
|
25 |
</div>
|
26 |
|
27 |
<div id="upgrade" class="postbox">
|
28 |
+
<h3 class="title"><?php _e( 'Upgrade', $text ); ?></h3>
|
29 |
<div class="inside">
|
30 |
+
<a href="//www.arthurgareginyan.com/plugin-my-custom-functions-pro.html" target="_blank">
|
31 |
+
<img src="//mycyberuniverse.com/public-files/sale/pro-version.png" alt="PRO">
|
32 |
</a>
|
33 |
</div>
|
34 |
</div>
|
35 |
|
36 |
<div id="support" class="postbox">
|
37 |
+
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
38 |
<div class="inside">
|
39 |
+
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
|
40 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
|
41 |
+
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
42 |
</div>
|
43 |
</div>
|
44 |
|
45 |
<div id="help" class="postbox">
|
46 |
+
<h3 class="title"><?php _e( 'Help', $text ); ?></h3>
|
47 |
<div class="inside">
|
48 |
+
<p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
|
|
|
49 |
</div>
|
50 |
</div>
|
51 |
|
72 |
|
73 |
<div class="postbox">
|
74 |
<h3 class="title">
|
75 |
+
<label for="anarcho_cfunctions_settings[anarcho_cfunctions-content]" ><?php _e( 'Functions (PHP code)', $text ); ?></label>
|
76 |
<div class="trigger">
|
77 |
<input type="checkbox" name="anarcho_cfunctions_settings[enable]" id="anarcho_cfunctions_settings[enable]" <?php echo $enable; ?> >
|
78 |
<label for="anarcho_cfunctions_settings[enable]"></label>
|
83 |
</div>
|
84 |
</div>
|
85 |
|
86 |
+
<?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
|
87 |
|
88 |
<div class="postbox" id="support-addition">
|
89 |
+
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
90 |
<div class="inside">
|
91 |
+
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
|
92 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
|
93 |
+
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
94 |
</div>
|
95 |
</div>
|
96 |
|
inc/php/versioning.php
CHANGED
@@ -18,6 +18,7 @@ function MCFunctions_versioning() {
|
|
18 |
// SETTING VARIABLES //
|
19 |
///////////////////////////////////////////////////////////////////
|
20 |
|
|
|
21 |
$version_files = MCFUNC_VERSION;
|
22 |
$settings = MCFUNC_SETTINGS;
|
23 |
|
18 |
// SETTING VARIABLES //
|
19 |
///////////////////////////////////////////////////////////////////
|
20 |
|
21 |
+
// Put value of constants to variables for easier access
|
22 |
$version_files = MCFUNC_VERSION;
|
23 |
$settings = MCFUNC_SETTINGS;
|
24 |
|
languages/Readme.txt
CHANGED
@@ -2,10 +2,12 @@
|
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
-
This plugin is ready for translation.
|
6 |
|
7 |
-
If you want to help translate this plugin
|
8 |
|
9 |
-
|
|
|
|
|
10 |
|
11 |
Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
+
This plugin is ready for translation and has already been translated into several languages.
|
6 |
|
7 |
+
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
|
8 |
|
9 |
+
You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to me at the arthurgareginyan@gmail.com and I will include this translation within the next plugin update.
|
10 |
+
|
11 |
+
Maybe not all existed translations are up to date. You are welcome to contribute corrections!
|
12 |
|
13 |
Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
languages/my-custom-functions-es_ES.mo
CHANGED
Binary file
|
languages/my-custom-functions-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - My Custom Functions - Development Readme (trunk)\n"
|
6 |
-
"POT-Creation-Date: 2017-06-
|
7 |
-
"PO-Revision-Date: 2017-06-
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
@@ -43,7 +43,7 @@ msgstr ""
|
|
43 |
|
44 |
#: inc/php/messages.php:32
|
45 |
#, php-format
|
46 |
-
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
47 |
msgstr ""
|
48 |
|
49 |
#: inc/php/messages.php:67
|
@@ -66,192 +66,212 @@ msgstr ""
|
|
66 |
msgid "Please, check the code and try again."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
#, php-format
|
71 |
msgid "by %s Arthur Gareginyan %s"
|
72 |
msgstr "por %s Arthur Gareginyan %s"
|
73 |
|
74 |
#: inc/php/page.php:42
|
|
|
|
|
|
|
|
|
75 |
msgid "Main"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: inc/php/page.php:
|
79 |
msgid "Usage"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: inc/php/page.php:
|
83 |
msgid "F.A.Q."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Author"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Support"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "Family"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "Go to the \"Main\" tab."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
-
msgid "
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Example of PHP code:"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "Note!"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
msgid "Please do not wrap your PHP code in the <code><?php</code>...<code>?></code> HTML tags."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
msgid "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Enjoy the result of applying your PHP code."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
msgid "It's that simple!"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
msgid "If you want more options then tell me and I will be happy to add it."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/php/page.php:
|
139 |
msgid "Frequently Asked Questions"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
143 |
msgid "Will this plugin work on my WordPress.COM website?"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "Can I use this plugin on my language?"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: inc/php/page.php:
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
-
"Yes.
|
158 |
-
"
|
159 |
-
"
|
160 |
-
"
|
|
|
|
|
|
|
|
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How does it work?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid ""
|
169 |
-
"On the \"
|
170 |
-
"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: inc/php/page.php:
|
174 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/php/page.php:
|
178 |
msgid "Yes. But you need to do it properly, like this:"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/php/page.php:
|
182 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: inc/php/page.php:
|
186 |
msgid "I don't limit the number of characters."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/page.php:
|
190 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/page.php:
|
194 |
msgid "Here are a few of the most likely causes of the error message:"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/page.php:
|
198 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/page.php:
|
202 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/page.php:
|
206 |
msgid ""
|
207 |
"You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: inc/php/page.php:
|
211 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: inc/php/page.php:
|
215 |
msgid "Does this plugin requires any modification of the theme?"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: inc/php/page.php:
|
219 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: inc/php/page.php:
|
223 |
msgid "Does this require any knowledge of HTML or CSS?"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: inc/php/page.php:
|
227 |
msgid ""
|
228 |
"This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need "
|
229 |
"to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
msgid "It's not working. What could be wrong?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/php/page.php:
|
237 |
msgid ""
|
238 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. "
|
239 |
"Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
|
240 |
"load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: inc/php/page.php:
|
244 |
msgid ""
|
245 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on "
|
246 |
"WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information as possible, "
|
247 |
"including a link to your website where the problem can be seen."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: inc/php/page.php:
|
251 |
msgid "What to do if this plugin crashed the website?"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: inc/php/page.php:
|
255 |
msgid ""
|
256 |
"This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. "
|
257 |
"But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This "
|
@@ -259,68 +279,79 @@ msgid ""
|
|
259 |
"just do the following and all will be fine."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/page.php:
|
271 |
msgid "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/page.php:
|
275 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/page.php:
|
279 |
msgid ""
|
280 |
"This plugin stored you entered code in the database of your website. For getting your code, you also can go to the "
|
281 |
"<code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>anarcho_cfunctions_settings</code> "
|
282 |
"➡ <code>option_value</code>."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: inc/php/page.php:
|
286 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: inc/php/page.php:
|
290 |
msgid ""
|
291 |
"This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could "
|
292 |
"just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such "
|
293 |
"as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Where to report bug if found?"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
#, php-format
|
302 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
#, php-format
|
311 |
-
msgid "Any suggestions are very welcome! Please send me an email to %s
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/page.php:
|
315 |
msgid "I love this plugin! Can I help somehow?"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/php/page.php:
|
319 |
#, php-format
|
320 |
msgid ""
|
321 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
|
322 |
msgstr ""
|
323 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
#: inc/php/settings.php:21
|
325 |
msgid "About"
|
326 |
msgstr "Acerca de"
|
@@ -329,15 +360,11 @@ msgstr "Acerca de"
|
|
329 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) to your website."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/php/settings.php:
|
333 |
-
msgid "Version"
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: inc/php/settings.php:29
|
337 |
msgid "Upgrade"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/php/settings.php:
|
341 |
msgid ""
|
342 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me "
|
343 |
"spend more time building things for people like you to enjoy."
|
@@ -345,28 +372,28 @@ msgstr ""
|
|
345 |
"Soy un desarrollador independiente, sin ingresos fijos, por lo que cualquier contribución, por pequeña que sea, me ayuda "
|
346 |
"a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar gente como tú."
|
347 |
|
348 |
-
#: inc/php/settings.php:
|
349 |
msgid "Donate with PayPal"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/php/settings.php:
|
353 |
msgid "Thanks for your support!"
|
354 |
msgstr "¡Gracias por su colaboración!"
|
355 |
|
356 |
-
#: inc/php/settings.php:
|
357 |
msgid "Help"
|
358 |
msgstr "Ayuda"
|
359 |
|
360 |
-
#: inc/php/settings.php:
|
361 |
-
msgid "
|
362 |
msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
|
363 |
|
364 |
-
#: inc/php/settings.php:
|
365 |
msgid "Functions (PHP code)"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: inc/php/settings.php:
|
369 |
-
msgid "Save
|
370 |
msgstr "Guardar los cambios"
|
371 |
|
372 |
#. Plugin Name of the plugin/theme
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - My Custom Functions - Development Readme (trunk)\n"
|
6 |
+
"POT-Creation-Date: 2017-06-16 03:34+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-06-16 03:34+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
43 |
|
44 |
#: inc/php/messages.php:32
|
45 |
#, php-format
|
46 |
+
msgid "Thank you for installing my plugin! I hope you will love it! %s"
|
47 |
msgstr ""
|
48 |
|
49 |
#: inc/php/messages.php:67
|
66 |
msgid "Please, check the code and try again."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: inc/php/page.php:36
|
70 |
#, php-format
|
71 |
msgid "by %s Arthur Gareginyan %s"
|
72 |
msgstr "por %s Arthur Gareginyan %s"
|
73 |
|
74 |
#: inc/php/page.php:42
|
75 |
+
msgid "Version"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: inc/php/page.php:49
|
79 |
msgid "Main"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/php/page.php:50 inc/php/page.php:69
|
83 |
msgid "Usage"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/page.php:51
|
87 |
msgid "F.A.Q."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:52 inc/php/page.php:221
|
91 |
msgid "Author"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/page.php:53 inc/php/page.php:230 inc/php/settings.php:37 inc/php/settings.php:89
|
95 |
msgid "Support"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:54
|
99 |
msgid "Family"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/php/page.php:71
|
103 |
msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/page.php:73
|
107 |
msgid "Go to the \"Main\" tab."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/page.php:74
|
111 |
+
msgid "Place your PHP code in the field."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/page.php:75
|
115 |
msgid "Example of PHP code:"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:81 inc/php/page.php:82 inc/php/page.php:88
|
119 |
msgid "Note!"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: inc/php/page.php:81
|
123 |
msgid "Please do not wrap your PHP code in the <code><?php</code>...<code>?></code> HTML tags."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:82
|
127 |
msgid "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/php/page.php:84
|
131 |
+
msgid "Switch the toggle to the \"ON\" position."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: inc/php/page.php:85
|
135 |
+
msgid "Click the \"Save changes\" button."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: inc/php/page.php:86
|
139 |
msgid "Enjoy the result of applying your PHP code."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:86
|
143 |
msgid "It's that simple!"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/page.php:88
|
147 |
msgid "If you want more options then tell me and I will be happy to add it."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/php/page.php:97
|
151 |
msgid "Frequently Asked Questions"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: inc/php/page.php:101
|
155 |
+
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: inc/php/page.php:123
|
159 |
msgid "Will this plugin work on my WordPress.COM website?"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/php/page.php:124
|
163 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: inc/php/page.php:126
|
167 |
msgid "Can I use this plugin on my language?"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/php/page.php:128
|
171 |
#, php-format
|
172 |
msgid ""
|
173 |
+
"Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is "
|
174 |
+
"not available then you can make one. The POT file is included and placed in the <code>languages</code> folder. Just send "
|
175 |
+
"the PO file to me at the %s and I will include this translation within the next plugin update. Many of plugin users would "
|
176 |
+
"be delighted if you share your translation with the community. Thanks for your contribution!"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: inc/php/page.php:132
|
180 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: inc/php/page.php:134
|
184 |
msgid "How does it work?"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: inc/php/page.php:135
|
188 |
msgid ""
|
189 |
+
"On the \"Main\" tab, place your PHP code in the field, switch the toggle to the \"ON\" position and click the \"Save "
|
190 |
+
"changes\" button. Enjoy the result of applying your PHP code. It's that simple!"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/php/page.php:137
|
194 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: inc/php/page.php:138
|
198 |
msgid "Yes. But you need to do it properly, like this:"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: inc/php/page.php:148
|
202 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: inc/php/page.php:149
|
206 |
msgid "I don't limit the number of characters."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc/php/page.php:151
|
210 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: inc/php/page.php:152
|
214 |
msgid "Here are a few of the most likely causes of the error message:"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: inc/php/page.php:154
|
218 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: inc/php/page.php:155
|
222 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: inc/php/page.php:156
|
226 |
msgid ""
|
227 |
"You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/php/page.php:157
|
231 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/php/page.php:160
|
235 |
msgid "Does this plugin requires any modification of the theme?"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/php/page.php:161
|
239 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:163
|
243 |
msgid "Does this require any knowledge of HTML or CSS?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/page.php:164
|
247 |
msgid ""
|
248 |
"This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need "
|
249 |
"to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:166
|
253 |
msgid "It's not working. What could be wrong?"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: inc/php/page.php:167
|
257 |
msgid ""
|
258 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. "
|
259 |
"Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
|
260 |
"load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: inc/php/page.php:168
|
264 |
msgid ""
|
265 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on "
|
266 |
"WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information as possible, "
|
267 |
"including a link to your website where the problem can be seen."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:170
|
271 |
msgid "What to do if this plugin crashed the website?"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:171
|
275 |
msgid ""
|
276 |
"This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. "
|
277 |
"But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This "
|
279 |
"just do the following and all will be fine."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:173
|
283 |
msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:174
|
287 |
msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:175
|
291 |
msgid "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:176
|
295 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/php/page.php:178
|
299 |
msgid ""
|
300 |
"This plugin stored you entered code in the database of your website. For getting your code, you also can go to the "
|
301 |
"<code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>anarcho_cfunctions_settings</code> "
|
302 |
"➡ <code>option_value</code>."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/php/page.php:180
|
306 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/php/page.php:181
|
310 |
msgid ""
|
311 |
"This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could "
|
312 |
"just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such "
|
313 |
"as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/page.php:183
|
317 |
msgid "Where to report bug if found?"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/page.php:185
|
321 |
#, php-format
|
322 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/page.php:191
|
326 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/php/page.php:193
|
330 |
#, php-format
|
331 |
+
msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/page.php:198
|
335 |
msgid "I love this plugin! Can I help somehow?"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: inc/php/page.php:200
|
339 |
#, php-format
|
340 |
msgid ""
|
341 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/page.php:206
|
345 |
+
msgid "My question wasn't answered here."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: inc/php/page.php:208
|
349 |
+
#, php-format
|
350 |
+
msgid ""
|
351 |
+
"You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is "
|
352 |
+
"no a special support team, so I have no way to answer everyone."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
#: inc/php/settings.php:21
|
356 |
msgid "About"
|
357 |
msgstr "Acerca de"
|
360 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) to your website."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: inc/php/settings.php:28
|
|
|
|
|
|
|
|
|
364 |
msgid "Upgrade"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: inc/php/settings.php:39 inc/php/settings.php:91
|
368 |
msgid ""
|
369 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me "
|
370 |
"spend more time building things for people like you to enjoy."
|
372 |
"Soy un desarrollador independiente, sin ingresos fijos, por lo que cualquier contribución, por pequeña que sea, me ayuda "
|
373 |
"a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar gente como tú."
|
374 |
|
375 |
+
#: inc/php/settings.php:40 inc/php/settings.php:92
|
376 |
msgid "Donate with PayPal"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: inc/php/settings.php:41 inc/php/settings.php:93
|
380 |
msgid "Thanks for your support!"
|
381 |
msgstr "¡Gracias por su colaboración!"
|
382 |
|
383 |
+
#: inc/php/settings.php:46
|
384 |
msgid "Help"
|
385 |
msgstr "Ayuda"
|
386 |
|
387 |
+
#: inc/php/settings.php:48
|
388 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
389 |
msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
|
390 |
|
391 |
+
#: inc/php/settings.php:75
|
392 |
msgid "Functions (PHP code)"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: inc/php/settings.php:86
|
396 |
+
msgid "Save changes"
|
397 |
msgstr "Guardar los cambios"
|
398 |
|
399 |
#. Plugin Name of the plugin/theme
|
languages/my-custom-functions-fr_FR.mo
CHANGED
Binary file
|
languages/my-custom-functions-fr_FR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: My Custom Functions\n"
|
4 |
-
"POT-Creation-Date: 2017-06-
|
5 |
-
"PO-Revision-Date: 2017-06-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
@@ -42,7 +42,7 @@ msgstr ""
|
|
42 |
|
43 |
#: inc/php/messages.php:32
|
44 |
#, php-format
|
45 |
-
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/messages.php:67
|
@@ -67,199 +67,222 @@ msgstr ""
|
|
67 |
msgid "Please, check the code and try again."
|
68 |
msgstr "Svp, vérifiez le code et réessayez."
|
69 |
|
70 |
-
#: inc/php/page.php:
|
71 |
#, php-format
|
72 |
msgid "by %s Arthur Gareginyan %s"
|
73 |
msgstr "par %s Arthur Gareginyan %s"
|
74 |
|
75 |
#: inc/php/page.php:42
|
|
|
|
|
|
|
|
|
76 |
msgid "Main"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
msgid "Usage"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "F.A.Q."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "Author"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
-
#: inc/php/settings.php:
|
93 |
msgid "Support"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: inc/php/page.php:
|
97 |
msgid "Family"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: inc/php/page.php:
|
101 |
msgid ""
|
102 |
"To add your custom functions (the PHP code) to your website, simply follow "
|
103 |
"these steps:"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid "Go to the \"Main\" tab."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
-
msgid ""
|
112 |
-
"Add your PHP code to the field, switch the toggle to the \"ON\" position and "
|
113 |
-
"click the \"Save Changes\" button."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: inc/php/page.php:
|
117 |
msgid "Example of PHP code:"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/page.php:
|
121 |
msgid "Note!"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: inc/php/page.php:
|
125 |
msgid ""
|
126 |
"Please do not wrap your PHP code in the <code><?php</code>...<code>?></"
|
127 |
"code> HTML tags."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
msgid ""
|
132 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in "
|
133 |
"case of a website crash."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Enjoy the result of applying your PHP code."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/php/page.php:
|
141 |
msgid "It's that simple!"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/page.php:
|
145 |
msgid "If you want more options then tell me and I will be happy to add it."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/php/page.php:
|
149 |
msgid "Frequently Asked Questions"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
msgid "Will this plugin work on my WordPress.COM website?"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/php/page.php:
|
157 |
msgid ""
|
158 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
159 |
"websites."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: inc/php/page.php:
|
163 |
msgid "Can I use this plugin on my language?"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: inc/php/page.php:
|
167 |
#, php-format
|
168 |
msgid ""
|
169 |
-
"Yes.
|
170 |
-
"
|
171 |
-
"placed in the <code>languages</code>
|
172 |
-
"
|
173 |
-
"translation
|
174 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/php/page.php:
|
178 |
msgid "How does it work?"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/php/page.php:
|
182 |
msgid ""
|
183 |
-
"On the \"
|
184 |
-
"
|
185 |
-
"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/page.php:
|
189 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
msgid "Yes. But you need to do it properly, like this:"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/page.php:
|
201 |
msgid "I don't limit the number of characters."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
msgid ""
|
206 |
"On the plugin settings page, an error message appears. What could be wrong?"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/page.php:
|
210 |
msgid "Here are a few of the most likely causes of the error message:"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/page.php:
|
214 |
msgid ""
|
215 |
"You make a syntax error in the code that you have entered. Check the syntax "
|
216 |
"of your code and try again."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
msgid ""
|
221 |
"You entered two functions with the same name. Use a unique names for your "
|
222 |
"functions."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/page.php:
|
226 |
msgid ""
|
227 |
"You have entered function with a name that is already occupied by another "
|
228 |
"function. Use a unique name for your function."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
msgid ""
|
233 |
"You are trying to overwrite an existing function (of WordPress, theme, or "
|
234 |
"plugin). Instead, use filters and hooks."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/page.php:
|
238 |
msgid "Does this plugin requires any modification of the theme?"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/php/page.php:
|
242 |
msgid ""
|
243 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
244 |
"settings page."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: inc/php/page.php:
|
248 |
msgid "Does this require any knowledge of HTML or CSS?"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
msgid ""
|
253 |
"This plugin can be configured with no knowledge of HTML or CSS, using an "
|
254 |
"easy-to-use plugin settings page. But you need to know the HTML or CSS in "
|
255 |
"order to add/remove/modify the HTML or CSS code by using this plugin."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: inc/php/page.php:
|
259 |
msgid "It's not working. What could be wrong?"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid ""
|
264 |
"As with every plugin, it's possible that things don't work. The most common "
|
265 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
@@ -268,7 +291,7 @@ msgid ""
|
|
268 |
"browser's cache may solve the problem."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: inc/php/page.php:
|
272 |
msgid ""
|
273 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
274 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
@@ -276,11 +299,11 @@ msgid ""
|
|
276 |
"possible, including a link to your website where the problem can be seen."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
msgid "What to do if this plugin crashed the website?"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/php/page.php:
|
284 |
msgid ""
|
285 |
"This plugin has a built-in functions for checking the custom code for syntax "
|
286 |
"errors, duplicate functions names, and etc. But plugin is not perfect, so "
|
@@ -290,29 +313,29 @@ msgid ""
|
|
290 |
"the following and all will be fine."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: inc/php/page.php:
|
294 |
msgid ""
|
295 |
"Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
|
296 |
"functions/</code>)."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid ""
|
301 |
"Rename the \"START\" file to \"STOP\". This will stop the execution of your "
|
302 |
"custom code."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/page.php:
|
306 |
msgid ""
|
307 |
"Return to the plugin settings page and edit/fix your custom code that you "
|
308 |
"entered before the crash."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/php/page.php:
|
312 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
msgid ""
|
317 |
"This plugin stored you entered code in the database of your website. For "
|
318 |
"getting your code, you also can go to the <code>Database</code> ➡ "
|
@@ -320,13 +343,13 @@ msgid ""
|
|
320 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: inc/php/page.php:
|
324 |
msgid ""
|
325 |
"The last WordPress update is preventing me from editing my website that is "
|
326 |
"using this plugin. Why is this?"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid ""
|
331 |
"This plugin can not cause such problem. More likely, the problem are related "
|
332 |
"to the settings of the website. It could just be a cache, so please try to "
|
@@ -335,37 +358,48 @@ msgid ""
|
|
335 |
"please try to re-login to the website, this too can help."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "Where to report bug if found?"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
#, php-format
|
353 |
msgid ""
|
354 |
-
"Any suggestions are very welcome! Please send me an email to %s "
|
355 |
-
"arthurgareginyan@gmail.com %s. Thank you!"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: inc/php/page.php:
|
359 |
msgid "I love this plugin! Can I help somehow?"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: inc/php/page.php:
|
363 |
#, php-format
|
364 |
msgid ""
|
365 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
366 |
"click on the donate button, and thank you!"
|
367 |
msgstr ""
|
368 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
#: inc/php/settings.php:21
|
370 |
msgid "About"
|
371 |
msgstr "A propos"
|
@@ -379,15 +413,11 @@ msgstr ""
|
|
379 |
"fonctions personnalisées (code PHP) au fichier functions.php de votre thème/"
|
380 |
"site."
|
381 |
|
382 |
-
#: inc/php/settings.php:
|
383 |
-
msgid "Version"
|
384 |
-
msgstr ""
|
385 |
-
|
386 |
-
#: inc/php/settings.php:29
|
387 |
msgid "Upgrade"
|
388 |
msgstr "Evolution"
|
389 |
|
390 |
-
#: inc/php/settings.php:
|
391 |
msgid ""
|
392 |
"I'm an independent developer, without a regular income, so every little "
|
393 |
"contribution helps cover my costs and lets me spend more time building "
|
@@ -397,28 +427,28 @@ msgstr ""
|
|
397 |
"modeste contribution m'aide à couvrir les frais et me permet de consacrer "
|
398 |
"plus de temps à créer des choses que vous appréciez."
|
399 |
|
400 |
-
#: inc/php/settings.php:
|
401 |
msgid "Donate with PayPal"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: inc/php/settings.php:
|
405 |
msgid "Thanks for your support!"
|
406 |
msgstr "Merci pour votre soutien !"
|
407 |
|
408 |
-
#: inc/php/settings.php:
|
409 |
msgid "Help"
|
410 |
msgstr "Aide"
|
411 |
|
412 |
-
#: inc/php/settings.php:
|
413 |
-
msgid "
|
414 |
msgstr "Vous souhaitez nous contacter ? Vous avez besoin d'aide ?"
|
415 |
|
416 |
-
#: inc/php/settings.php:
|
417 |
msgid "Functions (PHP code)"
|
418 |
msgstr "Fonctions (code PHP)"
|
419 |
|
420 |
-
#: inc/php/settings.php:
|
421 |
-
msgid "Save
|
422 |
msgstr "Enregistrer"
|
423 |
|
424 |
#. Plugin Name of the plugin/theme
|
@@ -447,7 +477,7 @@ msgid "http://www.arthurgareginyan.com"
|
|
447 |
msgstr "http://www.arthurgareginyan.com"
|
448 |
|
449 |
#~ msgid ""
|
450 |
-
#~ "To use, enter your custom functions, then click \"Save
|
451 |
#~ "that simple!"
|
452 |
#~ msgstr ""
|
453 |
#~ "Pour utiliser ce plugin, entrez vos fonctions personnalisées, puis "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: My Custom Functions\n"
|
4 |
+
"POT-Creation-Date: 2017-06-16 03:34+0300\n"
|
5 |
+
"PO-Revision-Date: 2017-06-16 03:34+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
42 |
|
43 |
#: inc/php/messages.php:32
|
44 |
#, php-format
|
45 |
+
msgid "Thank you for installing my plugin! I hope you will love it! %s"
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/messages.php:67
|
67 |
msgid "Please, check the code and try again."
|
68 |
msgstr "Svp, vérifiez le code et réessayez."
|
69 |
|
70 |
+
#: inc/php/page.php:36
|
71 |
#, php-format
|
72 |
msgid "by %s Arthur Gareginyan %s"
|
73 |
msgstr "par %s Arthur Gareginyan %s"
|
74 |
|
75 |
#: inc/php/page.php:42
|
76 |
+
msgid "Version"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: inc/php/page.php:49
|
80 |
msgid "Main"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: inc/php/page.php:50 inc/php/page.php:69
|
84 |
msgid "Usage"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: inc/php/page.php:51
|
88 |
msgid "F.A.Q."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: inc/php/page.php:52 inc/php/page.php:221
|
92 |
msgid "Author"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/php/page.php:53 inc/php/page.php:230 inc/php/settings.php:37
|
96 |
+
#: inc/php/settings.php:89
|
97 |
msgid "Support"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: inc/php/page.php:54
|
101 |
msgid "Family"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: inc/php/page.php:71
|
105 |
msgid ""
|
106 |
"To add your custom functions (the PHP code) to your website, simply follow "
|
107 |
"these steps:"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/page.php:73
|
111 |
msgid "Go to the \"Main\" tab."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/page.php:74
|
115 |
+
msgid "Place your PHP code in the field."
|
|
|
|
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:75
|
119 |
msgid "Example of PHP code:"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: inc/php/page.php:81 inc/php/page.php:82 inc/php/page.php:88
|
123 |
msgid "Note!"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:81
|
127 |
msgid ""
|
128 |
"Please do not wrap your PHP code in the <code><?php</code>...<code>?></"
|
129 |
"code> HTML tags."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/page.php:82
|
133 |
msgid ""
|
134 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in "
|
135 |
"case of a website crash."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/page.php:84
|
139 |
+
msgid "Switch the toggle to the \"ON\" position."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: inc/php/page.php:85
|
143 |
+
msgid "Click the \"Save changes\" button."
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: inc/php/page.php:86
|
147 |
msgid "Enjoy the result of applying your PHP code."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/php/page.php:86
|
151 |
msgid "It's that simple!"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: inc/php/page.php:88
|
155 |
msgid "If you want more options then tell me and I will be happy to add it."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: inc/php/page.php:97
|
159 |
msgid "Frequently Asked Questions"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/php/page.php:101
|
163 |
+
msgid ""
|
164 |
+
"If you have a question, please read the Frequently Asked Questions below to "
|
165 |
+
"see if the answer is here."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: inc/php/page.php:123
|
169 |
msgid "Will this plugin work on my WordPress.COM website?"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/page.php:124
|
173 |
msgid ""
|
174 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
175 |
"websites."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/php/page.php:126
|
179 |
msgid "Can I use this plugin on my language?"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/php/page.php:128
|
183 |
#, php-format
|
184 |
msgid ""
|
185 |
+
"Yes. This plugin is ready for translation and has already been translated "
|
186 |
+
"into several languages. But If your language is not available then you can "
|
187 |
+
"make one. The POT file is included and placed in the <code>languages</code> "
|
188 |
+
"folder. Just send the PO file to me at the %s and I will include this "
|
189 |
+
"translation within the next plugin update. Many of plugin users would be "
|
190 |
+
"delighted if you share your translation with the community. Thanks for your "
|
191 |
+
"contribution!"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: inc/php/page.php:132
|
195 |
+
msgid ""
|
196 |
+
"Maybe not all existed translations are up to date. You are welcome to "
|
197 |
+
"contribute corrections!"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/page.php:134
|
201 |
msgid "How does it work?"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/page.php:135
|
205 |
msgid ""
|
206 |
+
"On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
|
207 |
+
"the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
|
208 |
+
"of applying your PHP code. It's that simple!"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: inc/php/page.php:137
|
212 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: inc/php/page.php:138
|
216 |
msgid "Yes. But you need to do it properly, like this:"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: inc/php/page.php:148
|
220 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: inc/php/page.php:149
|
224 |
msgid "I don't limit the number of characters."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: inc/php/page.php:151
|
228 |
msgid ""
|
229 |
"On the plugin settings page, an error message appears. What could be wrong?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/page.php:152
|
233 |
msgid "Here are a few of the most likely causes of the error message:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:154
|
237 |
msgid ""
|
238 |
"You make a syntax error in the code that you have entered. Check the syntax "
|
239 |
"of your code and try again."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:155
|
243 |
msgid ""
|
244 |
"You entered two functions with the same name. Use a unique names for your "
|
245 |
"functions."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:156
|
249 |
msgid ""
|
250 |
"You have entered function with a name that is already occupied by another "
|
251 |
"function. Use a unique name for your function."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:157
|
255 |
msgid ""
|
256 |
"You are trying to overwrite an existing function (of WordPress, theme, or "
|
257 |
"plugin). Instead, use filters and hooks."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: inc/php/page.php:160
|
261 |
msgid "Does this plugin requires any modification of the theme?"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: inc/php/page.php:161
|
265 |
msgid ""
|
266 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
267 |
"settings page."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:163
|
271 |
msgid "Does this require any knowledge of HTML or CSS?"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:164
|
275 |
msgid ""
|
276 |
"This plugin can be configured with no knowledge of HTML or CSS, using an "
|
277 |
"easy-to-use plugin settings page. But you need to know the HTML or CSS in "
|
278 |
"order to add/remove/modify the HTML or CSS code by using this plugin."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: inc/php/page.php:166
|
282 |
msgid "It's not working. What could be wrong?"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: inc/php/page.php:167
|
286 |
msgid ""
|
287 |
"As with every plugin, it's possible that things don't work. The most common "
|
288 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
291 |
"browser's cache may solve the problem."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:168
|
295 |
msgid ""
|
296 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
297 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
299 |
"possible, including a link to your website where the problem can be seen."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/php/page.php:170
|
303 |
msgid "What to do if this plugin crashed the website?"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/php/page.php:171
|
307 |
msgid ""
|
308 |
"This plugin has a built-in functions for checking the custom code for syntax "
|
309 |
"errors, duplicate functions names, and etc. But plugin is not perfect, so "
|
313 |
"the following and all will be fine."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/page.php:173
|
317 |
msgid ""
|
318 |
"Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
|
319 |
"functions/</code>)."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/page.php:174
|
323 |
msgid ""
|
324 |
"Rename the \"START\" file to \"STOP\". This will stop the execution of your "
|
325 |
"custom code."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/php/page.php:175
|
329 |
msgid ""
|
330 |
"Return to the plugin settings page and edit/fix your custom code that you "
|
331 |
"entered before the crash."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/page.php:176
|
335 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: inc/php/page.php:178
|
339 |
msgid ""
|
340 |
"This plugin stored you entered code in the database of your website. For "
|
341 |
"getting your code, you also can go to the <code>Database</code> ➡ "
|
343 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: inc/php/page.php:180
|
347 |
msgid ""
|
348 |
"The last WordPress update is preventing me from editing my website that is "
|
349 |
"using this plugin. Why is this?"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: inc/php/page.php:181
|
353 |
msgid ""
|
354 |
"This plugin can not cause such problem. More likely, the problem are related "
|
355 |
"to the settings of the website. It could just be a cache, so please try to "
|
358 |
"please try to re-login to the website, this too can help."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: inc/php/page.php:183
|
362 |
msgid "Where to report bug if found?"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: inc/php/page.php:185
|
366 |
#, php-format
|
367 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: inc/php/page.php:191
|
371 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: inc/php/page.php:193
|
375 |
#, php-format
|
376 |
msgid ""
|
377 |
+
"Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
|
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/page.php:198
|
381 |
msgid "I love this plugin! Can I help somehow?"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/page.php:200
|
385 |
#, php-format
|
386 |
msgid ""
|
387 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
388 |
"click on the donate button, and thank you!"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: inc/php/page.php:206
|
392 |
+
msgid "My question wasn't answered here."
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: inc/php/page.php:208
|
396 |
+
#, php-format
|
397 |
+
msgid ""
|
398 |
+
"You can ask your question on the plugin support page %s. But please keep in "
|
399 |
+
"mind that this plugin is free, and there is no a special support team, so I "
|
400 |
+
"have no way to answer everyone."
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
#: inc/php/settings.php:21
|
404 |
msgid "About"
|
405 |
msgstr "A propos"
|
413 |
"fonctions personnalisées (code PHP) au fichier functions.php de votre thème/"
|
414 |
"site."
|
415 |
|
416 |
+
#: inc/php/settings.php:28
|
|
|
|
|
|
|
|
|
417 |
msgid "Upgrade"
|
418 |
msgstr "Evolution"
|
419 |
|
420 |
+
#: inc/php/settings.php:39 inc/php/settings.php:91
|
421 |
msgid ""
|
422 |
"I'm an independent developer, without a regular income, so every little "
|
423 |
"contribution helps cover my costs and lets me spend more time building "
|
427 |
"modeste contribution m'aide à couvrir les frais et me permet de consacrer "
|
428 |
"plus de temps à créer des choses que vous appréciez."
|
429 |
|
430 |
+
#: inc/php/settings.php:40 inc/php/settings.php:92
|
431 |
msgid "Donate with PayPal"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/php/settings.php:41 inc/php/settings.php:93
|
435 |
msgid "Thanks for your support!"
|
436 |
msgstr "Merci pour votre soutien !"
|
437 |
|
438 |
+
#: inc/php/settings.php:46
|
439 |
msgid "Help"
|
440 |
msgstr "Aide"
|
441 |
|
442 |
+
#: inc/php/settings.php:48
|
443 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
444 |
msgstr "Vous souhaitez nous contacter ? Vous avez besoin d'aide ?"
|
445 |
|
446 |
+
#: inc/php/settings.php:75
|
447 |
msgid "Functions (PHP code)"
|
448 |
msgstr "Fonctions (code PHP)"
|
449 |
|
450 |
+
#: inc/php/settings.php:86
|
451 |
+
msgid "Save changes"
|
452 |
msgstr "Enregistrer"
|
453 |
|
454 |
#. Plugin Name of the plugin/theme
|
477 |
msgstr "http://www.arthurgareginyan.com"
|
478 |
|
479 |
#~ msgid ""
|
480 |
+
#~ "To use, enter your custom functions, then click \"Save changes\". It's "
|
481 |
#~ "that simple!"
|
482 |
#~ msgstr ""
|
483 |
#~ "Pour utiliser ce plugin, entrez vos fonctions personnalisées, puis "
|
languages/my-custom-functions-ru_RU.mo
CHANGED
Binary file
|
languages/my-custom-functions-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: My Custom Functions\n"
|
4 |
-
"POT-Creation-Date: 2017-06-
|
5 |
-
"PO-Revision-Date: 2017-06-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -43,8 +43,8 @@ msgstr "Привет! Я Артур, автор этого плагина."
|
|
43 |
|
44 |
#: inc/php/messages.php:32
|
45 |
#, php-format
|
46 |
-
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
47 |
-
msgstr "Спасибо, что установили мой плагин! Надеюсь, что он вам
|
48 |
|
49 |
#: inc/php/messages.php:67
|
50 |
msgid "You have installed an old version of this plugin."
|
@@ -67,95 +67,111 @@ msgstr ""
|
|
67 |
msgid "Please, check the code and try again."
|
68 |
msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
|
69 |
|
70 |
-
#: inc/php/page.php:
|
71 |
#, php-format
|
72 |
msgid "by %s Arthur Gareginyan %s"
|
73 |
msgstr "от %s Артура Гарегинян %s"
|
74 |
|
75 |
#: inc/php/page.php:42
|
|
|
|
|
|
|
|
|
76 |
msgid "Main"
|
77 |
msgstr "Главная"
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
msgid "Usage"
|
81 |
msgstr "Применение"
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "F.A.Q."
|
85 |
msgstr "F.A.Q."
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "Author"
|
89 |
msgstr "Автор"
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
-
#: inc/php/settings.php:
|
93 |
msgid "Support"
|
94 |
msgstr "Поддержка"
|
95 |
|
96 |
-
#: inc/php/page.php:
|
97 |
msgid "Family"
|
98 |
msgstr "Семья"
|
99 |
|
100 |
-
#: inc/php/page.php:
|
101 |
msgid ""
|
102 |
"To add your custom functions (the PHP code) to your website, simply follow "
|
103 |
"these steps:"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid "Go to the \"Main\" tab."
|
108 |
msgstr "Перейдите на вкладку «Главная»."
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
-
msgid ""
|
112 |
-
"
|
113 |
-
"click the \"Save Changes\" button."
|
114 |
-
msgstr ""
|
115 |
|
116 |
-
#: inc/php/page.php:
|
117 |
msgid "Example of PHP code:"
|
118 |
msgstr "Пример кода PHP:"
|
119 |
|
120 |
-
#: inc/php/page.php:
|
121 |
msgid "Note!"
|
122 |
msgstr "Примечание!"
|
123 |
|
124 |
-
#: inc/php/page.php:
|
125 |
msgid ""
|
126 |
"Please do not wrap your PHP code in the <code><?php</code>...<code>?></"
|
127 |
"code> HTML tags."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
msgid ""
|
132 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in "
|
133 |
"case of a website crash."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Enjoy the result of applying your PHP code."
|
138 |
-
msgstr ""
|
139 |
|
140 |
-
#: inc/php/page.php:
|
141 |
msgid "It's that simple!"
|
142 |
msgstr "Вот так просто!"
|
143 |
|
144 |
-
#: inc/php/page.php:
|
145 |
msgid "If you want more options then tell me and I will be happy to add it."
|
146 |
msgstr ""
|
147 |
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
148 |
"добавить их."
|
149 |
|
150 |
-
#: inc/php/page.php:
|
151 |
msgid "Frequently Asked Questions"
|
152 |
msgstr "Часто задаваемые вопросы"
|
153 |
|
154 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
msgid "Will this plugin work on my WordPress.COM website?"
|
156 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
157 |
|
158 |
-
#: inc/php/page.php:
|
159 |
msgid ""
|
160 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
161 |
"websites."
|
@@ -163,86 +179,93 @@ msgstr ""
|
|
163 |
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
164 |
"размещённых веб-сайтах (WordPress.ORG)."
|
165 |
|
166 |
-
#: inc/php/page.php:
|
167 |
msgid "Can I use this plugin on my language?"
|
168 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
169 |
|
170 |
-
#: inc/php/page.php:
|
171 |
#, php-format
|
172 |
msgid ""
|
173 |
-
"Yes.
|
174 |
-
"
|
175 |
-
"placed in the <code>languages</code>
|
176 |
-
"
|
177 |
-
"translation
|
178 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/php/page.php:
|
182 |
msgid "How does it work?"
|
183 |
msgstr "Как оно работает?"
|
184 |
|
185 |
-
#: inc/php/page.php:
|
186 |
msgid ""
|
187 |
-
"On the \"
|
188 |
-
"
|
189 |
-
"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
msgid "Yes. But you need to do it properly, like this:"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/page.php:
|
201 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
msgid "I don't limit the number of characters."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid ""
|
210 |
"On the plugin settings page, an error message appears. What could be wrong?"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/page.php:
|
214 |
msgid "Here are a few of the most likely causes of the error message:"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/page.php:
|
218 |
msgid ""
|
219 |
"You make a syntax error in the code that you have entered. Check the syntax "
|
220 |
"of your code and try again."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
msgid ""
|
225 |
"You entered two functions with the same name. Use a unique names for your "
|
226 |
"functions."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/page.php:
|
230 |
msgid ""
|
231 |
"You have entered function with a name that is already occupied by another "
|
232 |
"function. Use a unique name for your function."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: inc/php/page.php:
|
236 |
msgid ""
|
237 |
"You are trying to overwrite an existing function (of WordPress, theme, or "
|
238 |
"plugin). Instead, use filters and hooks."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/php/page.php:
|
242 |
msgid "Does this plugin requires any modification of the theme?"
|
243 |
msgstr "Этот плагин требует изменения темы?"
|
244 |
|
245 |
-
#: inc/php/page.php:
|
246 |
msgid ""
|
247 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
248 |
"settings page."
|
@@ -250,11 +273,11 @@ msgstr ""
|
|
250 |
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
251 |
"плагина."
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
msgid "Does this require any knowledge of HTML or CSS?"
|
255 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
msgid ""
|
259 |
"This plugin can be configured with no knowledge of HTML or CSS, using an "
|
260 |
"easy-to-use plugin settings page. But you need to know the HTML or CSS in "
|
@@ -265,11 +288,11 @@ msgstr ""
|
|
265 |
"для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
|
266 |
"плагин."
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "It's not working. What could be wrong?"
|
270 |
msgstr "Оно не работает. Что может быть не так?"
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
msgid ""
|
274 |
"As with every plugin, it's possible that things don't work. The most common "
|
275 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
@@ -278,7 +301,7 @@ msgid ""
|
|
278 |
"browser's cache may solve the problem."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/php/page.php:
|
282 |
msgid ""
|
283 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
284 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
@@ -286,11 +309,11 @@ msgid ""
|
|
286 |
"possible, including a link to your website where the problem can be seen."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: inc/php/page.php:
|
290 |
msgid "What to do if this plugin crashed the website?"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: inc/php/page.php:
|
294 |
msgid ""
|
295 |
"This plugin has a built-in functions for checking the custom code for syntax "
|
296 |
"errors, duplicate functions names, and etc. But plugin is not perfect, so "
|
@@ -300,29 +323,29 @@ msgid ""
|
|
300 |
"the following and all will be fine."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
msgid ""
|
305 |
"Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
|
306 |
"functions/</code>)."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
msgid ""
|
311 |
"Rename the \"START\" file to \"STOP\". This will stop the execution of your "
|
312 |
"custom code."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
msgid ""
|
317 |
"Return to the plugin settings page and edit/fix your custom code that you "
|
318 |
"entered before the crash."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
323 |
msgstr "Переименуйте файл \"STOP\" в \"START\", и все готово!"
|
324 |
|
325 |
-
#: inc/php/page.php:
|
326 |
msgid ""
|
327 |
"This plugin stored you entered code in the database of your website. For "
|
328 |
"getting your code, you also can go to the <code>Database</code> ➡ "
|
@@ -330,13 +353,13 @@ msgid ""
|
|
330 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
msgid ""
|
335 |
"The last WordPress update is preventing me from editing my website that is "
|
336 |
"using this plugin. Why is this?"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/page.php:
|
340 |
msgid ""
|
341 |
"This plugin can not cause such problem. More likely, the problem are related "
|
342 |
"to the settings of the website. It could just be a cache, so please try to "
|
@@ -345,39 +368,50 @@ msgid ""
|
|
345 |
"please try to re-login to the website, this too can help."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: inc/php/page.php:
|
349 |
msgid "Where to report bug if found?"
|
350 |
msgstr "Где можно сообщить об ошибке?"
|
351 |
|
352 |
-
#: inc/php/page.php:
|
353 |
#, php-format
|
354 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
355 |
msgstr ""
|
356 |
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
357 |
|
358 |
-
#: inc/php/page.php:
|
359 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
360 |
msgstr ""
|
361 |
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
362 |
|
363 |
-
#: inc/php/page.php:
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
-
"Any suggestions are very welcome! Please send me an email to %s "
|
367 |
-
"arthurgareginyan@gmail.com %s. Thank you!"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: inc/php/page.php:
|
371 |
msgid "I love this plugin! Can I help somehow?"
|
372 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
373 |
|
374 |
-
#: inc/php/page.php:
|
375 |
#, php-format
|
376 |
msgid ""
|
377 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
378 |
"click on the donate button, and thank you!"
|
379 |
msgstr ""
|
380 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
#: inc/php/settings.php:21
|
382 |
msgid "About"
|
383 |
msgstr "О плагине"
|
@@ -390,15 +424,11 @@ msgstr ""
|
|
390 |
"Этот плагин даёт вам возможность легко и безопасно добавлять ваши "
|
391 |
"пользовательские функции (PHP код) на ваш веб-сайт."
|
392 |
|
393 |
-
#: inc/php/settings.php:
|
394 |
-
msgid "Version"
|
395 |
-
msgstr "Версия"
|
396 |
-
|
397 |
-
#: inc/php/settings.php:29
|
398 |
msgid "Upgrade"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: inc/php/settings.php:
|
402 |
msgid ""
|
403 |
"I'm an independent developer, without a regular income, so every little "
|
404 |
"contribution helps cover my costs and lets me spend more time building "
|
@@ -408,28 +438,28 @@ msgstr ""
|
|
408 |
"вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
|
409 |
"создание программ для людей как вы."
|
410 |
|
411 |
-
#: inc/php/settings.php:
|
412 |
msgid "Donate with PayPal"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: inc/php/settings.php:
|
416 |
msgid "Thanks for your support!"
|
417 |
msgstr "Спасибо за вашу поддержку!"
|
418 |
|
419 |
-
#: inc/php/settings.php:
|
420 |
msgid "Help"
|
421 |
msgstr "Помощь"
|
422 |
|
423 |
-
#: inc/php/settings.php:
|
424 |
-
msgid "
|
425 |
msgstr "Есть что сказать? Нужна помощь?"
|
426 |
|
427 |
-
#: inc/php/settings.php:
|
428 |
msgid "Functions (PHP code)"
|
429 |
msgstr "Функции (PHP код)"
|
430 |
|
431 |
-
#: inc/php/settings.php:
|
432 |
-
msgid "Save
|
433 |
msgstr "Сохранить изменения"
|
434 |
|
435 |
#. Plugin Name of the plugin/theme
|
@@ -457,11 +487,18 @@ msgstr "Артур Гарегинян"
|
|
457 |
msgid "http://www.arthurgareginyan.com"
|
458 |
msgstr "http://www.arthurgareginyan.com"
|
459 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
#~ msgid "Return to the plugin settings page."
|
461 |
#~ msgstr "Вернитесь на страницу настроек плагина."
|
462 |
|
463 |
#~ msgid ""
|
464 |
-
#~ "To use, enter your custom functions, then click \"Save
|
465 |
#~ "that simple!"
|
466 |
#~ msgstr ""
|
467 |
#~ "Для использования, введите ваши пользовательские функции, затем нажмите "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: My Custom Functions\n"
|
4 |
+
"POT-Creation-Date: 2017-06-16 03:34+0300\n"
|
5 |
+
"PO-Revision-Date: 2017-06-16 03:34+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
43 |
|
44 |
#: inc/php/messages.php:32
|
45 |
#, php-format
|
46 |
+
msgid "Thank you for installing my plugin! I hope you will love it! %s"
|
47 |
+
msgstr "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится! %s"
|
48 |
|
49 |
#: inc/php/messages.php:67
|
50 |
msgid "You have installed an old version of this plugin."
|
67 |
msgid "Please, check the code and try again."
|
68 |
msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
|
69 |
|
70 |
+
#: inc/php/page.php:36
|
71 |
#, php-format
|
72 |
msgid "by %s Arthur Gareginyan %s"
|
73 |
msgstr "от %s Артура Гарегинян %s"
|
74 |
|
75 |
#: inc/php/page.php:42
|
76 |
+
msgid "Version"
|
77 |
+
msgstr "Версия"
|
78 |
+
|
79 |
+
#: inc/php/page.php:49
|
80 |
msgid "Main"
|
81 |
msgstr "Главная"
|
82 |
|
83 |
+
#: inc/php/page.php:50 inc/php/page.php:69
|
84 |
msgid "Usage"
|
85 |
msgstr "Применение"
|
86 |
|
87 |
+
#: inc/php/page.php:51
|
88 |
msgid "F.A.Q."
|
89 |
msgstr "F.A.Q."
|
90 |
|
91 |
+
#: inc/php/page.php:52 inc/php/page.php:221
|
92 |
msgid "Author"
|
93 |
msgstr "Автор"
|
94 |
|
95 |
+
#: inc/php/page.php:53 inc/php/page.php:230 inc/php/settings.php:37
|
96 |
+
#: inc/php/settings.php:89
|
97 |
msgid "Support"
|
98 |
msgstr "Поддержка"
|
99 |
|
100 |
+
#: inc/php/page.php:54
|
101 |
msgid "Family"
|
102 |
msgstr "Семья"
|
103 |
|
104 |
+
#: inc/php/page.php:71
|
105 |
msgid ""
|
106 |
"To add your custom functions (the PHP code) to your website, simply follow "
|
107 |
"these steps:"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/page.php:73
|
111 |
msgid "Go to the \"Main\" tab."
|
112 |
msgstr "Перейдите на вкладку «Главная»."
|
113 |
|
114 |
+
#: inc/php/page.php:74
|
115 |
+
msgid "Place your PHP code in the field."
|
116 |
+
msgstr "Поместите ваш PHP-код в поле."
|
|
|
|
|
117 |
|
118 |
+
#: inc/php/page.php:75
|
119 |
msgid "Example of PHP code:"
|
120 |
msgstr "Пример кода PHP:"
|
121 |
|
122 |
+
#: inc/php/page.php:81 inc/php/page.php:82 inc/php/page.php:88
|
123 |
msgid "Note!"
|
124 |
msgstr "Примечание!"
|
125 |
|
126 |
+
#: inc/php/page.php:81
|
127 |
msgid ""
|
128 |
"Please do not wrap your PHP code in the <code><?php</code>...<code>?></"
|
129 |
"code> HTML tags."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/page.php:82
|
133 |
msgid ""
|
134 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in "
|
135 |
"case of a website crash."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/page.php:84
|
139 |
+
msgid "Switch the toggle to the \"ON\" position."
|
140 |
+
msgstr "Переключите переключатель в положение «ON»."
|
141 |
+
|
142 |
+
#: inc/php/page.php:85
|
143 |
+
msgid "Click the \"Save changes\" button."
|
144 |
+
msgstr "Нажмите кнопку «Сохранить изменения»."
|
145 |
+
|
146 |
+
#: inc/php/page.php:86
|
147 |
msgid "Enjoy the result of applying your PHP code."
|
148 |
+
msgstr "Наслаждайтесь результатом применения вашего PHP-кода."
|
149 |
|
150 |
+
#: inc/php/page.php:86
|
151 |
msgid "It's that simple!"
|
152 |
msgstr "Вот так просто!"
|
153 |
|
154 |
+
#: inc/php/page.php:88
|
155 |
msgid "If you want more options then tell me and I will be happy to add it."
|
156 |
msgstr ""
|
157 |
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
158 |
"добавить их."
|
159 |
|
160 |
+
#: inc/php/page.php:97
|
161 |
msgid "Frequently Asked Questions"
|
162 |
msgstr "Часто задаваемые вопросы"
|
163 |
|
164 |
+
#: inc/php/page.php:101
|
165 |
+
msgid ""
|
166 |
+
"If you have a question, please read the Frequently Asked Questions below to "
|
167 |
+
"see if the answer is here."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: inc/php/page.php:123
|
171 |
msgid "Will this plugin work on my WordPress.COM website?"
|
172 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
173 |
|
174 |
+
#: inc/php/page.php:124
|
175 |
msgid ""
|
176 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
177 |
"websites."
|
179 |
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
180 |
"размещённых веб-сайтах (WordPress.ORG)."
|
181 |
|
182 |
+
#: inc/php/page.php:126
|
183 |
msgid "Can I use this plugin on my language?"
|
184 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
185 |
|
186 |
+
#: inc/php/page.php:128
|
187 |
#, php-format
|
188 |
msgid ""
|
189 |
+
"Yes. This plugin is ready for translation and has already been translated "
|
190 |
+
"into several languages. But If your language is not available then you can "
|
191 |
+
"make one. The POT file is included and placed in the <code>languages</code> "
|
192 |
+
"folder. Just send the PO file to me at the %s and I will include this "
|
193 |
+
"translation within the next plugin update. Many of plugin users would be "
|
194 |
+
"delighted if you share your translation with the community. Thanks for your "
|
195 |
+
"contribution!"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: inc/php/page.php:132
|
199 |
+
msgid ""
|
200 |
+
"Maybe not all existed translations are up to date. You are welcome to "
|
201 |
+
"contribute corrections!"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/page.php:134
|
205 |
msgid "How does it work?"
|
206 |
msgstr "Как оно работает?"
|
207 |
|
208 |
+
#: inc/php/page.php:135
|
209 |
msgid ""
|
210 |
+
"On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
|
211 |
+
"the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
|
212 |
+
"of applying your PHP code. It's that simple!"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: inc/php/page.php:137
|
216 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: inc/php/page.php:138
|
220 |
msgid "Yes. But you need to do it properly, like this:"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: inc/php/page.php:148
|
224 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: inc/php/page.php:149
|
228 |
msgid "I don't limit the number of characters."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: inc/php/page.php:151
|
232 |
msgid ""
|
233 |
"On the plugin settings page, an error message appears. What could be wrong?"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:152
|
237 |
msgid "Here are a few of the most likely causes of the error message:"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/page.php:154
|
241 |
msgid ""
|
242 |
"You make a syntax error in the code that you have entered. Check the syntax "
|
243 |
"of your code and try again."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/page.php:155
|
247 |
msgid ""
|
248 |
"You entered two functions with the same name. Use a unique names for your "
|
249 |
"functions."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:156
|
253 |
msgid ""
|
254 |
"You have entered function with a name that is already occupied by another "
|
255 |
"function. Use a unique name for your function."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/page.php:157
|
259 |
msgid ""
|
260 |
"You are trying to overwrite an existing function (of WordPress, theme, or "
|
261 |
"plugin). Instead, use filters and hooks."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: inc/php/page.php:160
|
265 |
msgid "Does this plugin requires any modification of the theme?"
|
266 |
msgstr "Этот плагин требует изменения темы?"
|
267 |
|
268 |
+
#: inc/php/page.php:161
|
269 |
msgid ""
|
270 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
271 |
"settings page."
|
273 |
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
274 |
"плагина."
|
275 |
|
276 |
+
#: inc/php/page.php:163
|
277 |
msgid "Does this require any knowledge of HTML or CSS?"
|
278 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
279 |
|
280 |
+
#: inc/php/page.php:164
|
281 |
msgid ""
|
282 |
"This plugin can be configured with no knowledge of HTML or CSS, using an "
|
283 |
"easy-to-use plugin settings page. But you need to know the HTML or CSS in "
|
288 |
"для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
|
289 |
"плагин."
|
290 |
|
291 |
+
#: inc/php/page.php:166
|
292 |
msgid "It's not working. What could be wrong?"
|
293 |
msgstr "Оно не работает. Что может быть не так?"
|
294 |
|
295 |
+
#: inc/php/page.php:167
|
296 |
msgid ""
|
297 |
"As with every plugin, it's possible that things don't work. The most common "
|
298 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
301 |
"browser's cache may solve the problem."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/page.php:168
|
305 |
msgid ""
|
306 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
307 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
309 |
"possible, including a link to your website where the problem can be seen."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: inc/php/page.php:170
|
313 |
msgid "What to do if this plugin crashed the website?"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/page.php:171
|
317 |
msgid ""
|
318 |
"This plugin has a built-in functions for checking the custom code for syntax "
|
319 |
"errors, duplicate functions names, and etc. But plugin is not perfect, so "
|
323 |
"the following and all will be fine."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/page.php:173
|
327 |
msgid ""
|
328 |
"Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
|
329 |
"functions/</code>)."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/page.php:174
|
333 |
msgid ""
|
334 |
"Rename the \"START\" file to \"STOP\". This will stop the execution of your "
|
335 |
"custom code."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: inc/php/page.php:175
|
339 |
msgid ""
|
340 |
"Return to the plugin settings page and edit/fix your custom code that you "
|
341 |
"entered before the crash."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/page.php:176
|
345 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
346 |
msgstr "Переименуйте файл \"STOP\" в \"START\", и все готово!"
|
347 |
|
348 |
+
#: inc/php/page.php:178
|
349 |
msgid ""
|
350 |
"This plugin stored you entered code in the database of your website. For "
|
351 |
"getting your code, you also can go to the <code>Database</code> ➡ "
|
353 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: inc/php/page.php:180
|
357 |
msgid ""
|
358 |
"The last WordPress update is preventing me from editing my website that is "
|
359 |
"using this plugin. Why is this?"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/page.php:181
|
363 |
msgid ""
|
364 |
"This plugin can not cause such problem. More likely, the problem are related "
|
365 |
"to the settings of the website. It could just be a cache, so please try to "
|
368 |
"please try to re-login to the website, this too can help."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: inc/php/page.php:183
|
372 |
msgid "Where to report bug if found?"
|
373 |
msgstr "Где можно сообщить об ошибке?"
|
374 |
|
375 |
+
#: inc/php/page.php:185
|
376 |
#, php-format
|
377 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
378 |
msgstr ""
|
379 |
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
380 |
|
381 |
+
#: inc/php/page.php:191
|
382 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
383 |
msgstr ""
|
384 |
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
385 |
|
386 |
+
#: inc/php/page.php:193
|
387 |
#, php-format
|
388 |
msgid ""
|
389 |
+
"Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
|
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/php/page.php:198
|
393 |
msgid "I love this plugin! Can I help somehow?"
|
394 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
395 |
|
396 |
+
#: inc/php/page.php:200
|
397 |
#, php-format
|
398 |
msgid ""
|
399 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
400 |
"click on the donate button, and thank you!"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: inc/php/page.php:206
|
404 |
+
msgid "My question wasn't answered here."
|
405 |
+
msgstr "Моего вопроса здесь нет."
|
406 |
+
|
407 |
+
#: inc/php/page.php:208
|
408 |
+
#, php-format
|
409 |
+
msgid ""
|
410 |
+
"You can ask your question on the plugin support page %s. But please keep in "
|
411 |
+
"mind that this plugin is free, and there is no a special support team, so I "
|
412 |
+
"have no way to answer everyone."
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
#: inc/php/settings.php:21
|
416 |
msgid "About"
|
417 |
msgstr "О плагине"
|
424 |
"Этот плагин даёт вам возможность легко и безопасно добавлять ваши "
|
425 |
"пользовательские функции (PHP код) на ваш веб-сайт."
|
426 |
|
427 |
+
#: inc/php/settings.php:28
|
|
|
|
|
|
|
|
|
428 |
msgid "Upgrade"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: inc/php/settings.php:39 inc/php/settings.php:91
|
432 |
msgid ""
|
433 |
"I'm an independent developer, without a regular income, so every little "
|
434 |
"contribution helps cover my costs and lets me spend more time building "
|
438 |
"вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
|
439 |
"создание программ для людей как вы."
|
440 |
|
441 |
+
#: inc/php/settings.php:40 inc/php/settings.php:92
|
442 |
msgid "Donate with PayPal"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: inc/php/settings.php:41 inc/php/settings.php:93
|
446 |
msgid "Thanks for your support!"
|
447 |
msgstr "Спасибо за вашу поддержку!"
|
448 |
|
449 |
+
#: inc/php/settings.php:46
|
450 |
msgid "Help"
|
451 |
msgstr "Помощь"
|
452 |
|
453 |
+
#: inc/php/settings.php:48
|
454 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
455 |
msgstr "Есть что сказать? Нужна помощь?"
|
456 |
|
457 |
+
#: inc/php/settings.php:75
|
458 |
msgid "Functions (PHP code)"
|
459 |
msgstr "Функции (PHP код)"
|
460 |
|
461 |
+
#: inc/php/settings.php:86
|
462 |
+
msgid "Save changes"
|
463 |
msgstr "Сохранить изменения"
|
464 |
|
465 |
#. Plugin Name of the plugin/theme
|
487 |
msgid "http://www.arthurgareginyan.com"
|
488 |
msgstr "http://www.arthurgareginyan.com"
|
489 |
|
490 |
+
#~ msgid "You can contact me by email %s"
|
491 |
+
#~ msgstr "Вы можете связаться со мной по электронной почте %s"
|
492 |
+
|
493 |
+
#~ msgid "Thank you for installing my plugin! I hope you will love it %s"
|
494 |
+
#~ msgstr ""
|
495 |
+
#~ "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
|
496 |
+
|
497 |
#~ msgid "Return to the plugin settings page."
|
498 |
#~ msgstr "Вернитесь на страницу настроек плагина."
|
499 |
|
500 |
#~ msgid ""
|
501 |
+
#~ "To use, enter your custom functions, then click \"Save changes\". It's "
|
502 |
#~ "that simple!"
|
503 |
#~ msgstr ""
|
504 |
#~ "Для использования, введите ваши пользовательские функции, затем нажмите "
|
languages/my-custom-functions-zh_TW.mo
CHANGED
Binary file
|
languages/my-custom-functions-zh_TW.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: My Custom Functions\n"
|
4 |
-
"POT-Creation-Date: 2017-06-
|
5 |
-
"PO-Revision-Date: 2017-06-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: zh_TW\n"
|
@@ -42,7 +42,7 @@ msgstr ""
|
|
42 |
|
43 |
#: inc/php/messages.php:32
|
44 |
#, php-format
|
45 |
-
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/messages.php:67
|
@@ -65,199 +65,222 @@ msgstr "抱歉!您的程式碼造成了「嚴重錯誤」,所以並沒有套
|
|
65 |
msgid "Please, check the code and try again."
|
66 |
msgstr "請重新檢查程式碼再試一次"
|
67 |
|
68 |
-
#: inc/php/page.php:
|
69 |
#, php-format
|
70 |
msgid "by %s Arthur Gareginyan %s"
|
71 |
msgstr ""
|
72 |
|
73 |
#: inc/php/page.php:42
|
|
|
|
|
|
|
|
|
74 |
msgid "Main"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "F.A.Q."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Author"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
-
#: inc/php/settings.php:
|
91 |
msgid "Support"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "Family"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid ""
|
100 |
"To add your custom functions (the PHP code) to your website, simply follow "
|
101 |
"these steps:"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/php/page.php:
|
105 |
msgid "Go to the \"Main\" tab."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: inc/php/page.php:
|
109 |
-
msgid ""
|
110 |
-
"Add your PHP code to the field, switch the toggle to the \"ON\" position and "
|
111 |
-
"click the \"Save Changes\" button."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "Example of PHP code:"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
msgid "Note!"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
msgid ""
|
124 |
"Please do not wrap your PHP code in the <code><?php</code>...<code>?></"
|
125 |
"code> HTML tags."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/php/page.php:
|
129 |
msgid ""
|
130 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in "
|
131 |
"case of a website crash."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid "Enjoy the result of applying your PHP code."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/php/page.php:
|
139 |
msgid "It's that simple!"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "If you want more options then tell me and I will be happy to add it."
|
144 |
msgstr "如果您還想要更多的選項請跟我說,我會很樂意加上去"
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid "Frequently Asked Questions"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
msgid "Will this plugin work on my WordPress.COM website?"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: inc/php/page.php:
|
155 |
msgid ""
|
156 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
157 |
"websites."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc/php/page.php:
|
161 |
msgid "Can I use this plugin on my language?"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/php/page.php:
|
165 |
#, php-format
|
166 |
msgid ""
|
167 |
-
"Yes.
|
168 |
-
"
|
169 |
-
"placed in the <code>languages</code>
|
170 |
-
"
|
171 |
-
"translation
|
172 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
msgid "How does it work?"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
msgid ""
|
181 |
-
"On the \"
|
182 |
-
"
|
183 |
-
"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: inc/php/page.php:
|
187 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: inc/php/page.php:
|
191 |
msgid "Yes. But you need to do it properly, like this:"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: inc/php/page.php:
|
195 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: inc/php/page.php:
|
199 |
msgid "I don't limit the number of characters."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: inc/php/page.php:
|
203 |
msgid ""
|
204 |
"On the plugin settings page, an error message appears. What could be wrong?"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Here are a few of the most likely causes of the error message:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
msgid ""
|
213 |
"You make a syntax error in the code that you have entered. Check the syntax "
|
214 |
"of your code and try again."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/page.php:
|
218 |
msgid ""
|
219 |
"You entered two functions with the same name. Use a unique names for your "
|
220 |
"functions."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
msgid ""
|
225 |
"You have entered function with a name that is already occupied by another "
|
226 |
"function. Use a unique name for your function."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/page.php:
|
230 |
msgid ""
|
231 |
"You are trying to overwrite an existing function (of WordPress, theme, or "
|
232 |
"plugin). Instead, use filters and hooks."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: inc/php/page.php:
|
236 |
msgid "Does this plugin requires any modification of the theme?"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: inc/php/page.php:
|
240 |
msgid ""
|
241 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
242 |
"settings page."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/php/page.php:
|
246 |
msgid "Does this require any knowledge of HTML or CSS?"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: inc/php/page.php:
|
250 |
msgid ""
|
251 |
"This plugin can be configured with no knowledge of HTML or CSS, using an "
|
252 |
"easy-to-use plugin settings page. But you need to know the HTML or CSS in "
|
253 |
"order to add/remove/modify the HTML or CSS code by using this plugin."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
msgid "It's not working. What could be wrong?"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
msgid ""
|
262 |
"As with every plugin, it's possible that things don't work. The most common "
|
263 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
@@ -266,7 +289,7 @@ msgid ""
|
|
266 |
"browser's cache may solve the problem."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: inc/php/page.php:
|
270 |
msgid ""
|
271 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
272 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
@@ -274,11 +297,11 @@ msgid ""
|
|
274 |
"possible, including a link to your website where the problem can be seen."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: inc/php/page.php:
|
278 |
msgid "What to do if this plugin crashed the website?"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/php/page.php:
|
282 |
msgid ""
|
283 |
"This plugin has a built-in functions for checking the custom code for syntax "
|
284 |
"errors, duplicate functions names, and etc. But plugin is not perfect, so "
|
@@ -288,29 +311,29 @@ msgid ""
|
|
288 |
"the following and all will be fine."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
msgid ""
|
293 |
"Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
|
294 |
"functions/</code>)."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/php/page.php:
|
298 |
msgid ""
|
299 |
"Rename the \"START\" file to \"STOP\". This will stop the execution of your "
|
300 |
"custom code."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
msgid ""
|
305 |
"Return to the plugin settings page and edit/fix your custom code that you "
|
306 |
"entered before the crash."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/php/page.php:
|
314 |
msgid ""
|
315 |
"This plugin stored you entered code in the database of your website. For "
|
316 |
"getting your code, you also can go to the <code>Database</code> ➡ "
|
@@ -318,13 +341,13 @@ msgid ""
|
|
318 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
msgid ""
|
323 |
"The last WordPress update is preventing me from editing my website that is "
|
324 |
"using this plugin. Why is this?"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/page.php:
|
328 |
msgid ""
|
329 |
"This plugin can not cause such problem. More likely, the problem are related "
|
330 |
"to the settings of the website. It could just be a cache, so please try to "
|
@@ -333,37 +356,48 @@ msgid ""
|
|
333 |
"please try to re-login to the website, this too can help."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/php/page.php:
|
337 |
msgid "Where to report bug if found?"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/php/page.php:
|
341 |
#, php-format
|
342 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/php/page.php:
|
346 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/php/page.php:
|
350 |
#, php-format
|
351 |
msgid ""
|
352 |
-
"Any suggestions are very welcome! Please send me an email to %s "
|
353 |
-
"arthurgareginyan@gmail.com %s. Thank you!"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "I love this plugin! Can I help somehow?"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
#, php-format
|
362 |
msgid ""
|
363 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
364 |
"click on the donate button, and thank you!"
|
365 |
msgstr ""
|
366 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
#: inc/php/settings.php:21
|
368 |
msgid "About"
|
369 |
msgstr "關於"
|
@@ -374,43 +408,39 @@ msgid ""
|
|
374 |
"code) to your website."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/php/settings.php:
|
378 |
-
msgid "Version"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: inc/php/settings.php:29
|
382 |
msgid "Upgrade"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: inc/php/settings.php:
|
386 |
msgid ""
|
387 |
"I'm an independent developer, without a regular income, so every little "
|
388 |
"contribution helps cover my costs and lets me spend more time building "
|
389 |
"things for people like you to enjoy."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: inc/php/settings.php:
|
393 |
msgid "Donate with PayPal"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: inc/php/settings.php:
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "謝謝您的贊助!"
|
399 |
|
400 |
-
#: inc/php/settings.php:
|
401 |
msgid "Help"
|
402 |
msgstr "幫助"
|
403 |
|
404 |
-
#: inc/php/settings.php:
|
405 |
-
msgid "
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/php/settings.php:
|
409 |
msgid "Functions (PHP code)"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: inc/php/settings.php:
|
413 |
-
msgid "Save
|
414 |
msgstr "儲存變更"
|
415 |
|
416 |
#. Plugin Name of the plugin/theme
|
@@ -436,7 +466,7 @@ msgid "http://www.arthurgareginyan.com"
|
|
436 |
msgstr ""
|
437 |
|
438 |
#~ msgid ""
|
439 |
-
#~ "To use, enter your custom functions, then click \"Save
|
440 |
#~ "that simple!"
|
441 |
#~ msgstr ""
|
442 |
#~ "要使用它,請輸入您的自訂功能然後按下「儲存變更」就可以了,就是這麼簡單!"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: My Custom Functions\n"
|
4 |
+
"POT-Creation-Date: 2017-06-16 03:34+0300\n"
|
5 |
+
"PO-Revision-Date: 2017-06-16 03:34+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: zh_TW\n"
|
42 |
|
43 |
#: inc/php/messages.php:32
|
44 |
#, php-format
|
45 |
+
msgid "Thank you for installing my plugin! I hope you will love it! %s"
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/messages.php:67
|
65 |
msgid "Please, check the code and try again."
|
66 |
msgstr "請重新檢查程式碼再試一次"
|
67 |
|
68 |
+
#: inc/php/page.php:36
|
69 |
#, php-format
|
70 |
msgid "by %s Arthur Gareginyan %s"
|
71 |
msgstr ""
|
72 |
|
73 |
#: inc/php/page.php:42
|
74 |
+
msgid "Version"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: inc/php/page.php:49
|
78 |
msgid "Main"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: inc/php/page.php:50 inc/php/page.php:69
|
82 |
msgid "Usage"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: inc/php/page.php:51
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:52 inc/php/page.php:221
|
90 |
msgid "Author"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/page.php:53 inc/php/page.php:230 inc/php/settings.php:37
|
94 |
+
#: inc/php/settings.php:89
|
95 |
msgid "Support"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:54
|
99 |
msgid "Family"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/php/page.php:71
|
103 |
msgid ""
|
104 |
"To add your custom functions (the PHP code) to your website, simply follow "
|
105 |
"these steps:"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: inc/php/page.php:73
|
109 |
msgid "Go to the \"Main\" tab."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/php/page.php:74
|
113 |
+
msgid "Place your PHP code in the field."
|
|
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/php/page.php:75
|
117 |
msgid "Example of PHP code:"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/page.php:81 inc/php/page.php:82 inc/php/page.php:88
|
121 |
msgid "Note!"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/php/page.php:81
|
125 |
msgid ""
|
126 |
"Please do not wrap your PHP code in the <code><?php</code>...<code>?></"
|
127 |
"code> HTML tags."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/php/page.php:82
|
131 |
msgid ""
|
132 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in "
|
133 |
"case of a website crash."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/php/page.php:84
|
137 |
+
msgid "Switch the toggle to the \"ON\" position."
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: inc/php/page.php:85
|
141 |
+
msgid "Click the \"Save changes\" button."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: inc/php/page.php:86
|
145 |
msgid "Enjoy the result of applying your PHP code."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/php/page.php:86
|
149 |
msgid "It's that simple!"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/php/page.php:88
|
153 |
msgid "If you want more options then tell me and I will be happy to add it."
|
154 |
msgstr "如果您還想要更多的選項請跟我說,我會很樂意加上去"
|
155 |
|
156 |
+
#: inc/php/page.php:97
|
157 |
msgid "Frequently Asked Questions"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: inc/php/page.php:101
|
161 |
+
msgid ""
|
162 |
+
"If you have a question, please read the Frequently Asked Questions below to "
|
163 |
+
"see if the answer is here."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: inc/php/page.php:123
|
167 |
msgid "Will this plugin work on my WordPress.COM website?"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/php/page.php:124
|
171 |
msgid ""
|
172 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
173 |
"websites."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/page.php:126
|
177 |
msgid "Can I use this plugin on my language?"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/page.php:128
|
181 |
#, php-format
|
182 |
msgid ""
|
183 |
+
"Yes. This plugin is ready for translation and has already been translated "
|
184 |
+
"into several languages. But If your language is not available then you can "
|
185 |
+
"make one. The POT file is included and placed in the <code>languages</code> "
|
186 |
+
"folder. Just send the PO file to me at the %s and I will include this "
|
187 |
+
"translation within the next plugin update. Many of plugin users would be "
|
188 |
+
"delighted if you share your translation with the community. Thanks for your "
|
189 |
+
"contribution!"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: inc/php/page.php:132
|
193 |
+
msgid ""
|
194 |
+
"Maybe not all existed translations are up to date. You are welcome to "
|
195 |
+
"contribute corrections!"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: inc/php/page.php:134
|
199 |
msgid "How does it work?"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: inc/php/page.php:135
|
203 |
msgid ""
|
204 |
+
"On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
|
205 |
+
"the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
|
206 |
+
"of applying your PHP code. It's that simple!"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc/php/page.php:137
|
210 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: inc/php/page.php:138
|
214 |
msgid "Yes. But you need to do it properly, like this:"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: inc/php/page.php:148
|
218 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: inc/php/page.php:149
|
222 |
msgid "I don't limit the number of characters."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: inc/php/page.php:151
|
226 |
msgid ""
|
227 |
"On the plugin settings page, an error message appears. What could be wrong?"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/php/page.php:152
|
231 |
msgid "Here are a few of the most likely causes of the error message:"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/php/page.php:154
|
235 |
msgid ""
|
236 |
"You make a syntax error in the code that you have entered. Check the syntax "
|
237 |
"of your code and try again."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/page.php:155
|
241 |
msgid ""
|
242 |
"You entered two functions with the same name. Use a unique names for your "
|
243 |
"functions."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/page.php:156
|
247 |
msgid ""
|
248 |
"You have entered function with a name that is already occupied by another "
|
249 |
"function. Use a unique name for your function."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:157
|
253 |
msgid ""
|
254 |
"You are trying to overwrite an existing function (of WordPress, theme, or "
|
255 |
"plugin). Instead, use filters and hooks."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/page.php:160
|
259 |
msgid "Does this plugin requires any modification of the theme?"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/page.php:161
|
263 |
msgid ""
|
264 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
265 |
"settings page."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: inc/php/page.php:163
|
269 |
msgid "Does this require any knowledge of HTML or CSS?"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: inc/php/page.php:164
|
273 |
msgid ""
|
274 |
"This plugin can be configured with no knowledge of HTML or CSS, using an "
|
275 |
"easy-to-use plugin settings page. But you need to know the HTML or CSS in "
|
276 |
"order to add/remove/modify the HTML or CSS code by using this plugin."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/php/page.php:166
|
280 |
msgid "It's not working. What could be wrong?"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc/php/page.php:167
|
284 |
msgid ""
|
285 |
"As with every plugin, it's possible that things don't work. The most common "
|
286 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
289 |
"browser's cache may solve the problem."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/page.php:168
|
293 |
msgid ""
|
294 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
295 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
297 |
"possible, including a link to your website where the problem can be seen."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/php/page.php:170
|
301 |
msgid "What to do if this plugin crashed the website?"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/page.php:171
|
305 |
msgid ""
|
306 |
"This plugin has a built-in functions for checking the custom code for syntax "
|
307 |
"errors, duplicate functions names, and etc. But plugin is not perfect, so "
|
311 |
"the following and all will be fine."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/page.php:173
|
315 |
msgid ""
|
316 |
"Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
|
317 |
"functions/</code>)."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/page.php:174
|
321 |
msgid ""
|
322 |
"Rename the \"START\" file to \"STOP\". This will stop the execution of your "
|
323 |
"custom code."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/page.php:175
|
327 |
msgid ""
|
328 |
"Return to the plugin settings page and edit/fix your custom code that you "
|
329 |
"entered before the crash."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/page.php:176
|
333 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/page.php:178
|
337 |
msgid ""
|
338 |
"This plugin stored you entered code in the database of your website. For "
|
339 |
"getting your code, you also can go to the <code>Database</code> ➡ "
|
341 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/page.php:180
|
345 |
msgid ""
|
346 |
"The last WordPress update is preventing me from editing my website that is "
|
347 |
"using this plugin. Why is this?"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: inc/php/page.php:181
|
351 |
msgid ""
|
352 |
"This plugin can not cause such problem. More likely, the problem are related "
|
353 |
"to the settings of the website. It could just be a cache, so please try to "
|
356 |
"please try to re-login to the website, this too can help."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: inc/php/page.php:183
|
360 |
msgid "Where to report bug if found?"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: inc/php/page.php:185
|
364 |
#, php-format
|
365 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc/php/page.php:191
|
369 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/php/page.php:193
|
373 |
#, php-format
|
374 |
msgid ""
|
375 |
+
"Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: inc/php/page.php:198
|
379 |
msgid "I love this plugin! Can I help somehow?"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: inc/php/page.php:200
|
383 |
#, php-format
|
384 |
msgid ""
|
385 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
386 |
"click on the donate button, and thank you!"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: inc/php/page.php:206
|
390 |
+
msgid "My question wasn't answered here."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: inc/php/page.php:208
|
394 |
+
#, php-format
|
395 |
+
msgid ""
|
396 |
+
"You can ask your question on the plugin support page %s. But please keep in "
|
397 |
+
"mind that this plugin is free, and there is no a special support team, so I "
|
398 |
+
"have no way to answer everyone."
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
#: inc/php/settings.php:21
|
402 |
msgid "About"
|
403 |
msgstr "關於"
|
408 |
"code) to your website."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: inc/php/settings.php:28
|
|
|
|
|
|
|
|
|
412 |
msgid "Upgrade"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: inc/php/settings.php:39 inc/php/settings.php:91
|
416 |
msgid ""
|
417 |
"I'm an independent developer, without a regular income, so every little "
|
418 |
"contribution helps cover my costs and lets me spend more time building "
|
419 |
"things for people like you to enjoy."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/settings.php:40 inc/php/settings.php:92
|
423 |
msgid "Donate with PayPal"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/php/settings.php:41 inc/php/settings.php:93
|
427 |
msgid "Thanks for your support!"
|
428 |
msgstr "謝謝您的贊助!"
|
429 |
|
430 |
+
#: inc/php/settings.php:46
|
431 |
msgid "Help"
|
432 |
msgstr "幫助"
|
433 |
|
434 |
+
#: inc/php/settings.php:48
|
435 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/php/settings.php:75
|
439 |
msgid "Functions (PHP code)"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: inc/php/settings.php:86
|
443 |
+
msgid "Save changes"
|
444 |
msgstr "儲存變更"
|
445 |
|
446 |
#. Plugin Name of the plugin/theme
|
466 |
msgstr ""
|
467 |
|
468 |
#~ msgid ""
|
469 |
+
#~ "To use, enter your custom functions, then click \"Save changes\". It's "
|
470 |
#~ "that simple!"
|
471 |
#~ msgstr ""
|
472 |
#~ "要使用它,請輸入您的自訂功能然後按下「儲存變更」就可以了,就是這麼簡單!"
|
languages/my-custom-functions.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2017-06-
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -42,7 +42,7 @@ msgstr ""
|
|
42 |
|
43 |
#: inc/php/messages.php:32
|
44 |
#, php-format
|
45 |
-
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/messages.php:67
|
@@ -65,184 +65,204 @@ msgstr ""
|
|
65 |
msgid "Please, check the code and try again."
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: inc/php/page.php:
|
69 |
#, php-format
|
70 |
msgid "by %s Arthur Gareginyan %s"
|
71 |
msgstr ""
|
72 |
|
73 |
#: inc/php/page.php:42
|
|
|
|
|
|
|
|
|
74 |
msgid "Main"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "F.A.Q."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Author"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Family"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "Go to the \"Main\" tab."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
-
msgid ""
|
107 |
-
"Add your PHP code to the field, switch the toggle to the \"ON\" position and click the \"Save "
|
108 |
-
"Changes\" button."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/page.php:
|
112 |
msgid "Example of PHP code:"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/page.php:
|
116 |
msgid "Note!"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/page.php:
|
120 |
msgid "Please do not wrap your PHP code in the <code><?php</code>...<code>?></code> HTML tags."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/page.php:
|
124 |
msgid ""
|
125 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
msgid "Enjoy the result of applying your PHP code."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/page.php:
|
133 |
msgid "It's that simple!"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/page.php:
|
137 |
msgid "If you want more options then tell me and I will be happy to add it."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/php/page.php:
|
141 |
msgid "Frequently Asked Questions"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
msgid "Will this plugin work on my WordPress.COM website?"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/php/page.php:
|
149 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:
|
153 |
msgid "Can I use this plugin on my language?"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/php/page.php:
|
157 |
#, php-format
|
158 |
msgid ""
|
159 |
-
"Yes.
|
160 |
-
"
|
161 |
-
"
|
162 |
-
"
|
163 |
-
"translation
|
|
|
|
|
|
|
|
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: inc/php/page.php:
|
167 |
msgid "How does it work?"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: inc/php/page.php:
|
171 |
msgid ""
|
172 |
-
"On the \"
|
173 |
-
"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/page.php:
|
177 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/page.php:
|
181 |
msgid "Yes. But you need to do it properly, like this:"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/page.php:
|
185 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/page.php:
|
189 |
msgid "I don't limit the number of characters."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
msgid "Here are a few of the most likely causes of the error message:"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/page.php:
|
201 |
msgid ""
|
202 |
"You make a syntax error in the code that you have entered. Check the syntax of your code and try "
|
203 |
"again."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: inc/php/page.php:
|
207 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: inc/php/page.php:
|
211 |
msgid ""
|
212 |
"You have entered function with a name that is already occupied by another function. Use a unique "
|
213 |
"name for your function."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid ""
|
218 |
"You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use "
|
219 |
"filters and hooks."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: inc/php/page.php:
|
223 |
msgid "Does this plugin requires any modification of the theme?"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: inc/php/page.php:
|
227 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: inc/php/page.php:
|
231 |
msgid "Does this require any knowledge of HTML or CSS?"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/page.php:
|
235 |
msgid ""
|
236 |
"This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
|
237 |
"settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS "
|
238 |
"code by using this plugin."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/php/page.php:
|
242 |
msgid "It's not working. What could be wrong?"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/php/page.php:
|
246 |
msgid ""
|
247 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a "
|
248 |
"web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
|
@@ -250,7 +270,7 @@ msgid ""
|
|
250 |
"browser's cache may solve the problem."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
msgid ""
|
255 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
256 |
"plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
|
@@ -258,11 +278,11 @@ msgid ""
|
|
258 |
"seen."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: inc/php/page.php:
|
262 |
msgid "What to do if this plugin crashed the website?"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: inc/php/page.php:
|
266 |
msgid ""
|
267 |
"This plugin has a built-in functions for checking the custom code for syntax errors, duplicate "
|
268 |
"functions names, and etc. But plugin is not perfect, so there are times when the entered custom "
|
@@ -271,37 +291,37 @@ msgid ""
|
|
271 |
"and all will be fine."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/page.php:
|
275 |
msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/page.php:
|
279 |
msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: inc/php/page.php:
|
283 |
msgid ""
|
284 |
"Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/php/page.php:
|
288 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
msgid ""
|
293 |
"This plugin stored you entered code in the database of your website. For getting your code, you "
|
294 |
"also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option "
|
295 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: inc/php/page.php:
|
299 |
msgid ""
|
300 |
"The last WordPress update is preventing me from editing my website that is using this plugin. Why "
|
301 |
"is this?"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
msgid ""
|
306 |
"This plugin can not cause such problem. More likely, the problem are related to the settings of the "
|
307 |
"website. It could just be a cache, so please try to clear your website's cache (may be you using a "
|
@@ -309,37 +329,46 @@ msgid ""
|
|
309 |
"Also please try to re-login to the website, this too can help."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "Where to report bug if found?"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
#, php-format
|
318 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/php/page.php:
|
326 |
#, php-format
|
327 |
-
msgid ""
|
328 |
-
"Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
|
329 |
-
"Thank you!"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/php/page.php:
|
333 |
msgid "I love this plugin! Can I help somehow?"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/php/page.php:
|
337 |
#, php-format
|
338 |
msgid ""
|
339 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
|
340 |
"button, and thank you!"
|
341 |
msgstr ""
|
342 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
#: inc/php/settings.php:21
|
344 |
msgid "About"
|
345 |
msgstr ""
|
@@ -349,42 +378,38 @@ msgid ""
|
|
349 |
"This plugin allows you to easily and safely add your custom functions (PHP code) to your website."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/php/settings.php:
|
353 |
-
msgid "Version"
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: inc/php/settings.php:29
|
357 |
msgid "Upgrade"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/settings.php:
|
361 |
msgid ""
|
362 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my "
|
363 |
"costs and lets me spend more time building things for people like you to enjoy."
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: inc/php/settings.php:
|
367 |
msgid "Donate with PayPal"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: inc/php/settings.php:
|
371 |
msgid "Thanks for your support!"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: inc/php/settings.php:
|
375 |
msgid "Help"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: inc/php/settings.php:
|
379 |
-
msgid "
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: inc/php/settings.php:
|
383 |
msgid "Functions (PHP code)"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: inc/php/settings.php:
|
387 |
-
msgid "Save
|
388 |
msgstr ""
|
389 |
|
390 |
#. Plugin Name of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2017-06-16 03:34+0300\n"
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
42 |
|
43 |
#: inc/php/messages.php:32
|
44 |
#, php-format
|
45 |
+
msgid "Thank you for installing my plugin! I hope you will love it! %s"
|
46 |
msgstr ""
|
47 |
|
48 |
#: inc/php/messages.php:67
|
65 |
msgid "Please, check the code and try again."
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: inc/php/page.php:36
|
69 |
#, php-format
|
70 |
msgid "by %s Arthur Gareginyan %s"
|
71 |
msgstr ""
|
72 |
|
73 |
#: inc/php/page.php:42
|
74 |
+
msgid "Version"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: inc/php/page.php:49
|
78 |
msgid "Main"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: inc/php/page.php:50 inc/php/page.php:69
|
82 |
msgid "Usage"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: inc/php/page.php:51
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:52 inc/php/page.php:221
|
90 |
msgid "Author"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/page.php:53 inc/php/page.php:230 inc/php/settings.php:37 inc/php/settings.php:89
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/page.php:54
|
98 |
msgid "Family"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/php/page.php:71
|
102 |
msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/page.php:73
|
106 |
msgid "Go to the \"Main\" tab."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: inc/php/page.php:74
|
110 |
+
msgid "Place your PHP code in the field."
|
|
|
|
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/page.php:75
|
114 |
msgid "Example of PHP code:"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: inc/php/page.php:81 inc/php/page.php:82 inc/php/page.php:88
|
118 |
msgid "Note!"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: inc/php/page.php:81
|
122 |
msgid "Please do not wrap your PHP code in the <code><?php</code>...<code>?></code> HTML tags."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/php/page.php:82
|
126 |
msgid ""
|
127 |
"Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/php/page.php:84
|
131 |
+
msgid "Switch the toggle to the \"ON\" position."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: inc/php/page.php:85
|
135 |
+
msgid "Click the \"Save changes\" button."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: inc/php/page.php:86
|
139 |
msgid "Enjoy the result of applying your PHP code."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:86
|
143 |
msgid "It's that simple!"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/page.php:88
|
147 |
msgid "If you want more options then tell me and I will be happy to add it."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: inc/php/page.php:97
|
151 |
msgid "Frequently Asked Questions"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: inc/php/page.php:101
|
155 |
+
msgid ""
|
156 |
+
"If you have a question, please read the Frequently Asked Questions below to see if the answer is "
|
157 |
+
"here."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:123
|
161 |
msgid "Will this plugin work on my WordPress.COM website?"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/php/page.php:124
|
165 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: inc/php/page.php:126
|
169 |
msgid "Can I use this plugin on my language?"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/page.php:128
|
173 |
#, php-format
|
174 |
msgid ""
|
175 |
+
"Yes. This plugin is ready for translation and has already been translated into several languages. "
|
176 |
+
"But If your language is not available then you can make one. The POT file is included and placed in "
|
177 |
+
"the <code>languages</code> folder. Just send the PO file to me at the %s and I will include this "
|
178 |
+
"translation within the next plugin update. Many of plugin users would be delighted if you share "
|
179 |
+
"your translation with the community. Thanks for your contribution!"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: inc/php/page.php:132
|
183 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: inc/php/page.php:134
|
187 |
msgid "How does it work?"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: inc/php/page.php:135
|
191 |
msgid ""
|
192 |
+
"On the \"Main\" tab, place your PHP code in the field, switch the toggle to the \"ON\" position and "
|
193 |
+
"click the \"Save changes\" button. Enjoy the result of applying your PHP code. It's that simple!"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/page.php:137
|
197 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/page.php:138
|
201 |
msgid "Yes. But you need to do it properly, like this:"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/page.php:148
|
205 |
msgid "How much of PHP code (characters) I can enter in the text field?"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/page.php:149
|
209 |
msgid "I don't limit the number of characters."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/page.php:151
|
213 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/page.php:152
|
217 |
msgid "Here are a few of the most likely causes of the error message:"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/page.php:154
|
221 |
msgid ""
|
222 |
"You make a syntax error in the code that you have entered. Check the syntax of your code and try "
|
223 |
"again."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: inc/php/page.php:155
|
227 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/php/page.php:156
|
231 |
msgid ""
|
232 |
"You have entered function with a name that is already occupied by another function. Use a unique "
|
233 |
"name for your function."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:157
|
237 |
msgid ""
|
238 |
"You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use "
|
239 |
"filters and hooks."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:160
|
243 |
msgid "Does this plugin requires any modification of the theme?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/page.php:161
|
247 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:163
|
251 |
msgid "Does this require any knowledge of HTML or CSS?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:164
|
255 |
msgid ""
|
256 |
"This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
|
257 |
"settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS "
|
258 |
"code by using this plugin."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: inc/php/page.php:166
|
262 |
msgid "It's not working. What could be wrong?"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:167
|
266 |
msgid ""
|
267 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a "
|
268 |
"web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
|
270 |
"browser's cache may solve the problem."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: inc/php/page.php:168
|
274 |
msgid ""
|
275 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
276 |
"plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
|
278 |
"seen."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: inc/php/page.php:170
|
282 |
msgid "What to do if this plugin crashed the website?"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: inc/php/page.php:171
|
286 |
msgid ""
|
287 |
"This plugin has a built-in functions for checking the custom code for syntax errors, duplicate "
|
288 |
"functions names, and etc. But plugin is not perfect, so there are times when the entered custom "
|
291 |
"and all will be fine."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:173
|
295 |
msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/php/page.php:174
|
299 |
msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/php/page.php:175
|
303 |
msgid ""
|
304 |
"Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: inc/php/page.php:176
|
308 |
msgid "Rename the \"STOP\" file to \"START\" and you're done!"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/page.php:178
|
312 |
msgid ""
|
313 |
"This plugin stored you entered code in the database of your website. For getting your code, you "
|
314 |
"also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option "
|
315 |
"<code>anarcho_cfunctions_settings</code> ➡ <code>option_value</code>."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/page.php:180
|
319 |
msgid ""
|
320 |
"The last WordPress update is preventing me from editing my website that is using this plugin. Why "
|
321 |
"is this?"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/php/page.php:181
|
325 |
msgid ""
|
326 |
"This plugin can not cause such problem. More likely, the problem are related to the settings of the "
|
327 |
"website. It could just be a cache, so please try to clear your website's cache (may be you using a "
|
329 |
"Also please try to re-login to the website, this too can help."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/page.php:183
|
333 |
msgid "Where to report bug if found?"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/page.php:185
|
337 |
#, php-format
|
338 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: inc/php/page.php:191
|
342 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: inc/php/page.php:193
|
346 |
#, php-format
|
347 |
+
msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
|
|
|
|
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: inc/php/page.php:198
|
351 |
msgid "I love this plugin! Can I help somehow?"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: inc/php/page.php:200
|
355 |
#, php-format
|
356 |
msgid ""
|
357 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
|
358 |
"button, and thank you!"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: inc/php/page.php:206
|
362 |
+
msgid "My question wasn't answered here."
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: inc/php/page.php:208
|
366 |
+
#, php-format
|
367 |
+
msgid ""
|
368 |
+
"You can ask your question on the plugin support page %s. But please keep in mind that this plugin "
|
369 |
+
"is free, and there is no a special support team, so I have no way to answer everyone."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
#: inc/php/settings.php:21
|
373 |
msgid "About"
|
374 |
msgstr ""
|
378 |
"This plugin allows you to easily and safely add your custom functions (PHP code) to your website."
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: inc/php/settings.php:28
|
|
|
|
|
|
|
|
|
382 |
msgid "Upgrade"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: inc/php/settings.php:39 inc/php/settings.php:91
|
386 |
msgid ""
|
387 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my "
|
388 |
"costs and lets me spend more time building things for people like you to enjoy."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: inc/php/settings.php:40 inc/php/settings.php:92
|
392 |
msgid "Donate with PayPal"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: inc/php/settings.php:41 inc/php/settings.php:93
|
396 |
msgid "Thanks for your support!"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: inc/php/settings.php:46
|
400 |
msgid "Help"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: inc/php/settings.php:48
|
404 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: inc/php/settings.php:75
|
408 |
msgid "Functions (PHP code)"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: inc/php/settings.php:86
|
412 |
+
msgid "Save changes"
|
413 |
msgstr ""
|
414 |
|
415 |
#. Plugin Name of the plugin/theme
|
my-custom-functions.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
* Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Dashboard without need of an external editor.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
-
* Copyright 2014-2017 Arthur Gareginyan (
|
14 |
*
|
15 |
* This plugin is free software: you can redistribute it and/or modify
|
16 |
* it under the terms of the GNU General Public License as published by
|
5 |
* Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Dashboard without need of an external editor.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
+
* Version: 4.4
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
+
* Copyright 2014-2017 Arthur Gareginyan ( website : http://www.arthurgareginyan.com )
|
14 |
*
|
15 |
* This plugin is free software: you can redistribute it and/or modify
|
16 |
* it under the terms of the GNU General Public License as published by
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: code, php, function, snippet, custom, execute, edit, editing, editor, func
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -42,13 +42,17 @@ An easy to use, with intuitive interface WordPress plugin that gives you the abi
|
|
42 |
|
43 |
= Translation =
|
44 |
|
|
|
|
|
45 |
* English (default)
|
46 |
* Russian
|
47 |
* Chinese-Taiwan (translation by Gordon Yu)
|
48 |
* Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
49 |
* French (translation by Theophil Bethel)
|
50 |
|
51 |
-
|
|
|
|
|
52 |
|
53 |
**Consider Going Pro For Additional Features!**
|
54 |
> All features from Free version included plus:
|
@@ -72,9 +76,9 @@ Manually via FTP access:
|
|
72 |
4. Log into Admin Panel of your WordPress website.
|
73 |
5. Activate this plugin through the "`Plugins`" tab.
|
74 |
|
75 |
-
After installation,
|
76 |
|
77 |
-
[More help installing
|
78 |
|
79 |
|
80 |
== Frequently Asked Questions ==
|
@@ -82,10 +86,10 @@ After installation, a "`Custom Functions`" menu item will appear in the "`Appear
|
|
82 |
A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
|
83 |
|
84 |
= Q. Can I use this plugin on my language? =
|
85 |
-
A. Yes. But If your language is not available then you can make one.
|
86 |
|
87 |
= Q. How does it work? =
|
88 |
-
A. Simply go to the plugin settings page,
|
89 |
You can find the plugin settings page at "`WP Admin Panel`" -> "`Appearance`" -> "`Custom Functions`".
|
90 |
|
91 |
= Q. Can I use HTML/CSS/JS code integrated in PHP code? =
|
@@ -175,6 +179,15 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
175 |
|
176 |
== Changelog ==
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
= 4.3 =
|
179 |
* To the plugin settings page added information about the plugin version number.
|
180 |
* The "Tested up to:" comment changed to 4.8 after full testing process.
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 4.4
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
42 |
|
43 |
= Translation =
|
44 |
|
45 |
+
This plugin is ready for translation and has already been translated into several languages.
|
46 |
+
|
47 |
* English (default)
|
48 |
* Russian
|
49 |
* Chinese-Taiwan (translation by Gordon Yu)
|
50 |
* Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
51 |
* French (translation by Theophil Bethel)
|
52 |
|
53 |
+
Maybe not all existed translations are up to date. You are welcome to contribute corrections!
|
54 |
+
|
55 |
+
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
|
56 |
|
57 |
**Consider Going Pro For Additional Features!**
|
58 |
> All features from Free version included plus:
|
76 |
4. Log into Admin Panel of your WordPress website.
|
77 |
5. Activate this plugin through the "`Plugins`" tab.
|
78 |
|
79 |
+
After installation and activation, the "`Custom Functions`" menu item will appear in the "`Appearance`" section. Click on this in order to view plugin administration page.
|
80 |
|
81 |
+
[More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
|
82 |
|
83 |
|
84 |
== Frequently Asked Questions ==
|
86 |
A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
|
87 |
|
88 |
= Q. Can I use this plugin on my language? =
|
89 |
+
A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just send the PO file to me at the arthurgareginyan@gmail.com and I will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
90 |
|
91 |
= Q. How does it work? =
|
92 |
+
A. Simply go to the plugin settings page, place your PHP code in the field, switch the toggle to the "ON" position and click the "Save changes" button. Enjoy the result of applying your PHP code. It's that simple!
|
93 |
You can find the plugin settings page at "`WP Admin Panel`" -> "`Appearance`" -> "`Custom Functions`".
|
94 |
|
95 |
= Q. Can I use HTML/CSS/JS code integrated in PHP code? =
|
179 |
|
180 |
== Changelog ==
|
181 |
|
182 |
+
= 4.4 =
|
183 |
+
* On the plugin settings page, text of buttons are corrected.
|
184 |
+
* On the plugin settings page, the information about the plugin version number moved to header section.
|
185 |
+
* Some mention of constants replaced with variables for easier access.
|
186 |
+
* Content of the "Usage" tab updated.
|
187 |
+
* Content of the "FAQ" tab updated.
|
188 |
+
* An SSL issue within the admin area fixed. The 'src=”http://' replaced with 'src=”//'.
|
189 |
+
* Added load of the jQuery library on the plugin settings page.
|
190 |
+
|
191 |
= 4.3 =
|
192 |
* To the plugin settings page added information about the plugin version number.
|
193 |
* The "Tested up to:" comment changed to 4.8 after full testing process.
|