Version Description
- Mar 8, 2021 =
- Maintenance: Ensure compatibility with upcoming WordPress 5.7.
- Maintenance: Processing of options has been improved. Direct retrieving of options from the database is replaced by the "options" callback. The "options.php" file with the "options" function added.
- Maintenance: The contents of PHP files have been optimised; Code formatting and commenting improved.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | My Custom Functions |
Version | 4.49 |
Comparing to | |
See all releases |
Code changes from version 4.48 to 4.49
- inc/php/enqueue.php +0 -1
- inc/php/functional.php +8 -8
- inc/php/inline-js.php +4 -11
- inc/php/messages.php +2 -2
- inc/php/options.php +41 -0
- inc/php/tabs/settings.php +9 -6
- inc/php/upgrade.php +1 -1
- languages/my-custom-functions-de_DE.mo +0 -0
- languages/my-custom-functions-de_DE.po +10 -10
- languages/my-custom-functions-es_ES.mo +0 -0
- languages/my-custom-functions-es_ES.po +10 -10
- languages/my-custom-functions-fr_FR.mo +0 -0
- languages/my-custom-functions-fr_FR.po +10 -10
- languages/my-custom-functions-nl_NL.mo +0 -0
- languages/my-custom-functions-nl_NL.po +10 -10
- languages/my-custom-functions-ru_RU.mo +0 -0
- languages/my-custom-functions-ru_RU.po +10 -10
- languages/my-custom-functions-zh_TW.mo +0 -0
- languages/my-custom-functions-zh_TW.po +10 -10
- languages/my-custom-functions.pot +9 -9
- my-custom-functions.php +3 -2
- readme.txt +10 -4
inc/php/enqueue.php
CHANGED
@@ -82,6 +82,5 @@ function spacexchimp_p001_load_scripts_admin( $hook ) {
|
|
82 |
|
83 |
// Call the function that enqueue the CodeMirror library
|
84 |
spacexchimp_p001_load_scripts_codemirror();
|
85 |
-
|
86 |
}
|
87 |
add_action( 'admin_enqueue_scripts', $plugin['prefix'] . '_load_scripts_admin' );
|
82 |
|
83 |
// Call the function that enqueue the CodeMirror library
|
84 |
spacexchimp_p001_load_scripts_codemirror();
|
|
|
85 |
}
|
86 |
add_action( 'admin_enqueue_scripts', $plugin['prefix'] . '_load_scripts_admin' );
|
inc/php/functional.php
CHANGED
@@ -7,28 +7,27 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
7 |
|
8 |
/**
|
9 |
* Prepare the custom code
|
|
|
10 |
*/
|
11 |
function spacexchimp_p001_prepare() {
|
12 |
|
13 |
// Put value of plugin constants into an array for easier access
|
14 |
$plugin = spacexchimp_p001_plugin();
|
15 |
|
16 |
-
//
|
17 |
-
$options =
|
18 |
-
$data = !empty( $options['snippets'] ) ? $options['snippets'] : '';
|
19 |
-
$enable = !empty( $options['enable'] ) ? $options['enable'] : '';
|
20 |
|
21 |
// Prepare a variable for storing the processed data
|
22 |
$data_out = "";
|
23 |
|
24 |
// If data is not empty...
|
25 |
-
if ( ! empty( $
|
26 |
|
27 |
// If the custom code is enabled...
|
28 |
-
if ( $enable
|
29 |
|
30 |
// Prepare a variable for storing the processing data, and perform data processing
|
31 |
-
$data_tmp = $
|
32 |
$data_tmp = trim( $data_tmp ); // Cleaning
|
33 |
$data_tmp = ltrim( $data_tmp, '<?php' ); // Cleaning
|
34 |
$data_tmp = rtrim( $data_tmp, '?>' ); // Cleaning
|
@@ -43,6 +42,7 @@ function spacexchimp_p001_prepare() {
|
|
43 |
|
44 |
/**
|
45 |
* Preparation of the custom code: Check the custom code for duplicate names of functions
|
|
|
46 |
*/
|
47 |
function spacexchimp_p001_preparation_duplicates( $data ) {
|
48 |
|
@@ -68,7 +68,7 @@ function spacexchimp_p001_preparation_duplicates( $data ) {
|
|
68 |
$error_status = '0';
|
69 |
}
|
70 |
|
71 |
-
// Return
|
72 |
return $error_status;
|
73 |
}
|
74 |
|
7 |
|
8 |
/**
|
9 |
* Prepare the custom code
|
10 |
+
* @return string
|
11 |
*/
|
12 |
function spacexchimp_p001_prepare() {
|
13 |
|
14 |
// Put value of plugin constants into an array for easier access
|
15 |
$plugin = spacexchimp_p001_plugin();
|
16 |
|
17 |
+
// Put the value of the plugin options into an array for easier access
|
18 |
+
$options = spacexchimp_p001_options();
|
|
|
|
|
19 |
|
20 |
// Prepare a variable for storing the processed data
|
21 |
$data_out = "";
|
22 |
|
23 |
// If data is not empty...
|
24 |
+
if ( ! empty( $options['snippets'] ) ) {
|
25 |
|
26 |
// If the custom code is enabled...
|
27 |
+
if ( $options['enable'] === true ) {
|
28 |
|
29 |
// Prepare a variable for storing the processing data, and perform data processing
|
30 |
+
$data_tmp = $options['snippets'];
|
31 |
$data_tmp = trim( $data_tmp ); // Cleaning
|
32 |
$data_tmp = ltrim( $data_tmp, '<?php' ); // Cleaning
|
33 |
$data_tmp = rtrim( $data_tmp, '?>' ); // Cleaning
|
42 |
|
43 |
/**
|
44 |
* Preparation of the custom code: Check the custom code for duplicate names of functions
|
45 |
+
* @return string
|
46 |
*/
|
47 |
function spacexchimp_p001_preparation_duplicates( $data ) {
|
48 |
|
68 |
$error_status = '0';
|
69 |
}
|
70 |
|
71 |
+
// Return the processed data
|
72 |
return $error_status;
|
73 |
}
|
74 |
|
inc/php/inline-js.php
CHANGED
@@ -5,22 +5,15 @@
|
|
5 |
*/
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
-
//
|
9 |
-
$options =
|
10 |
-
|
11 |
-
// Make the "$options" array if the plugin options data in the database is not exist
|
12 |
-
if ( ! is_array( $options ) ) {
|
13 |
-
$options = array();
|
14 |
-
}
|
15 |
-
|
16 |
-
$hidden_scrollto = !empty( $options['hidden_scrollto'] ) ? $options['hidden_scrollto'] : '0';
|
17 |
|
18 |
?>
|
19 |
<script type="text/javascript">
|
20 |
jQuery(document).ready(function($) {
|
21 |
|
22 |
// Scroll to previouse position
|
23 |
-
var hidden_scrollto = <?php echo $hidden_scrollto; ?>;
|
24 |
$(document).scrollTop(hidden_scrollto);
|
25 |
|
26 |
// Update the value of the scroll position option
|
@@ -32,7 +25,7 @@ $hidden_scrollto = !empty( $options['hidden_scrollto'] ) ? $options['hidden_scro
|
|
32 |
<?php
|
33 |
|
34 |
// Update the plugin options data in the database
|
35 |
-
if ( $hidden_scrollto != '0' ) {
|
36 |
$options['hidden_scrollto'] = '0';
|
37 |
update_option( $plugin['settings'] . '_settings', $options );
|
38 |
}
|
5 |
*/
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
+
// Put the value of the plugin options into an array for easier access
|
9 |
+
$options = spacexchimp_p001_options();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
?>
|
12 |
<script type="text/javascript">
|
13 |
jQuery(document).ready(function($) {
|
14 |
|
15 |
// Scroll to previouse position
|
16 |
+
var hidden_scrollto = <?php echo $options['hidden_scrollto']; ?>;
|
17 |
$(document).scrollTop(hidden_scrollto);
|
18 |
|
19 |
// Update the value of the scroll position option
|
25 |
<?php
|
26 |
|
27 |
// Update the plugin options data in the database
|
28 |
+
if ( $options['hidden_scrollto'] != '0' ) {
|
29 |
$options['hidden_scrollto'] = '0';
|
30 |
update_option( $plugin['settings'] . '_settings', $options );
|
31 |
}
|
inc/php/messages.php
CHANGED
@@ -13,8 +13,8 @@ function spacexchimp_p001_message_hello() {
|
|
13 |
// Put value of plugin constants into an array for easier access
|
14 |
$plugin = spacexchimp_p001_plugin();
|
15 |
|
16 |
-
//
|
17 |
-
$options =
|
18 |
|
19 |
// Exit if options are already set in database
|
20 |
if ( ! empty( $options ) ) {
|
13 |
// Put value of plugin constants into an array for easier access
|
14 |
$plugin = spacexchimp_p001_plugin();
|
15 |
|
16 |
+
// Put the value of the plugin options into an array for easier access
|
17 |
+
$options = spacexchimp_p001_options();
|
18 |
|
19 |
// Exit if options are already set in database
|
20 |
if ( ! empty( $options ) ) {
|
inc/php/options.php
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Callback function that returns an array with the value of the plugin options
|
5 |
+
* @return array
|
6 |
+
*/
|
7 |
+
function spacexchimp_p001_options() {
|
8 |
+
|
9 |
+
// Put value of plugin constants into an array for easier access
|
10 |
+
$plugin = spacexchimp_p001_plugin();
|
11 |
+
|
12 |
+
// Retrieve options from database
|
13 |
+
$options = get_option( $plugin['settings'] . '_settings' );
|
14 |
+
|
15 |
+
// Make the "$options" array if the plugin options data in the database is not exist
|
16 |
+
if ( ! is_array( $options ) ) {
|
17 |
+
$options = array();
|
18 |
+
}
|
19 |
+
|
20 |
+
// Create an array with options
|
21 |
+
$array = $options;
|
22 |
+
|
23 |
+
// Set default value if option is empty
|
24 |
+
$list = array(
|
25 |
+
'enable' => '',
|
26 |
+
'hidden_scrollto' => '0',
|
27 |
+
'snippets' => '',
|
28 |
+
);
|
29 |
+
foreach ( $list as $name => $default ) {
|
30 |
+
$array[$name] = !empty( $options[$name] ) ? $options[$name] : $default;
|
31 |
+
}
|
32 |
+
|
33 |
+
// Sanitize data
|
34 |
+
|
35 |
+
|
36 |
+
// Modify data
|
37 |
+
$array['enable'] = ( $array['enable'] == 'on' ) ? true : false ;
|
38 |
+
|
39 |
+
// Return the processed data
|
40 |
+
return $array;
|
41 |
+
}
|
inc/php/tabs/settings.php
CHANGED
@@ -17,12 +17,15 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
17 |
<?php settings_fields( $plugin['settings'] . '_settings_group' ); ?>
|
18 |
|
19 |
<?php
|
20 |
-
//
|
21 |
-
$options =
|
22 |
|
23 |
-
//
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
26 |
?>
|
27 |
|
28 |
<div class="postbox">
|
@@ -44,7 +47,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
44 |
name="spacexchimp_p001_settings[snippets]"
|
45 |
id="spacexchimp_p001_settings[snippets]"
|
46 |
placeholder="<?php _e( 'Enter your PHP functions here', $plugin['text'] ); ?>"
|
47 |
-
><?php echo htmlentities( $snippets ); ?></textarea>
|
48 |
</div>
|
49 |
</div>
|
50 |
|
17 |
<?php settings_fields( $plugin['settings'] . '_settings_group' ); ?>
|
18 |
|
19 |
<?php
|
20 |
+
// Put the value of the plugin options into an array for easier access
|
21 |
+
$options = spacexchimp_p001_options();
|
22 |
|
23 |
+
// Declare variables
|
24 |
+
if ( $options['enable'] === true ) {
|
25 |
+
$checked = 'checked';
|
26 |
+
} else {
|
27 |
+
$checked = ''; // Empty value
|
28 |
+
}
|
29 |
?>
|
30 |
|
31 |
<div class="postbox">
|
47 |
name="spacexchimp_p001_settings[snippets]"
|
48 |
id="spacexchimp_p001_settings[snippets]"
|
49 |
placeholder="<?php _e( 'Enter your PHP functions here', $plugin['text'] ); ?>"
|
50 |
+
><?php echo htmlentities( $options['snippets'] ); ?></textarea>
|
51 |
</div>
|
52 |
</div>
|
53 |
|
inc/php/upgrade.php
CHANGED
@@ -48,7 +48,7 @@ function spacexchimp_p001_upgrade_4_7() {
|
|
48 |
$settings_new = is_array( $settings_current ) ? $settings_current : array();
|
49 |
$settings_new['snippets'] = $snippets_old;
|
50 |
$settings_new['enable'] = $enable_old;
|
51 |
-
unset($settings_new['anarcho_cfunctions-content']);
|
52 |
|
53 |
// Exit if the upgrade is not needed or already done
|
54 |
if ( empty( $settings_current ) ) return;
|
48 |
$settings_new = is_array( $settings_current ) ? $settings_current : array();
|
49 |
$settings_new['snippets'] = $snippets_old;
|
50 |
$settings_new['enable'] = $enable_old;
|
51 |
+
unset( $settings_new['anarcho_cfunctions-content'] );
|
52 |
|
53 |
// Exit if the upgrade is not needed or already done
|
54 |
if ( empty( $settings_current ) ) return;
|
languages/my-custom-functions-de_DE.mo
CHANGED
Binary file
|
languages/my-custom-functions-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -90,7 +90,7 @@ msgstr "Verwendung"
|
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Unterstützung"
|
96 |
|
@@ -118,16 +118,16 @@ msgstr "Hilfe"
|
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
120 |
|
121 |
-
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
124 |
|
125 |
-
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Spende mit PayPal"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Danke für Ihre Unterstützung!"
|
133 |
|
@@ -654,19 +654,19 @@ msgstr ""
|
|
654 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
655 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Functions (PHP code)"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "NOT SAVED!"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Enter your PHP functions here"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Save changes"
|
671 |
msgstr "Änderungen speichern"
|
672 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2021-03-09 01:18+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:18+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:68
|
94 |
msgid "Support"
|
95 |
msgstr "Unterstützung"
|
96 |
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:70
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:75
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Spende mit PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:77
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Danke für Ihre Unterstützung!"
|
133 |
|
654 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
655 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:33
|
658 |
msgid "Functions (PHP code)"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:35
|
662 |
msgid "NOT SAVED!"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:49
|
666 |
msgid "Enter your PHP functions here"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:63
|
670 |
msgid "Save changes"
|
671 |
msgstr "Änderungen speichern"
|
672 |
|
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: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -90,7 +90,7 @@ msgstr "Uso"
|
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "Preguntas ?"
|
92 |
|
93 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Soporte"
|
96 |
|
@@ -118,16 +118,16 @@ msgstr "Ayuda"
|
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
120 |
|
121 |
-
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
124 |
|
125 |
-
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Donar con PayPal"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "¡Gracias por tu apoyo!"
|
133 |
|
@@ -654,19 +654,19 @@ msgstr "Puede hacer su pregunta en %s esta página %s."
|
|
654 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
655 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Functions (PHP code)"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "NOT SAVED!"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Enter your PHP functions here"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Save changes"
|
671 |
msgstr "Guardar cambios"
|
672 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2021-03-09 01:18+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:18+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "Preguntas ?"
|
92 |
|
93 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:68
|
94 |
msgid "Support"
|
95 |
msgstr "Soporte"
|
96 |
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:70
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:75
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Donar con PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:77
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "¡Gracias por tu apoyo!"
|
133 |
|
654 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
655 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:33
|
658 |
msgid "Functions (PHP code)"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:35
|
662 |
msgid "NOT SAVED!"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:49
|
666 |
msgid "Enter your PHP functions here"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:63
|
670 |
msgid "Save changes"
|
671 |
msgstr "Guardar cambios"
|
672 |
|
languages/my-custom-functions-fr_FR.mo
CHANGED
Binary file
|
languages/my-custom-functions-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -90,7 +90,7 @@ msgstr "Utilisation"
|
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "FAQ."
|
92 |
|
93 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Soutien"
|
96 |
|
@@ -118,16 +118,16 @@ msgstr "Aide"
|
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
120 |
|
121 |
-
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
124 |
|
125 |
-
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Faire un don avec PayPal"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Merci pour votre soutien!"
|
133 |
|
@@ -656,19 +656,19 @@ msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
|
656 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: inc/php/tabs/settings.php:
|
660 |
msgid "Functions (PHP code)"
|
661 |
msgstr "Fonctions (code PHP)"
|
662 |
|
663 |
-
#: inc/php/tabs/settings.php:
|
664 |
msgid "NOT SAVED!"
|
665 |
msgstr "N'EST PAS SAUVÉ!"
|
666 |
|
667 |
-
#: inc/php/tabs/settings.php:
|
668 |
msgid "Enter your PHP functions here"
|
669 |
msgstr "Entrez votre fonction PHP ici"
|
670 |
|
671 |
-
#: inc/php/tabs/settings.php:
|
672 |
msgid "Save changes"
|
673 |
msgstr "Enregistrer les modifications"
|
674 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2021-03-09 01:18+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:18+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "FAQ."
|
92 |
|
93 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:68
|
94 |
msgid "Support"
|
95 |
msgstr "Soutien"
|
96 |
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:70
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:75
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Faire un don avec PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:77
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Merci pour votre soutien!"
|
133 |
|
656 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: inc/php/tabs/settings.php:33
|
660 |
msgid "Functions (PHP code)"
|
661 |
msgstr "Fonctions (code PHP)"
|
662 |
|
663 |
+
#: inc/php/tabs/settings.php:35
|
664 |
msgid "NOT SAVED!"
|
665 |
msgstr "N'EST PAS SAUVÉ!"
|
666 |
|
667 |
+
#: inc/php/tabs/settings.php:49
|
668 |
msgid "Enter your PHP functions here"
|
669 |
msgstr "Entrez votre fonction PHP ici"
|
670 |
|
671 |
+
#: inc/php/tabs/settings.php:63
|
672 |
msgid "Save changes"
|
673 |
msgstr "Enregistrer les modifications"
|
674 |
|
languages/my-custom-functions-nl_NL.mo
CHANGED
Binary file
|
languages/my-custom-functions-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -90,7 +90,7 @@ msgstr "Gebruik"
|
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Ondersteuning"
|
96 |
|
@@ -118,16 +118,16 @@ msgstr "Helpen"
|
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
120 |
|
121 |
-
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Doneer via PayPal"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Bedankt voor uw steun!"
|
133 |
|
@@ -656,19 +656,19 @@ msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
|
656 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
657 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
658 |
|
659 |
-
#: inc/php/tabs/settings.php:
|
660 |
msgid "Functions (PHP code)"
|
661 |
msgstr "Functies (PHP code)"
|
662 |
|
663 |
-
#: inc/php/tabs/settings.php:
|
664 |
msgid "NOT SAVED!"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: inc/php/tabs/settings.php:
|
668 |
msgid "Enter your PHP functions here"
|
669 |
msgstr "Voer hier uw PHP-functies in"
|
670 |
|
671 |
-
#: inc/php/tabs/settings.php:
|
672 |
msgid "Save changes"
|
673 |
msgstr "Wijzigingen opslaan"
|
674 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2021-03-09 01:18+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:18+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:68
|
94 |
msgid "Support"
|
95 |
msgstr "Ondersteuning"
|
96 |
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:70
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:75
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Doneer via PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:77
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Bedankt voor uw steun!"
|
133 |
|
656 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
657 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
658 |
|
659 |
+
#: inc/php/tabs/settings.php:33
|
660 |
msgid "Functions (PHP code)"
|
661 |
msgstr "Functies (PHP code)"
|
662 |
|
663 |
+
#: inc/php/tabs/settings.php:35
|
664 |
msgid "NOT SAVED!"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/php/tabs/settings.php:49
|
668 |
msgid "Enter your PHP functions here"
|
669 |
msgstr "Voer hier uw PHP-functies in"
|
670 |
|
671 |
+
#: inc/php/tabs/settings.php:63
|
672 |
msgid "Save changes"
|
673 |
msgstr "Wijzigingen opslaan"
|
674 |
|
languages/my-custom-functions-ru_RU.mo
CHANGED
Binary file
|
languages/my-custom-functions-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -90,7 +90,7 @@ msgstr "Применение"
|
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Поддержка"
|
96 |
|
@@ -118,16 +118,16 @@ msgstr "Помощь"
|
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
120 |
|
121 |
-
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
124 |
|
125 |
-
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Пожертвовать через PayPal"
|
129 |
|
130 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Спасибо за вашу поддержку!"
|
133 |
|
@@ -656,19 +656,19 @@ msgstr "Вы можете задать ваш вопрос на %s этой ст
|
|
656 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
657 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
658 |
|
659 |
-
#: inc/php/tabs/settings.php:
|
660 |
msgid "Functions (PHP code)"
|
661 |
msgstr "Функции (PHP код)"
|
662 |
|
663 |
-
#: inc/php/tabs/settings.php:
|
664 |
msgid "NOT SAVED!"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: inc/php/tabs/settings.php:
|
668 |
msgid "Enter your PHP functions here"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: inc/php/tabs/settings.php:
|
672 |
msgid "Save changes"
|
673 |
msgstr "Сохранить изменения"
|
674 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2021-03-09 01:18+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:18+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:68
|
94 |
msgid "Support"
|
95 |
msgstr "Поддержка"
|
96 |
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:70
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:75
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr "Пожертвовать через PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:77
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "Спасибо за вашу поддержку!"
|
133 |
|
656 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
657 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
658 |
|
659 |
+
#: inc/php/tabs/settings.php:33
|
660 |
msgid "Functions (PHP code)"
|
661 |
msgstr "Функции (PHP код)"
|
662 |
|
663 |
+
#: inc/php/tabs/settings.php:35
|
664 |
msgid "NOT SAVED!"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/php/tabs/settings.php:49
|
668 |
msgid "Enter your PHP functions here"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: inc/php/tabs/settings.php:63
|
672 |
msgid "Save changes"
|
673 |
msgstr "Сохранить изменения"
|
674 |
|
languages/my-custom-functions-zh_TW.mo
CHANGED
Binary file
|
languages/my-custom-functions-zh_TW.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
-
"PO-Revision-Date: 2021-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
@@ -90,7 +90,7 @@ msgstr ""
|
|
90 |
msgid "F.A.Q."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
@@ -118,16 +118,16 @@ msgstr "幫助"
|
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "謝謝您的贊助!"
|
133 |
|
@@ -654,19 +654,19 @@ msgstr ""
|
|
654 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Functions (PHP code)"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "NOT SAVED!"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Enter your PHP functions here"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Save changes"
|
671 |
msgstr "儲存變更"
|
672 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2021-03-09 01:18+0300\n"
|
7 |
+
"PO-Revision-Date: 2021-03-09 01:18+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
90 |
msgid "F.A.Q."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:68
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
118 |
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:70
|
122 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:75
|
126 |
#: inc/php/tabs/support.php:25
|
127 |
msgid "Donate with PayPal"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:77
|
131 |
msgid "Thanks for your support!"
|
132 |
msgstr "謝謝您的贊助!"
|
133 |
|
654 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:33
|
658 |
msgid "Functions (PHP code)"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:35
|
662 |
msgid "NOT SAVED!"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:49
|
666 |
msgid "Enter your PHP functions here"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:63
|
670 |
msgid "Save changes"
|
671 |
msgstr "儲存變更"
|
672 |
|
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: 2021-
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -88,7 +88,7 @@ msgstr ""
|
|
88 |
msgid "F.A.Q."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:
|
92 |
msgid "Support"
|
93 |
msgstr ""
|
94 |
|
@@ -116,16 +116,16 @@ msgstr ""
|
|
116 |
msgid "If you have a question, please read the information in the FAQ section."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:
|
120 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:
|
124 |
#: inc/php/tabs/support.php:25
|
125 |
msgid "Donate with PayPal"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:
|
129 |
msgid "Thanks for your support!"
|
130 |
msgstr ""
|
131 |
|
@@ -652,19 +652,19 @@ msgstr ""
|
|
652 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: inc/php/tabs/settings.php:
|
656 |
msgid "Functions (PHP code)"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: inc/php/tabs/settings.php:
|
660 |
msgid "NOT SAVED!"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: inc/php/tabs/settings.php:
|
664 |
msgid "Enter your PHP functions here"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: inc/php/tabs/settings.php:
|
668 |
msgid "Save changes"
|
669 |
msgstr ""
|
670 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2021-03-09 01:17+0300\n"
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
88 |
msgid "F.A.Q."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:68
|
92 |
msgid "Support"
|
93 |
msgstr ""
|
94 |
|
116 |
msgid "If you have a question, please read the information in the FAQ section."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: inc/php/sidebar.php:58 inc/php/tabs/settings.php:70
|
120 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc/php/sidebar.php:63 inc/php/tabs/settings.php:75
|
124 |
#: inc/php/tabs/support.php:25
|
125 |
msgid "Donate with PayPal"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/php/sidebar.php:65 inc/php/tabs/settings.php:77
|
129 |
msgid "Thanks for your support!"
|
130 |
msgstr ""
|
131 |
|
652 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: inc/php/tabs/settings.php:33
|
656 |
msgid "Functions (PHP code)"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: inc/php/tabs/settings.php:35
|
660 |
msgid "NOT SAVED!"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: inc/php/tabs/settings.php:49
|
664 |
msgid "Enter your PHP functions here"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/php/tabs/settings.php:63
|
668 |
msgid "Save changes"
|
669 |
msgstr ""
|
670 |
|
my-custom-functions.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
@@ -68,7 +68,7 @@ spacexchimp_p001_define_constants( 'PREFIX', 'spacexchimp_p001' );
|
|
68 |
spacexchimp_p001_define_constants( 'SETTINGS', 'spacexchimp_p001' );
|
69 |
|
70 |
/**
|
71 |
-
* A useful function that returns an array with the contents of plugin constants
|
72 |
*/
|
73 |
function spacexchimp_p001_plugin() {
|
74 |
$array = array(
|
@@ -96,6 +96,7 @@ $plugin = spacexchimp_p001_plugin();
|
|
96 |
* Load the plugin modules
|
97 |
*/
|
98 |
require_once( $plugin['path'] . 'inc/php/core.php' );
|
|
|
99 |
require_once( $plugin['path'] . 'inc/php/upgrade.php' );
|
100 |
require_once( $plugin['path'] . 'inc/php/versioning.php' );
|
101 |
require_once( $plugin['path'] . 'inc/php/enqueue.php' );
|
5 |
* Description: Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.49
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
68 |
spacexchimp_p001_define_constants( 'SETTINGS', 'spacexchimp_p001' );
|
69 |
|
70 |
/**
|
71 |
+
* A useful function that returns an array with the contents of the plugin constants
|
72 |
*/
|
73 |
function spacexchimp_p001_plugin() {
|
74 |
$array = array(
|
96 |
* Load the plugin modules
|
97 |
*/
|
98 |
require_once( $plugin['path'] . 'inc/php/core.php' );
|
99 |
+
require_once( $plugin['path'] . 'inc/php/options.php' );
|
100 |
require_once( $plugin['path'] . 'inc/php/upgrade.php' );
|
101 |
require_once( $plugin['path'] . 'inc/php/versioning.php' );
|
102 |
require_once( $plugin['path'] . 'inc/php/enqueue.php' );
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: Arthur Gareginyan
|
|
3 |
Tags: inject code, inject function, inject snippet, inject php, insert code, insert function, insert snippet, insert php, execute code, execute function, execute snippet, execute php, inject custom code, inject custom function, inject custom snippet, inject custom php, insert custom code, insert custom function, insert custom snippet, insert custom php, execute custom code, execute custom function, execute custom snippet, execute custom php, code, function, snippet, php, functionality plugin
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 4.9
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.
|
9 |
License: GPL3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -239,8 +239,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
239 |
|
240 |
**Credits**
|
241 |
|
242 |
-
* The icon of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
243 |
-
* The banner of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
|
|
244 |
* [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
|
245 |
* [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
|
246 |
* [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
|
@@ -256,6 +257,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
256 |
|
257 |
== Changelog ==
|
258 |
|
|
|
|
|
|
|
|
|
|
|
259 |
= 4.48 - Jan 1, 2021 =
|
260 |
* Maintenance: The copyright date updated to support the 2021 year.
|
261 |
|
3 |
Tags: inject code, inject function, inject snippet, inject php, insert code, insert function, insert snippet, insert php, execute code, execute function, execute snippet, execute php, inject custom code, inject custom function, inject custom snippet, inject custom php, insert custom code, insert custom function, insert custom snippet, insert custom php, execute custom code, execute custom function, execute custom snippet, execute custom php, code, function, snippet, php, functionality plugin
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 4.9
|
6 |
+
Tested up to: 5.7
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.49
|
9 |
License: GPL3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
239 |
|
240 |
**Credits**
|
241 |
|
242 |
+
* The icon of this plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
243 |
+
* The banner of this plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
|
244 |
+
* Unless otherwise stated, all images are created by the [Space X-Chimp](https://www.spacexchimp.com) team and are copyrighted. (C) All rights reserved.
|
245 |
* [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
|
246 |
* [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
|
247 |
* [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
|
257 |
|
258 |
== Changelog ==
|
259 |
|
260 |
+
= 4.49 - Mar 8, 2021 =
|
261 |
+
* Maintenance: Ensure compatibility with upcoming WordPress 5.7.
|
262 |
+
* Maintenance: Processing of options has been improved. Direct retrieving of options from the database is replaced by the "_options" callback. The "options.php" file with the "_options" function added.
|
263 |
+
* Maintenance: The contents of PHP files have been optimised; Code formatting and commenting improved.
|
264 |
+
|
265 |
= 4.48 - Jan 1, 2021 =
|
266 |
* Maintenance: The copyright date updated to support the 2021 year.
|
267 |
|