Version Description
- 02/04/2018
- Feature: permalink slug for custom codes
- Fix: set the footer scripts to a higher priority
- Update the french translation
- Fix: allow admin stylesheets from ACF plugin, otherwise it breaks the post.php page
- Tweak: for post.php and post-new.php page show code's title in the page title
Download this release
Release Info
Developer | diana_burduja |
Plugin | Simple Custom CSS and JS |
Version | 3.14 |
Comparing to | |
See all releases |
Code changes from version 3.13 to 3.14
- assets/ccj_admin-url_rules.js +10 -1
- assets/ccj_admin.js +104 -0
- custom-css-js.php +6 -4
- includes/admin-config.php +31 -15
- includes/admin-screens.php +103 -3
- languages/custom-css-js-fr_FR.mo +0 -0
- languages/custom-css-js-fr_FR.po +489 -387
- languages/custom-css-js-pl_PL.mo +0 -0
- languages/custom-css-js-pl_PL.po +455 -344
- languages/custom-css-js-tr_TR.mo +0 -0
- languages/custom-css-js-tr_TR.po +185 -126
- languages/custom-css-js.pot +142 -94
- readme.txt +9 -1
assets/ccj_admin-url_rules.js
CHANGED
@@ -74,9 +74,18 @@ if (!String.prototype.capitalize) {
|
|
74 |
field = ('' === field)? [] : JSON.parse(field);
|
75 |
if (!(field instanceof Array) || field.length > 25)
|
76 |
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
(name in elist_index)? elist_index[name]++ : elist_index[name] = 0;
|
79 |
-
value['index'] = elist_index[name] + 1;
|
|
|
80 |
field.push(value);
|
81 |
|
82 |
$('#wplnst-scan-' + name).val(JSON.stringify(field));
|
74 |
field = ('' === field)? [] : JSON.parse(field);
|
75 |
if (!(field instanceof Array) || field.length > 25)
|
76 |
return;
|
77 |
+
|
78 |
+
var max_index = 1;
|
79 |
+
$('.wplnst-elist-close-link').each(function() {
|
80 |
+
if ( $(this).data('index') > max_index ) {
|
81 |
+
max_index = $(this).data('index');
|
82 |
+
}
|
83 |
+
});
|
84 |
+
|
85 |
|
86 |
(name in elist_index)? elist_index[name]++ : elist_index[name] = 0;
|
87 |
+
// value['index'] = elist_index[name] + 1;
|
88 |
+
value['index'] = max_index + 1;
|
89 |
field.push(value);
|
90 |
|
91 |
$('#wplnst-scan-' + name).val(JSON.stringify(field));
|
assets/ccj_admin.js
CHANGED
@@ -49,6 +49,21 @@ jQuery(document).ready( function($) {
|
|
49 |
|
50 |
}
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
// Make the inactive rows opaque
|
53 |
if ( $('.dashicons-star-empty.ccj_row').length > 0 ) {
|
54 |
$('.dashicons-star-empty.ccj_row').each(function(){
|
@@ -104,5 +119,94 @@ jQuery(document).ready( function($) {
|
|
104 |
}
|
105 |
}
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
});
|
108 |
|
49 |
|
50 |
}
|
51 |
|
52 |
+
|
53 |
+
// For post.php or post-new.php pages show the code's title in the page title
|
54 |
+
if ( $('#titlediv #title').length > 0 ) {
|
55 |
+
var new_title = $("input[name=custom_code_language]").val().toUpperCase() + ' - ' + $('#titlediv #title').val();
|
56 |
+
if( $('#titlediv #title').val().length > 0 ) {
|
57 |
+
$(document).prop('title', new_title );
|
58 |
+
}
|
59 |
+
$('#titlediv #title').change(function() {
|
60 |
+
if ( $(this).val().length > 0 ) {
|
61 |
+
$(document).prop('title', new_title);
|
62 |
+
}
|
63 |
+
});
|
64 |
+
}
|
65 |
+
|
66 |
+
|
67 |
// Make the inactive rows opaque
|
68 |
if ( $('.dashicons-star-empty.ccj_row').length > 0 ) {
|
69 |
$('.dashicons-star-empty.ccj_row').each(function(){
|
119 |
}
|
120 |
}
|
121 |
|
122 |
+
|
123 |
+
// Permalink slug
|
124 |
+
$( '#titlediv' ).on( 'click', '.ccj-edit-slug', function() {
|
125 |
+
var i,
|
126 |
+
$el, revert_e,
|
127 |
+
c = 0,
|
128 |
+
slug_value = $('#editable-post-name').html(),
|
129 |
+
real_slug = $('#post_name'),
|
130 |
+
revert_slug = real_slug.val(),
|
131 |
+
permalink = $( '#sample-permalink' ),
|
132 |
+
permalinkOrig = permalink.html(),
|
133 |
+
permalinkInner = $( '#sample-permalink a' ).html(),
|
134 |
+
permalinkHref = $('#sample-permalink a').attr('href'),
|
135 |
+
buttons = $('#ccj-edit-slug-buttons'),
|
136 |
+
buttonsOrig = buttons.html(),
|
137 |
+
full = $('#editable-post-name-full');
|
138 |
+
|
139 |
+
// Deal with Twemoji in the post-name.
|
140 |
+
full.find( 'img' ).replaceWith( function() { return this.alt; } );
|
141 |
+
full = full.html();
|
142 |
+
|
143 |
+
permalink.html( permalinkInner );
|
144 |
+
|
145 |
+
// Save current content to revert to when cancelling.
|
146 |
+
$el = $( '#editable-post-name' );
|
147 |
+
revert_e = $el.html();
|
148 |
+
|
149 |
+
buttons.html( '<button type="button" class="save button button-small">' + postL10n.ok + '</button> <button type="button" class="cancel button- link">' + postL10n.cancel + '</button>' );
|
150 |
+
|
151 |
+
|
152 |
+
// Save permalink changes.
|
153 |
+
buttons.children( '.save' ).click( function() {
|
154 |
+
var new_slug = $el.children( 'input' ).val();
|
155 |
+
|
156 |
+
if ( new_slug == $('#editable-post-name-full').text() ) {
|
157 |
+
buttons.children('.cancel').click();
|
158 |
+
return;
|
159 |
+
}
|
160 |
+
|
161 |
+
$.post(
|
162 |
+
ajaxurl,
|
163 |
+
{
|
164 |
+
action: 'ccj_permalink',
|
165 |
+
code_id: $('#post_ID').val(),
|
166 |
+
new_slug: new_slug,
|
167 |
+
permalink: permalinkHref,
|
168 |
+
ccj_permalink_nonce: $('#ccj-permalink-nonce').val()
|
169 |
+
},
|
170 |
+
function(data) {
|
171 |
+
var box = $('#edit-slug-box');
|
172 |
+
box.html(data);
|
173 |
+
if (box.hasClass('hidden')) {
|
174 |
+
box.fadeIn('fast', function () {
|
175 |
+
box.removeClass('hidden');
|
176 |
+
});
|
177 |
+
}
|
178 |
+
}
|
179 |
+
);
|
180 |
+
});
|
181 |
+
|
182 |
+
// Cancel editing of permalink.
|
183 |
+
buttons.children( '.cancel' ).click( function() {
|
184 |
+
$('#view-post-btn').show();
|
185 |
+
$el.html(revert_e);
|
186 |
+
buttons.html(buttonsOrig);
|
187 |
+
permalink.html(permalinkOrig);
|
188 |
+
real_slug.val(revert_slug);
|
189 |
+
$( '.ccj-edit-slug' ).focus();
|
190 |
+
});
|
191 |
+
|
192 |
+
$el.html( '<input type="text" name="new_slug" id="new-post-slug" value="' + slug_value + '" autocomplete="off" />' ).children( 'input' ).keydown( function( e ) {
|
193 |
+
var key = e.which;
|
194 |
+
// On [enter], just save the new slug, don't save the post.
|
195 |
+
if ( 13 === key ) {
|
196 |
+
e.preventDefault();
|
197 |
+
buttons.children( '.save' ).click();
|
198 |
+
}
|
199 |
+
// On [esc] cancel the editing.
|
200 |
+
if ( 27 === key ) {
|
201 |
+
buttons.children( '.cancel' ).click();
|
202 |
+
}
|
203 |
+
} ).keyup( function() {
|
204 |
+
real_slug.val( this.value );
|
205 |
+
}).focus();
|
206 |
+
|
207 |
+
|
208 |
+
});
|
209 |
+
|
210 |
+
|
211 |
});
|
212 |
|
custom-css-js.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Simple Custom CSS and JS
|
4 |
* Plugin URI: https://wordpress.org/plugins/custom-css-js/
|
5 |
* Description: Easily add Custom CSS or JS to your website with an awesome editor.
|
6 |
-
* Version: 3.
|
7 |
* Author: Diana Burduja
|
8 |
* Author URI: https://www.silkypress.com/
|
9 |
* License: GPL2
|
@@ -12,7 +12,7 @@
|
|
12 |
* Domain Path: /languages/
|
13 |
*
|
14 |
* WC requires at least: 2.3.0
|
15 |
-
* WC tested up to: 3.
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -107,7 +107,9 @@ final class CustomCSSandJS {
|
|
107 |
$action .= 'footer';
|
108 |
}
|
109 |
|
110 |
-
|
|
|
|
|
111 |
}
|
112 |
}
|
113 |
|
@@ -197,7 +199,7 @@ final class CustomCSSandJS {
|
|
197 |
function set_constants() {
|
198 |
$dir = wp_upload_dir();
|
199 |
$constants = array(
|
200 |
-
'CCJ_VERSION' => '3.
|
201 |
'CCJ_UPLOAD_DIR' => $dir['basedir'] . '/custom-css-js',
|
202 |
'CCJ_UPLOAD_URL' => $dir['baseurl'] . '/custom-css-js',
|
203 |
'CCJ_PLUGIN_FILE' => __FILE__,
|
3 |
* Plugin Name: Simple Custom CSS and JS
|
4 |
* Plugin URI: https://wordpress.org/plugins/custom-css-js/
|
5 |
* Description: Easily add Custom CSS or JS to your website with an awesome editor.
|
6 |
+
* Version: 3.14
|
7 |
* Author: Diana Burduja
|
8 |
* Author URI: https://www.silkypress.com/
|
9 |
* License: GPL2
|
12 |
* Domain Path: /languages/
|
13 |
*
|
14 |
* WC requires at least: 2.3.0
|
15 |
+
* WC tested up to: 3.3.0
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) {
|
107 |
$action .= 'footer';
|
108 |
}
|
109 |
|
110 |
+
$priority = ( $action == 'wp_footer' ) ? 40 : 10;
|
111 |
+
|
112 |
+
add_action( $action, array( $this, 'print_' . $_key ), $priority );
|
113 |
}
|
114 |
}
|
115 |
|
199 |
function set_constants() {
|
200 |
$dir = wp_upload_dir();
|
201 |
$constants = array(
|
202 |
+
'CCJ_VERSION' => '3.14',
|
203 |
'CCJ_UPLOAD_DIR' => $dir['basedir'] . '/custom-css-js',
|
204 |
'CCJ_UPLOAD_URL' => $dir['baseurl'] . '/custom-css-js',
|
205 |
'CCJ_PLUGIN_FILE' => __FILE__,
|
includes/admin-config.php
CHANGED
@@ -43,9 +43,9 @@ class CustomCSSandJS_AdminConfig {
|
|
43 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
44 |
|
45 |
|
46 |
-
add_action( 'ccj_settings_form', array( $this, '
|
47 |
-
add_filter( 'ccj_settings_default', array( $this, '
|
48 |
-
add_filter( 'ccj_settings_save', array( $this, '
|
49 |
}
|
50 |
|
51 |
|
@@ -145,50 +145,66 @@ class CustomCSSandJS_AdminConfig {
|
|
145 |
<?php
|
146 |
}
|
147 |
|
|
|
|
|
148 |
/**
|
149 |
-
* Add the
|
150 |
*/
|
151 |
-
function
|
152 |
-
return array_merge( $defaults, array(
|
|
|
|
|
|
|
153 |
}
|
154 |
|
155 |
|
156 |
/**
|
157 |
-
* Add the
|
158 |
*/
|
159 |
-
function
|
160 |
$default['htmlentities'] = false;
|
161 |
$htmlentities = isset($_POST['ccj_htmlentities']) ? true : false;
|
|
|
162 |
|
163 |
-
return array_merge( $data, array(
|
|
|
|
|
|
|
164 |
}
|
165 |
|
166 |
|
167 |
|
168 |
/**
|
169 |
-
*
|
170 |
*/
|
171 |
-
function
|
172 |
|
173 |
// Get the setting
|
174 |
$settings = get_option('ccj_settings');
|
175 |
$htmlentities = (isset($settings['ccj_htmlentities']) && $settings['ccj_htmlentities']) ? true : false;
|
|
|
176 |
|
177 |
-
|
178 |
-
$title = __('If you want to use an HTML entity in your code (for example '. htmlentities('> or "').'), but the editor keeps on changing them to its equivalent character (> and " for the previous example), then you might want to enable this option.', 'custom-css-js');
|
179 |
$help = '<span class="dashicons dashicons-editor-help" rel="tipsy" title="'.$title.'"></span>';
|
180 |
|
|
|
|
|
|
|
181 |
?>
|
182 |
<tr>
|
183 |
-
<th scope="row"><label for="ccj_htmlentities"><?php _e('Keep the HTML entities, don\'t convert to its character', 'custom-css-js') ?> <?php echo $help; ?></label></th>
|
184 |
<td><input type="checkbox" name="ccj_htmlentities" id = "ccj_htmlentities" value="1" <?php checked($htmlentities, true); ?> />
|
185 |
</td>
|
186 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
187 |
<?php
|
188 |
}
|
189 |
|
190 |
|
191 |
-
|
192 |
}
|
193 |
|
194 |
return new CustomCSSandJS_AdminConfig();
|
43 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
44 |
|
45 |
|
46 |
+
add_action( 'ccj_settings_form', array( $this, 'general_extra_form' ), 11 );
|
47 |
+
add_filter( 'ccj_settings_default', array( $this, 'general_extra_default' ) );
|
48 |
+
add_filter( 'ccj_settings_save', array( $this, 'general_extra_save' ) );
|
49 |
}
|
50 |
|
51 |
|
145 |
<?php
|
146 |
}
|
147 |
|
148 |
+
|
149 |
+
|
150 |
/**
|
151 |
+
* Add the defaults for the `General Settings` form
|
152 |
*/
|
153 |
+
function general_extra_default( $defaults ) {
|
154 |
+
return array_merge( $defaults, array(
|
155 |
+
'ccj_htmlentities' => false,
|
156 |
+
'ccj_htmlentities2' => false,
|
157 |
+
) );
|
158 |
}
|
159 |
|
160 |
|
161 |
/**
|
162 |
+
* Add the `General Settings` form values to the $_POST for the Settings page
|
163 |
*/
|
164 |
+
function general_extra_save( $data ) {
|
165 |
$default['htmlentities'] = false;
|
166 |
$htmlentities = isset($_POST['ccj_htmlentities']) ? true : false;
|
167 |
+
$htmlentities2 = isset($_POST['ccj_htmlentities2']) ? true : false;
|
168 |
|
169 |
+
return array_merge( $data, array(
|
170 |
+
'ccj_htmlentities' => $htmlentities,
|
171 |
+
'ccj_htmlentities2' => $htmlentities2,
|
172 |
+
) );
|
173 |
}
|
174 |
|
175 |
|
176 |
|
177 |
/**
|
178 |
+
* Extra fields for the `General Settings` Form
|
179 |
*/
|
180 |
+
function general_extra_form() {
|
181 |
|
182 |
// Get the setting
|
183 |
$settings = get_option('ccj_settings');
|
184 |
$htmlentities = (isset($settings['ccj_htmlentities']) && $settings['ccj_htmlentities']) ? true : false;
|
185 |
+
$htmlentities2 = (isset($settings['ccj_htmlentities2']) && $settings['ccj_htmlentities2']) ? true : false;
|
186 |
|
187 |
+
$title = __('If you want to use an HTML entity in your code (for example '. htmlentities('> or "').'), but the editor keeps on changing them to its equivalent character (> and " for the previous example), then you might want to enable this option.', 'custom-css-js-pro');
|
|
|
188 |
$help = '<span class="dashicons dashicons-editor-help" rel="tipsy" title="'.$title.'"></span>';
|
189 |
|
190 |
+
$title2 = __('If you use HTML tags in your code (for example '.htmlentities('<input> or <textarea>').') and you notice that they dissapear and the editor looks weird, then you need to enable this option.', 'custom-css-js-pro');
|
191 |
+
$help2 = '<span class="dashicons dashicons-editor-help" rel="tipsy" title="'.$title2.'"></span>';
|
192 |
+
|
193 |
?>
|
194 |
<tr>
|
195 |
+
<th scope="row"><label for="ccj_htmlentities"><?php _e('Keep the HTML entities, don\'t convert to its character', 'custom-css-js-pro') ?> <?php echo $help; ?></label></th>
|
196 |
<td><input type="checkbox" name="ccj_htmlentities" id = "ccj_htmlentities" value="1" <?php checked($htmlentities, true); ?> />
|
197 |
</td>
|
198 |
</tr>
|
199 |
+
<tr>
|
200 |
+
<th scope="row"><label for="ccj_htmlentities2"><?php _e('Encode the HTML entities', 'custom-css-js-pro') ?> <?php echo $help2; ?></label></th>
|
201 |
+
<td><input type="checkbox" name="ccj_htmlentities2" id = "ccj_htmlentities2" value="1" <?php checked($htmlentities2, true); ?> />
|
202 |
+
</td>
|
203 |
+
</tr>
|
204 |
<?php
|
205 |
}
|
206 |
|
207 |
|
|
|
208 |
}
|
209 |
|
210 |
return new CustomCSSandJS_AdminConfig();
|
includes/admin-screens.php
CHANGED
@@ -63,8 +63,11 @@ class CustomCSSandJS_Admin {
|
|
63 |
'untrashed_post' => 'trash_post',
|
64 |
'wp_loaded' => 'compatibility_shortcoder',
|
65 |
'wp_ajax_ccj_active_code' => 'wp_ajax_ccj_active_code',
|
|
|
66 |
'post_submitbox_start' => 'post_submitbox_start',
|
67 |
'restrict_manage_posts' => 'restrict_manage_posts',
|
|
|
|
|
68 |
);
|
69 |
foreach( $actions as $_key => $_value ) {
|
70 |
add_action( $_key, array( $this, $_value ) );
|
@@ -150,7 +153,10 @@ class CustomCSSandJS_Admin {
|
|
150 |
foreach($wp_scripts->registered as $_key => $_value) {
|
151 |
if (!isset($_value->src)) continue;
|
152 |
|
153 |
-
if (strstr($_value->src, 'wp-content/plugins') !== false
|
|
|
|
|
|
|
154 |
unset($wp_scripts->registered[$_key]);
|
155 |
}
|
156 |
}
|
@@ -300,7 +306,7 @@ class CustomCSSandJS_Admin {
|
|
300 |
}
|
301 |
|
302 |
if ( version_compare( $wp_version, '4.6', '>=' ) ) {
|
303 |
-
$m_time = get_the_modified_time( '
|
304 |
} else {
|
305 |
$m_time = get_the_modified_time( 'G', false, $post_id );
|
306 |
}
|
@@ -310,7 +316,7 @@ class CustomCSSandJS_Admin {
|
|
310 |
if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
|
311 |
$h_time = sprintf( __( '%s ago' ), human_time_diff( $m_time ) );
|
312 |
} else {
|
313 |
-
$h_time = mysql2date(
|
314 |
}
|
315 |
|
316 |
echo $h_time;
|
@@ -560,6 +566,8 @@ class CustomCSSandJS_Admin {
|
|
560 |
* Add the codemirror editor in the `post` screen
|
561 |
*/
|
562 |
public function codemirror_editor( $post ) {
|
|
|
|
|
563 |
$current_screen = get_current_screen();
|
564 |
|
565 |
if ( $current_screen->post_type != 'custom-css-js' ) {
|
@@ -597,6 +605,10 @@ class CustomCSSandJS_Admin {
|
|
597 |
}
|
598 |
}
|
599 |
|
|
|
|
|
|
|
|
|
600 |
switch ( $language ) {
|
601 |
case 'js' :
|
602 |
if ( $new_post ) {
|
@@ -1047,6 +1059,12 @@ End of comment */ ', 'custom-css-js') . PHP_EOL . PHP_EOL;
|
|
1047 |
$file_name = $post_id . '.' . $options['language'];
|
1048 |
$file_content = $before . stripslashes($_POST['content']) . $after;
|
1049 |
@file_put_contents( CCJ_UPLOAD_DIR . '/' . $file_name , $file_content );
|
|
|
|
|
|
|
|
|
|
|
|
|
1050 |
}
|
1051 |
|
1052 |
|
@@ -1282,7 +1300,89 @@ End of comment */ ', 'custom-css-js') . PHP_EOL . PHP_EOL;
|
|
1282 |
}
|
1283 |
|
1284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1286 |
|
1287 |
}
|
1288 |
|
63 |
'untrashed_post' => 'trash_post',
|
64 |
'wp_loaded' => 'compatibility_shortcoder',
|
65 |
'wp_ajax_ccj_active_code' => 'wp_ajax_ccj_active_code',
|
66 |
+
'wp_ajax_ccj_permalink' => 'wp_ajax_ccj_permalink',
|
67 |
'post_submitbox_start' => 'post_submitbox_start',
|
68 |
'restrict_manage_posts' => 'restrict_manage_posts',
|
69 |
+
'edit_form_before_permalink' => 'edit_form_before_permalink',
|
70 |
+
'before_delete_post' => 'before_delete_post',
|
71 |
);
|
72 |
foreach( $actions as $_key => $_value ) {
|
73 |
add_action( $_key, array( $this, $_value ) );
|
153 |
foreach($wp_scripts->registered as $_key => $_value) {
|
154 |
if (!isset($_value->src)) continue;
|
155 |
|
156 |
+
if (strstr($_value->src, 'wp-content/plugins') !== false
|
157 |
+
&& strstr($_value->src, 'plugins/custom-css-js/assets') === false
|
158 |
+
&& strstr($_value->src, 'plugins/advanced-custom-fields/') === false
|
159 |
+
&& strstr($_value->src, 'plugins/advanced-custom-fields-pro/') === false) {
|
160 |
unset($wp_scripts->registered[$_key]);
|
161 |
}
|
162 |
}
|
306 |
}
|
307 |
|
308 |
if ( version_compare( $wp_version, '4.6', '>=' ) ) {
|
309 |
+
$m_time = get_the_modified_time( __('Y/m/d g:i:s a'), $post_id );
|
310 |
} else {
|
311 |
$m_time = get_the_modified_time( 'G', false, $post_id );
|
312 |
}
|
316 |
if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
|
317 |
$h_time = sprintf( __( '%s ago' ), human_time_diff( $m_time ) );
|
318 |
} else {
|
319 |
+
$h_time = mysql2date( get_option('date_format'), $m_time );
|
320 |
}
|
321 |
|
322 |
echo $h_time;
|
566 |
* Add the codemirror editor in the `post` screen
|
567 |
*/
|
568 |
public function codemirror_editor( $post ) {
|
569 |
+
|
570 |
+
|
571 |
$current_screen = get_current_screen();
|
572 |
|
573 |
if ( $current_screen->post_type != 'custom-css-js' ) {
|
605 |
}
|
606 |
}
|
607 |
|
608 |
+
if ( isset($settings['ccj_htmlentities2']) && $settings['ccj_htmlentities2'] == 1 ) {
|
609 |
+
$post->post_content = htmlentities( $post->post_content );
|
610 |
+
}
|
611 |
+
|
612 |
switch ( $language ) {
|
613 |
case 'js' :
|
614 |
if ( $new_post ) {
|
1059 |
$file_name = $post_id . '.' . $options['language'];
|
1060 |
$file_content = $before . stripslashes($_POST['content']) . $after;
|
1061 |
@file_put_contents( CCJ_UPLOAD_DIR . '/' . $file_name , $file_content );
|
1062 |
+
|
1063 |
+
// save the file as the Permalink slug
|
1064 |
+
$slug = get_post_meta( $post_id, '_slug', true );
|
1065 |
+
if ( $slug ) {
|
1066 |
+
@file_put_contents( CCJ_UPLOAD_DIR . '/' . $slug . '.' . $options['language'], $file_content );
|
1067 |
+
}
|
1068 |
}
|
1069 |
|
1070 |
|
1300 |
}
|
1301 |
|
1302 |
|
1303 |
+
/**
|
1304 |
+
* Show the Permalink edit form
|
1305 |
+
*/
|
1306 |
+
function edit_form_before_permalink($filename = '', $permalink = '', $filetype = 'css') {
|
1307 |
+
if ( isset($_GET['language'] ) ) $filetype = $_GET['language'];
|
1308 |
+
|
1309 |
+
if ( !is_string($filename) ) {
|
1310 |
+
global $post;
|
1311 |
+
if ( ! is_object( $post ) ) return;
|
1312 |
+
if ( 'custom-css-js' !== $post->post_type ) return;
|
1313 |
+
|
1314 |
+
$post = $filename;
|
1315 |
+
$slug = get_post_meta( $post->ID, '_slug', true );
|
1316 |
+
$options = get_post_meta( $post->ID, 'options', true );
|
1317 |
+
if ( isset($options['language'] ) ) $filetype = $options['language'];
|
1318 |
+
if ( ! @file_exists( CCJ_UPLOAD_DIR . '/' . $slug . '.' . $options['language'] ) ) {
|
1319 |
+
$slug = false;
|
1320 |
+
}
|
1321 |
+
$filename = ( $slug ) ? $slug : $post->ID;
|
1322 |
+
}
|
1323 |
+
|
1324 |
+
if ( ! in_array( $filetype, array( 'css', 'js' ) ) ) return;
|
1325 |
+
if ( empty( $permalink ) ) {
|
1326 |
+
$permalink = CCJ_UPLOAD_URL. '/' . $filename . '.' . $filetype;
|
1327 |
+
}
|
1328 |
+
|
1329 |
+
?>
|
1330 |
+
<div class="inside">
|
1331 |
+
<div id="edit-slug-box" class="hide-if-no-js">
|
1332 |
+
<strong>Permalink:</strong>
|
1333 |
+
<span id="sample-permalink"><a href="<?php echo esc_url($permalink); ?>"><?php echo esc_html(CCJ_UPLOAD_URL ) . '/'; ?><span id="editable-post-name"><?php echo esc_html( $filename ); ?></span>.<?php echo esc_html($filetype); ?></a></span>
|
1334 |
+
‎<span id="ccj-edit-slug-buttons"><button type="button" class="ccj-edit-slug button button-small hide-if-no-js" aria-label="Edit permalink">Edit</button></span>
|
1335 |
+
<span id="editable-post-name-full"><?php echo esc_html($filename); ?></span>
|
1336 |
+
</div>
|
1337 |
+
<?php wp_nonce_field( 'ccj-permalink', 'ccj-permalink-nonce' ); ?>
|
1338 |
+
</div>
|
1339 |
+
<?php
|
1340 |
+
}
|
1341 |
+
|
1342 |
|
1343 |
+
/**
|
1344 |
+
* AJAX save the Permalink slug
|
1345 |
+
*/
|
1346 |
+
function wp_ajax_ccj_permalink() {
|
1347 |
+
|
1348 |
+
if ( ! isset( $_POST['ccj_permalink_nonce'] ) ) return;
|
1349 |
+
|
1350 |
+
if ( ! wp_verify_nonce( $_POST['ccj_permalink_nonce'], 'ccj-permalink') ) return;
|
1351 |
+
|
1352 |
+
$code_id = isset($_POST['code_id'])? intval($_POST['code_id']) : 0;
|
1353 |
+
$permalink = isset($_POST['permalink'])? $_POST['permalink'] : null;
|
1354 |
+
$slug = isset($_POST['new_slug'])? trim(sanitize_file_name($_POST['new_slug'])) : null;
|
1355 |
+
$filetype = isset($_POST['filetype'])? $_POST['filetype'] : 'css';
|
1356 |
+
if ( empty($slug ) ) {
|
1357 |
+
$slug = (string)$code_id;
|
1358 |
+
} else {
|
1359 |
+
update_post_meta( $code_id, '_slug', $slug);
|
1360 |
+
}
|
1361 |
+
$this->edit_form_before_permalink( $slug, $permalink, $filetype );
|
1362 |
+
|
1363 |
+
wp_die();
|
1364 |
+
}
|
1365 |
+
|
1366 |
+
|
1367 |
+
/**
|
1368 |
+
* Remove the JS/CSS file from the disk when deleting the post
|
1369 |
+
*/
|
1370 |
+
function before_delete_post( $postid ) {
|
1371 |
+
global $post;
|
1372 |
+
if ( ! is_object( $post ) ) return;
|
1373 |
+
if ( 'custom-css-js' !== $post->post_type ) return;
|
1374 |
+
if ( ! wp_is_writable( CCJ_UPLOAD_DIR ) ) return;
|
1375 |
+
|
1376 |
+
$options = get_post_meta( $postid, 'options', true );
|
1377 |
+
$slug = get_post_meta( $postid, '_slug', true );
|
1378 |
+
$file_name = $postid . '.' . $options['language'];
|
1379 |
+
|
1380 |
+
@unlink( CCJ_UPLOAD_DIR . '/' . $file_name );
|
1381 |
+
|
1382 |
+
if ( !empty( $slug ) ) {
|
1383 |
+
@unlink( CCJ_UPLOAD_DIR . '/' . $slug . '.' . $options['language'] );
|
1384 |
+
}
|
1385 |
+
}
|
1386 |
|
1387 |
}
|
1388 |
|
languages/custom-css-js-fr_FR.mo
CHANGED
Binary file
|
languages/custom-css-js-fr_FR.po
CHANGED
@@ -2,500 +2,602 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Simple Custom CSS and JS - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
-
"X-Generator:
|
11 |
-
"Language: fr\n"
|
12 |
-
"Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
15 |
-
msgid ""
|
16 |
-
"
|
17 |
-
" \n"
|
18 |
-
"If you are using the jQuery library, then don't forget to wrap your code inside jQuery.ready() as follows:\n"
|
19 |
-
"\n"
|
20 |
-
"jQuery(document).ready(function( $ ){\n"
|
21 |
-
" // Your code in here \n"
|
22 |
-
"});\n"
|
23 |
-
"\n"
|
24 |
-
"--\n"
|
25 |
-
"\n"
|
26 |
-
"If you want to link a JavaScript file that resides on another server (similar to \n"
|
27 |
-
"<script src=\"https://example.com/your-js-file.js\"></script>), then please use \n"
|
28 |
-
"the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript file.\n"
|
29 |
-
"\n"
|
30 |
-
"End of comment */ "
|
31 |
-
msgstr ""
|
32 |
-
"/* Ajoutez votre code JavaScript ici.\n"
|
33 |
-
" \n"
|
34 |
-
"Si vous utilisez la bibliotheque jQuery library, noubliez pas de wrapper votre code dans le jQuery.ready() comme ceci :\n"
|
35 |
-
"\n"
|
36 |
-
"jQuery(document).ready(function( $ ){\n"
|
37 |
-
" // Votre code ici \n"
|
38 |
-
"});\n"
|
39 |
-
"\n"
|
40 |
-
"--\n"
|
41 |
-
"\n"
|
42 |
-
"Si vous voulez lier un fichier JavaScript qui se trouve sur un autre serveur (similaire a \n"
|
43 |
-
"<script src=\"https://example.com/your-js-file.js\"></script>), utilisez \n"
|
44 |
-
"la page \"Ajouter du code HTML\", car c'est du code HTML qui appelle un fichier JavaScript.\n"
|
45 |
-
"\n"
|
46 |
-
"Fin du commentaire */ "
|
47 |
|
48 |
-
#:
|
49 |
-
|
50 |
-
msgid "
|
51 |
-
msgstr "
|
52 |
|
53 |
-
#:
|
54 |
-
|
55 |
-
msgid "
|
56 |
-
msgstr "
|
57 |
|
58 |
-
#:
|
59 |
-
|
60 |
-
|
|
|
61 |
|
62 |
-
#:
|
63 |
-
|
64 |
-
|
|
|
65 |
|
66 |
-
|
67 |
-
|
68 |
-
|
|
|
69 |
|
70 |
-
|
71 |
-
msgid "
|
72 |
-
msgstr "
|
73 |
|
74 |
-
|
75 |
-
msgid "
|
76 |
-
msgstr "
|
77 |
|
78 |
-
|
79 |
-
msgid "
|
80 |
-
msgstr "
|
81 |
|
82 |
-
|
83 |
-
msgid "
|
84 |
-
msgstr "
|
85 |
|
86 |
-
#:
|
87 |
-
msgid "
|
88 |
-
msgstr "
|
89 |
|
90 |
-
#:
|
91 |
-
msgid "
|
92 |
-
msgstr "
|
93 |
|
94 |
-
#:
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
|
98 |
-
#:
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#:
|
103 |
-
msgid "
|
104 |
-
msgstr "
|
105 |
|
106 |
-
#:
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
109 |
|
110 |
-
#:
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#: includes/admin-
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
|
118 |
-
#: includes/admin-screens.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: includes/admin-
|
123 |
-
|
124 |
-
|
125 |
-
msgstr "10 (la plus basse)"
|
126 |
|
127 |
-
#: includes/admin-
|
128 |
-
|
129 |
-
|
130 |
-
msgstr "1 (la plus haute)"
|
131 |
|
132 |
-
#: includes/admin-
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#: includes/admin-
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
|
140 |
-
#: includes/admin-
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
|
144 |
-
#: includes/admin-
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: includes/admin-
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
151 |
|
152 |
-
#: includes/admin-
|
153 |
-
msgid "
|
154 |
-
msgstr "
|
155 |
|
156 |
-
#: includes/admin-
|
157 |
-
msgid "
|
158 |
-
msgstr "
|
159 |
|
160 |
-
#: includes/admin-
|
161 |
-
msgid "
|
162 |
-
msgstr "
|
163 |
|
164 |
-
#: includes/admin-
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: includes/admin-
|
169 |
-
msgid "
|
170 |
-
msgstr "
|
171 |
|
172 |
-
#: includes/admin-
|
173 |
-
msgid "
|
174 |
-
msgstr "
|
175 |
|
176 |
-
#: includes/admin-
|
177 |
-
msgid "
|
178 |
-
msgstr "
|
179 |
|
180 |
-
#: includes/admin-
|
181 |
-
msgid "
|
182 |
-
msgstr "
|
183 |
|
184 |
-
#: includes/admin-
|
185 |
-
msgid "
|
186 |
-
msgstr "
|
187 |
|
188 |
-
#: includes/admin-
|
189 |
-
|
190 |
-
|
|
|
191 |
|
192 |
-
#: includes/admin-
|
193 |
-
msgid ""
|
194 |
-
|
195 |
-
" \n"
|
196 |
-
"For example:\n"
|
197 |
-
".example {\n"
|
198 |
-
" color: red;\n"
|
199 |
-
"}\n"
|
200 |
-
"\n"
|
201 |
-
"For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp\n"
|
202 |
-
"\n"
|
203 |
-
"End of comment */ "
|
204 |
-
msgstr ""
|
205 |
-
"/* Ajouter votre code CSS ici.\n"
|
206 |
-
" \n"
|
207 |
-
"Par exemple:\n"
|
208 |
-
".exemple {\n"
|
209 |
-
" color: red;\n"
|
210 |
-
"}\n"
|
211 |
-
"\n"
|
212 |
-
"Pour améliorer vos connaissances en CSS, visitez http://www.w3schools.com/css/css_syntax.asp\n"
|
213 |
-
"\n"
|
214 |
-
"Fin du commentaire */ "
|
215 |
|
216 |
-
#: includes/admin-
|
217 |
-
msgid ""
|
218 |
-
|
219 |
-
"\n"
|
220 |
-
"For example, you can use the following code for loading the jQuery library from Google CDN:\n"
|
221 |
-
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
|
222 |
-
"\n"
|
223 |
-
"or the following one for loading the Bootstrap library from MaxCDN:\n"
|
224 |
-
"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
|
225 |
-
"\n"
|
226 |
-
"-- End of the comment --> "
|
227 |
-
msgstr ""
|
228 |
-
"<!-- Ajoutez du code HTML dans l'en-tete ou le pied. \n"
|
229 |
-
"\n"
|
230 |
-
"Par exemple, utilisez le code suivant pour charger la bibliotheque jQuery depuis le CDN de Google :\n"
|
231 |
-
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
|
232 |
-
"\n"
|
233 |
-
"ou celui-ci pour charger la bibliotheque Bootstrap depuis MaxCDN:\n"
|
234 |
-
"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
|
235 |
-
"\n"
|
236 |
-
"-- Fin du commentaire --> "
|
237 |
|
238 |
-
#: includes/admin-screens.php:
|
239 |
-
msgid "
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#: includes/admin-
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#: includes/admin-
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#: includes/admin-
|
251 |
-
msgid "
|
252 |
-
msgstr "
|
253 |
|
254 |
-
#: includes/admin-
|
255 |
-
msgid "Custom
|
256 |
-
msgstr "
|
257 |
|
258 |
-
#: includes/admin-
|
259 |
-
|
260 |
-
|
261 |
-
msgstr "Le code est inactif. Cliquez pour l'activer"
|
262 |
|
263 |
-
#: includes/admin-
|
264 |
-
|
265 |
-
|
266 |
-
msgstr "Le code est actif. Cliquez pour le désactiver "
|
267 |
|
268 |
-
#: includes/admin-
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#: includes/admin-
|
273 |
-
msgid "
|
274 |
-
msgstr "
|
275 |
|
276 |
-
#: includes/admin-
|
277 |
-
msgid "
|
278 |
-
msgstr "
|
279 |
|
280 |
-
#: includes/admin-screens.php:
|
281 |
-
msgid "
|
282 |
-
msgstr "
|
283 |
|
284 |
-
#: includes/admin-screens.php:
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
-
#: includes/admin-screens.php:
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#: includes/admin-screens.php:
|
293 |
-
#: includes/admin-screens.php:
|
294 |
msgid "Active"
|
295 |
msgstr "Actif"
|
296 |
|
297 |
-
#: includes/admin-screens.php:
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: includes/admin-screens.php:
|
302 |
-
|
303 |
-
|
|
|
304 |
|
305 |
-
#: includes/admin-screens.php:
|
306 |
-
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
|
309 |
-
#: includes/admin-screens.php:
|
310 |
msgid "Options"
|
311 |
msgstr "Options"
|
312 |
|
313 |
-
#: includes/admin-screens.php:
|
314 |
-
msgid "Add
|
315 |
-
msgstr "Ajouter du
|
316 |
|
317 |
-
#: includes/admin-screens.php:
|
318 |
-
msgid "Add
|
319 |
-
msgstr "Ajouter du JS
|
320 |
|
321 |
-
#: includes/admin-screens.php:
|
322 |
-
msgid "Add
|
323 |
-
msgstr "Ajouter du
|
324 |
|
325 |
-
#: includes/admin-
|
326 |
-
msgid "
|
327 |
-
msgstr "
|
328 |
|
329 |
-
#: includes/admin-
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
332 |
|
333 |
-
#: includes/admin-
|
334 |
-
msgid "
|
335 |
-
msgstr "
|
336 |
|
337 |
-
#: includes/admin-
|
338 |
-
msgid "
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#: includes/admin-
|
342 |
-
msgid "
|
343 |
-
msgstr "
|
344 |
|
345 |
-
#: includes/admin-
|
346 |
-
msgid "
|
347 |
-
msgstr "
|
348 |
|
349 |
-
#: includes/admin-
|
350 |
-
msgid "
|
351 |
-
msgstr "
|
352 |
|
353 |
-
#: includes/admin-
|
354 |
-
|
355 |
-
|
356 |
-
msgstr "F j, Y @ H:i:s"
|
357 |
|
358 |
-
#: includes/admin-
|
359 |
-
msgid "
|
360 |
-
msgstr "
|
361 |
|
362 |
-
#: includes/admin-
|
363 |
-
msgid "
|
364 |
-
msgstr "
|
365 |
|
366 |
-
#: includes/admin-
|
367 |
-
msgid "
|
368 |
-
msgstr "
|
369 |
|
370 |
-
#: includes/admin-
|
371 |
-
msgid "
|
372 |
-
msgstr "
|
373 |
|
374 |
-
#: includes/admin-
|
375 |
-
|
376 |
-
|
|
|
377 |
|
378 |
-
#: includes/admin-
|
379 |
-
|
380 |
-
|
|
|
381 |
|
382 |
-
#: includes/admin-
|
383 |
-
|
384 |
-
|
|
|
385 |
|
386 |
-
#: includes/admin-
|
387 |
-
msgid "
|
388 |
-
msgstr "
|
389 |
|
390 |
-
#: includes/admin-
|
391 |
-
msgid "
|
392 |
-
msgstr "
|
393 |
|
394 |
-
#: includes/admin-
|
395 |
-
msgid "
|
396 |
-
msgstr "
|
397 |
|
398 |
-
#: includes/admin-
|
399 |
-
msgid "
|
400 |
-
msgstr "
|
401 |
|
402 |
-
#: includes/admin-
|
403 |
-
msgid "
|
404 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
405 |
|
406 |
-
#: includes/admin-
|
407 |
-
msgid "
|
408 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
|
410 |
-
#: includes/admin-
|
411 |
-
msgid "
|
412 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
|
414 |
-
#: includes/admin-
|
415 |
-
msgid "
|
416 |
-
msgstr "
|
417 |
|
418 |
-
#: includes/admin-
|
419 |
-
msgid "
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#: includes/admin-
|
423 |
-
msgid "
|
424 |
-
msgstr "
|
425 |
|
426 |
-
#:
|
427 |
-
msgid "
|
428 |
-
msgstr "
|
429 |
|
430 |
-
#:
|
431 |
-
msgid "
|
432 |
-
msgstr "
|
433 |
|
434 |
-
#:
|
435 |
-
msgid "
|
436 |
-
msgstr "
|
437 |
|
438 |
-
#:
|
439 |
-
msgid "
|
440 |
-
msgstr "
|
441 |
|
442 |
-
#:
|
443 |
-
msgid "
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#:
|
447 |
-
msgid "
|
448 |
-
msgstr "
|
449 |
|
450 |
-
#:
|
451 |
-
msgid "
|
452 |
-
msgstr "
|
453 |
|
454 |
-
#:
|
455 |
-
msgid "
|
456 |
-
msgstr "
|
457 |
|
458 |
-
#:
|
459 |
-
msgid "
|
460 |
-
msgstr "
|
461 |
|
462 |
-
#:
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#:
|
467 |
-
msgid "
|
468 |
-
msgstr "
|
469 |
|
470 |
-
#:
|
471 |
-
msgid "
|
472 |
-
msgstr "
|
473 |
|
474 |
-
#:
|
475 |
-
|
476 |
-
|
477 |
-
msgstr "Ajouter du code personnalisé"
|
478 |
|
479 |
-
#:
|
480 |
-
|
481 |
-
|
482 |
-
msgstr "Code personnalisé"
|
483 |
|
484 |
-
#:
|
485 |
-
|
486 |
-
|
487 |
-
msgstr "CSS et JS personnalisés"
|
488 |
|
489 |
-
#:
|
490 |
-
msgctxt "
|
491 |
-
msgid "
|
492 |
-
msgstr "
|
493 |
|
494 |
-
#:
|
495 |
-
msgctxt "
|
496 |
-
msgid "
|
497 |
-
msgstr "
|
498 |
|
499 |
-
#:
|
500 |
-
msgid "
|
501 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the Plugins - Simple Custom CSS and JS - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest "
|
6 |
+
"release)\n"
|
7 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
|
8 |
+
"svn\n"
|
9 |
+
"POT-Creation-Date: 2018-02-08 19:58:14+00:00\n"
|
10 |
+
"PO-Revision-Date: 2018-02-08 21:05+0100\n"
|
11 |
+
"Last-Translator: Diana Burduja <diana@wootips.com>\n"
|
12 |
+
"Language-Team: \n"
|
13 |
+
"Language: fr\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
18 |
+
"X-Generator: Poedit 1.6.10\n"
|
|
|
|
|
19 |
|
20 |
+
#: custom-css-js.php:53 custom-css-js.php:60
|
21 |
+
msgid "Cheatin’ huh?"
|
22 |
+
msgstr "Cheatin’ huh?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
+
#: custom-css-js.php:220
|
25 |
+
msgctxt "post type general name"
|
26 |
+
msgid "Custom Code"
|
27 |
+
msgstr "Code personnalisé"
|
28 |
|
29 |
+
#: custom-css-js.php:221
|
30 |
+
msgctxt "post type singular name"
|
31 |
+
msgid "Custom Code"
|
32 |
+
msgstr "Code personnalisé"
|
33 |
|
34 |
+
#: custom-css-js.php:222
|
35 |
+
msgctxt "admin menu"
|
36 |
+
msgid "Custom CSS & JS"
|
37 |
+
msgstr "CSS et JS personnalisés"
|
38 |
|
39 |
+
#: custom-css-js.php:223
|
40 |
+
msgctxt "add new on admin bar"
|
41 |
+
msgid "Custom Code"
|
42 |
+
msgstr "Code personnalisé"
|
43 |
|
44 |
+
#: custom-css-js.php:224
|
45 |
+
msgctxt "add new"
|
46 |
+
msgid "Add Custom Code"
|
47 |
+
msgstr "Ajouter du code personnalisé"
|
48 |
|
49 |
+
#: custom-css-js.php:225
|
50 |
+
msgid "Add Custom Code"
|
51 |
+
msgstr "Ajouter du code personnalisé "
|
52 |
|
53 |
+
#: custom-css-js.php:226
|
54 |
+
msgid "New Custom Code"
|
55 |
+
msgstr "Nouveau code personnalisé"
|
56 |
|
57 |
+
#: custom-css-js.php:227
|
58 |
+
msgid "Edit Custom Code"
|
59 |
+
msgstr "Modifier le code personnalisé"
|
60 |
|
61 |
+
#: custom-css-js.php:228
|
62 |
+
msgid "View Custom Code"
|
63 |
+
msgstr "Voir le code personnalisé"
|
64 |
|
65 |
+
#: custom-css-js.php:229
|
66 |
+
msgid "All Custom Code"
|
67 |
+
msgstr "Tous les codes personnalisés"
|
68 |
|
69 |
+
#: custom-css-js.php:230
|
70 |
+
msgid "Search Custom Code"
|
71 |
+
msgstr "Rechercher du code personnalisé"
|
72 |
|
73 |
+
#: custom-css-js.php:231
|
74 |
+
msgid "Parent Custom Code:"
|
75 |
+
msgstr "Code personnalisé parent :"
|
76 |
|
77 |
+
#: custom-css-js.php:232
|
78 |
+
msgid "No Custom Code found."
|
79 |
+
msgstr "Aucun code personnalisé trouvé."
|
80 |
|
81 |
+
#: custom-css-js.php:233
|
82 |
+
msgid "No Custom Code found in Trash."
|
83 |
+
msgstr "Aucun code personnalisé trouvé dans la corbeille."
|
84 |
|
85 |
+
#: custom-css-js.php:254
|
86 |
+
msgid "Custom CSS and JS code"
|
87 |
+
msgstr "Code CSS et JS personnalisé "
|
88 |
|
89 |
+
#: custom-css-js.php:299
|
90 |
+
msgid "Web Designer"
|
91 |
+
msgstr "Designer Web"
|
92 |
|
93 |
+
#: custom-css-js.php:394 includes/admin-config.php:58
|
94 |
+
msgid "Settings"
|
95 |
+
msgstr "Configuration"
|
96 |
|
97 |
+
#: includes/admin-addons.php:42 includes/admin-screens.php:776
|
98 |
+
msgid "Available only in <br />Simple Custom CSS and JS Pro"
|
99 |
+
msgstr "Uniquement disponible dans <br />Simple Custom CSS and JS Pro"
|
100 |
|
101 |
+
#: includes/admin-addons.php:54
|
102 |
+
msgid "Preview"
|
103 |
+
msgstr "Prévisualiser"
|
|
|
104 |
|
105 |
+
#: includes/admin-addons.php:55
|
106 |
+
msgid "Apply only on these URLs"
|
107 |
+
msgstr "Appliquer seulement à ces URLs"
|
|
|
108 |
|
109 |
+
#: includes/admin-addons.php:56
|
110 |
+
msgid "Code Revisions"
|
111 |
+
msgstr "Révisions du code"
|
112 |
|
113 |
+
#: includes/admin-addons.php:67
|
114 |
+
msgid "Full URL on which to preview the changes ..."
|
115 |
+
msgstr "URL où prévisualiser les modifications ..."
|
116 |
|
117 |
+
#: includes/admin-addons.php:68
|
118 |
+
msgid "Preview Changes"
|
119 |
+
msgstr "Prévisualiser"
|
120 |
|
121 |
+
#: includes/admin-addons.php:82
|
122 |
+
msgid "All Website"
|
123 |
+
msgstr "Tout le site"
|
124 |
|
125 |
+
#: includes/admin-addons.php:83
|
126 |
+
msgid "First page"
|
127 |
+
msgstr "Première page"
|
128 |
|
129 |
+
#: includes/admin-addons.php:84
|
130 |
+
msgid "Contains"
|
131 |
+
msgstr "Contient"
|
132 |
|
133 |
+
#: includes/admin-addons.php:85
|
134 |
+
msgid "Not contains"
|
135 |
+
msgstr "Ne contient pas"
|
136 |
|
137 |
+
#: includes/admin-addons.php:86
|
138 |
+
msgid "Is equal to"
|
139 |
+
msgstr "Egal à"
|
140 |
|
141 |
+
#: includes/admin-addons.php:87
|
142 |
+
msgid "Not equal to"
|
143 |
+
msgstr "Différent de"
|
144 |
|
145 |
+
#: includes/admin-addons.php:88
|
146 |
+
msgid "Starts with"
|
147 |
+
msgstr "Commence par"
|
148 |
|
149 |
+
#: includes/admin-addons.php:89
|
150 |
+
msgid "Ends by"
|
151 |
+
msgstr "Se termine par"
|
152 |
|
153 |
+
#: includes/admin-addons.php:100 includes/admin-addons.php:101
|
154 |
+
msgid "URL"
|
155 |
+
msgstr "URL"
|
156 |
|
157 |
+
#: includes/admin-addons.php:102
|
158 |
+
msgid "Text filter"
|
159 |
+
msgstr "Filtre de texte"
|
160 |
|
161 |
+
#: includes/admin-addons.php:103
|
162 |
+
msgid "Add"
|
163 |
+
msgstr "Ajouter"
|
164 |
|
165 |
+
#: includes/admin-addons.php:114
|
166 |
+
msgctxt "revision date format"
|
167 |
+
msgid "F j, Y @ H:i:s"
|
168 |
+
msgstr "F j, Y @ H:i:s"
|
169 |
|
170 |
+
#: includes/admin-addons.php:136 includes/admin-addons.php:169
|
171 |
+
msgid "Compare"
|
172 |
+
msgstr "Comparer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
|
174 |
+
#: includes/admin-addons.php:137
|
175 |
+
msgid "Revision"
|
176 |
+
msgstr "Révision"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
|
178 |
+
#: includes/admin-addons.php:138 includes/admin-screens.php:283
|
179 |
+
msgid "Author"
|
180 |
+
msgstr "Auteur"
|
181 |
|
182 |
+
#: includes/admin-addons.php:139 includes/admin-addons.php:173
|
183 |
+
msgid "Delete"
|
184 |
+
msgstr "Effacer"
|
185 |
|
186 |
+
#: includes/admin-addons.php:140 includes/admin-addons.php:163
|
187 |
+
msgid "Restore"
|
188 |
+
msgstr "Restaurer"
|
189 |
|
190 |
+
#: includes/admin-config.php:115
|
191 |
+
msgid "Save"
|
192 |
+
msgstr "Sauvegarder"
|
193 |
|
194 |
+
#: includes/admin-config.php:139
|
195 |
+
msgid "Custom CSS & JS Settings"
|
196 |
+
msgstr "Configuration de Custom CSS & JS"
|
197 |
|
198 |
+
#: includes/admin-config.php:142
|
199 |
+
msgid "Editor Settings"
|
200 |
+
msgstr "Configuration de l'éditeur"
|
|
|
201 |
|
202 |
+
#: includes/admin-config.php:195
|
203 |
+
msgid "Keep the HTML entities, don't convert to its character"
|
204 |
+
msgstr "Conserver le code HTML, ne pas le convertir en caractères"
|
|
|
205 |
|
206 |
+
#: includes/admin-config.php:200
|
207 |
+
msgid "Encode the HTML entities"
|
208 |
+
msgstr ""
|
209 |
|
210 |
+
#: includes/admin-notices.php:125
|
211 |
+
msgid "Get your discount now"
|
212 |
+
msgstr "Obtenez votre remise maintenant"
|
213 |
|
214 |
+
#: includes/admin-notices.php:125 includes/admin-notices.php:190
|
215 |
+
msgid "Dismiss this notice"
|
216 |
+
msgstr "Effacer cette notification"
|
217 |
|
218 |
+
#: includes/admin-screens.php:93
|
219 |
+
msgid "Add Custom CSS"
|
220 |
+
msgstr "Ajouter du CSS personnalisé"
|
221 |
|
222 |
+
#: includes/admin-screens.php:96
|
223 |
+
msgid "Add Custom JS"
|
224 |
+
msgstr "Ajouter du JS personnalisé"
|
225 |
|
226 |
+
#: includes/admin-screens.php:99
|
227 |
+
msgid "Add Custom HTML"
|
228 |
+
msgstr "Ajouter du HTML personnalisé"
|
229 |
|
230 |
+
#: includes/admin-screens.php:173 includes/admin-screens.php:280
|
231 |
+
#: includes/admin-screens.php:1286
|
232 |
msgid "Active"
|
233 |
msgstr "Actif"
|
234 |
|
235 |
+
#: includes/admin-screens.php:174 includes/admin-screens.php:1289
|
236 |
+
msgid "Inactive"
|
237 |
+
msgstr "Inactif"
|
238 |
|
239 |
+
#: includes/admin-screens.php:175 includes/admin-screens.php:1262
|
240 |
+
#: includes/admin-screens.php:1290
|
241 |
+
msgid "Activate"
|
242 |
+
msgstr "Activer"
|
243 |
|
244 |
+
#: includes/admin-screens.php:176 includes/admin-screens.php:1259
|
245 |
+
#: includes/admin-screens.php:1287
|
246 |
+
msgid "Deactivate"
|
247 |
+
msgstr "Désactiver"
|
248 |
+
|
249 |
+
#: includes/admin-screens.php:177 includes/admin-screens.php:325
|
250 |
+
#: includes/admin-screens.php:1258
|
251 |
+
msgid "The code is active. Click to deactivate it"
|
252 |
+
msgstr "Le code est actif. Cliquez pour le désactiver "
|
253 |
+
|
254 |
+
#: includes/admin-screens.php:178 includes/admin-screens.php:328
|
255 |
+
#: includes/admin-screens.php:1261
|
256 |
+
msgid "The code is inactive. Click to activate it"
|
257 |
+
msgstr "Le code est inactif. Cliquez pour l'activer"
|
258 |
|
259 |
+
#: includes/admin-screens.php:204
|
260 |
msgid "Options"
|
261 |
msgstr "Options"
|
262 |
|
263 |
+
#: includes/admin-screens.php:264
|
264 |
+
msgid "Add CSS code"
|
265 |
+
msgstr "Ajouter du code CSS"
|
266 |
|
267 |
+
#: includes/admin-screens.php:265
|
268 |
+
msgid "Add JS code"
|
269 |
+
msgstr "Ajouter du code JS"
|
270 |
|
271 |
+
#: includes/admin-screens.php:266
|
272 |
+
msgid "Add HTML code"
|
273 |
+
msgstr "Ajouter du code HTML"
|
274 |
|
275 |
+
#: includes/admin-screens.php:281
|
276 |
+
msgid "Type"
|
277 |
+
msgstr "Type"
|
278 |
|
279 |
+
#: includes/admin-screens.php:282
|
280 |
+
msgid "Title"
|
281 |
+
msgstr "Titre"
|
282 |
|
283 |
+
#: includes/admin-screens.php:284
|
284 |
+
msgid "Date"
|
285 |
+
msgstr "Date"
|
286 |
|
287 |
+
#: includes/admin-screens.php:285
|
288 |
+
msgid "Modified"
|
289 |
+
msgstr "Modifié"
|
290 |
|
291 |
+
#: includes/admin-screens.php:314
|
292 |
+
msgid "%s ago"
|
293 |
+
msgstr "Il y a %s"
|
294 |
|
295 |
+
#: includes/admin-screens.php:316
|
296 |
+
msgid "Y/m/d"
|
297 |
+
msgstr "Y/m/d"
|
298 |
|
299 |
+
#: includes/admin-screens.php:386
|
300 |
+
msgid "CSS Codes"
|
301 |
+
msgstr "Codes CSS"
|
302 |
|
303 |
+
#: includes/admin-screens.php:387
|
304 |
+
msgid "JS Codes"
|
305 |
+
msgstr "Codes JS"
|
|
|
306 |
|
307 |
+
#: includes/admin-screens.php:388
|
308 |
+
msgid "HTML Codes"
|
309 |
+
msgstr "Codes HTML"
|
310 |
|
311 |
+
#: includes/admin-screens.php:391
|
312 |
+
msgid "Filter Code Type"
|
313 |
+
msgstr "Filtrer le type de code"
|
314 |
|
315 |
+
#: includes/admin-screens.php:393
|
316 |
+
msgid "All Custom Codes"
|
317 |
+
msgstr "Tous les codes personnalisés"
|
318 |
|
319 |
+
#: includes/admin-screens.php:448
|
320 |
+
msgid "Custom Code"
|
321 |
+
msgstr "Code personnalisé"
|
322 |
|
323 |
+
#: includes/admin-screens.php:449 includes/admin-screens.php:468
|
324 |
+
#: includes/admin-screens.php:489
|
325 |
+
msgid "Add CSS Code"
|
326 |
+
msgstr "Ajouter du code CSS"
|
327 |
|
328 |
+
#: includes/admin-screens.php:450 includes/admin-screens.php:469
|
329 |
+
#: includes/admin-screens.php:490
|
330 |
+
msgid "Add JS Code"
|
331 |
+
msgstr "Ajouter du code JS"
|
332 |
|
333 |
+
#: includes/admin-screens.php:451 includes/admin-screens.php:470
|
334 |
+
#: includes/admin-screens.php:491
|
335 |
+
msgid "Add HTML Code"
|
336 |
+
msgstr "Ajouter du code HTML"
|
337 |
|
338 |
+
#: includes/admin-screens.php:471
|
339 |
+
msgid "Edit CSS Code"
|
340 |
+
msgstr "Modifier le code CSS"
|
341 |
|
342 |
+
#: includes/admin-screens.php:472
|
343 |
+
msgid "Edit JS Code"
|
344 |
+
msgstr "Modifier le code JS"
|
345 |
|
346 |
+
#: includes/admin-screens.php:473
|
347 |
+
msgid "Edit HTML Code"
|
348 |
+
msgstr "Modifier le code HTML"
|
349 |
|
350 |
+
#: includes/admin-screens.php:499
|
351 |
+
msgid "Code updated"
|
352 |
+
msgstr "Code mis à jour"
|
353 |
|
354 |
+
#: includes/admin-screens.php:612
|
355 |
+
msgid ""
|
356 |
+
"/* Add your JavaScript code here.\n"
|
357 |
+
"\n"
|
358 |
+
"If you are using the jQuery library, then don't forget to wrap your code "
|
359 |
+
"inside jQuery.ready() as follows:\n"
|
360 |
+
"\n"
|
361 |
+
"jQuery(document).ready(function( $ ){\n"
|
362 |
+
" // Your code in here\n"
|
363 |
+
"});\n"
|
364 |
+
"\n"
|
365 |
+
"--\n"
|
366 |
+
"\n"
|
367 |
+
"If you want to link a JavaScript file that resides on another server "
|
368 |
+
"(similar to\n"
|
369 |
+
"<script src=\"https://example.com/your-js-file.js\"></script>), then please "
|
370 |
+
"use\n"
|
371 |
+
"the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript "
|
372 |
+
"file.\n"
|
373 |
+
"\n"
|
374 |
+
"End of comment */ "
|
375 |
+
msgstr ""
|
376 |
+
"/* Ajoutez votre code JavaScript ici.\n"
|
377 |
+
" \n"
|
378 |
+
"Si vous utilisez la bibliotheque jQuery library, noubliez pas de wrapper "
|
379 |
+
"votre code dans le jQuery.ready() comme ceci :\n"
|
380 |
+
"\n"
|
381 |
+
"jQuery(document).ready(function( $ ){\n"
|
382 |
+
" // Votre code ici \n"
|
383 |
+
"});\n"
|
384 |
+
"\n"
|
385 |
+
"--\n"
|
386 |
+
"\n"
|
387 |
+
"Si vous voulez lier un fichier JavaScript qui se trouve sur un autre serveur "
|
388 |
+
"(similaire a \n"
|
389 |
+
"<script src=\"https://example.com/your-js-file.js\"></script>), utilisez \n"
|
390 |
+
"la page \"Ajouter du code HTML\", car c'est du code HTML qui appelle un "
|
391 |
+
"fichier JavaScript.\n"
|
392 |
+
"\n"
|
393 |
+
"Fin du commentaire */ "
|
394 |
|
395 |
+
#: includes/admin-screens.php:634
|
396 |
+
msgid ""
|
397 |
+
"<!-- Add HTML code to the header or the footer.\n"
|
398 |
+
"\n"
|
399 |
+
"For example, you can use the following code for loading the jQuery library "
|
400 |
+
"from Google CDN:\n"
|
401 |
+
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min."
|
402 |
+
"js\"></script>\n"
|
403 |
+
"\n"
|
404 |
+
"or the following one for loading the Bootstrap library from MaxCDN:\n"
|
405 |
+
"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/"
|
406 |
+
"bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-"
|
407 |
+
"BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" "
|
408 |
+
"crossorigin=\"anonymous\">\n"
|
409 |
+
"\n"
|
410 |
+
"-- End of the comment --> "
|
411 |
+
msgstr ""
|
412 |
+
"<!-- Ajoutez du code HTML dans l'en-tete ou le pied. \n"
|
413 |
+
"\n"
|
414 |
+
"Par exemple, utilisez le code suivant pour charger la bibliotheque jQuery "
|
415 |
+
"depuis le CDN de Google :\n"
|
416 |
+
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min."
|
417 |
+
"js\"></script>\n"
|
418 |
+
"\n"
|
419 |
+
"ou celui-ci pour charger la bibliotheque Bootstrap depuis MaxCDN:\n"
|
420 |
+
"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/"
|
421 |
+
"bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-"
|
422 |
+
"BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" "
|
423 |
+
"crossorigin=\"anonymous\">\n"
|
424 |
+
"\n"
|
425 |
+
"-- Fin du commentaire --> "
|
426 |
|
427 |
+
#: includes/admin-screens.php:660
|
428 |
+
msgid ""
|
429 |
+
"/* Add your CSS code here.\n"
|
430 |
+
"\n"
|
431 |
+
"For example:\n"
|
432 |
+
".example {\n"
|
433 |
+
" color: red;\n"
|
434 |
+
"}\n"
|
435 |
+
"\n"
|
436 |
+
"For brushing up on your CSS knowledge, check out http://www.w3schools.com/"
|
437 |
+
"css/css_syntax.asp\n"
|
438 |
+
"\n"
|
439 |
+
"End of comment */ "
|
440 |
+
msgstr ""
|
441 |
+
"/* Ajouter votre code CSS ici.\n"
|
442 |
+
" \n"
|
443 |
+
"Par exemple:\n"
|
444 |
+
".exemple {\n"
|
445 |
+
" color: red;\n"
|
446 |
+
"}\n"
|
447 |
+
"\n"
|
448 |
+
"Pour améliorer vos connaissances en CSS, visitez http://www.w3schools.com/"
|
449 |
+
"css/css_syntax.asp\n"
|
450 |
+
"\n"
|
451 |
+
"Fin du commentaire */ "
|
452 |
|
453 |
+
#: includes/admin-screens.php:692
|
454 |
+
msgid "Last edited by %1$s on %2$s at %3$s"
|
455 |
+
msgstr "Dernière modification par %1$s le %2$s à %3$s"
|
456 |
|
457 |
+
#: includes/admin-screens.php:694
|
458 |
+
msgid "Last edited on %1$s at %2$s"
|
459 |
+
msgstr "Dernière modification le %1$s à %2$s"
|
460 |
|
461 |
+
#: includes/admin-screens.php:791
|
462 |
+
msgid "Linking type"
|
463 |
+
msgstr "Type de liaison"
|
464 |
|
465 |
+
#: includes/admin-screens.php:796
|
466 |
+
msgid "External File"
|
467 |
+
msgstr "Fichier externe"
|
468 |
|
469 |
+
#: includes/admin-screens.php:800
|
470 |
+
msgid "Internal"
|
471 |
+
msgstr "Interne"
|
472 |
|
473 |
+
#: includes/admin-screens.php:806 includes/admin-screens.php:894
|
474 |
+
msgid "Where on page"
|
475 |
+
msgstr "Où dans la page"
|
476 |
|
477 |
+
#: includes/admin-screens.php:811 includes/admin-screens.php:899
|
478 |
+
msgid "Header"
|
479 |
+
msgstr "En-tête de page"
|
480 |
|
481 |
+
#: includes/admin-screens.php:815 includes/admin-screens.php:903
|
482 |
+
msgid "Footer"
|
483 |
+
msgstr "Pied de page"
|
484 |
|
485 |
+
#: includes/admin-screens.php:821 includes/admin-screens.php:909
|
486 |
+
msgid "Where in site"
|
487 |
+
msgstr "Où dans le site"
|
488 |
|
489 |
+
#: includes/admin-screens.php:826 includes/admin-screens.php:914
|
490 |
+
msgid "In Frontend"
|
491 |
+
msgstr "Sur le site"
|
492 |
|
493 |
+
#: includes/admin-screens.php:830 includes/admin-screens.php:918
|
494 |
+
msgid "In Admin"
|
495 |
+
msgstr "Dans l'administration"
|
496 |
|
497 |
+
#: includes/admin-screens.php:834
|
498 |
+
msgid "On Login Page"
|
499 |
+
msgstr "Sur la page de Login"
|
500 |
|
501 |
+
#: includes/admin-screens.php:840
|
502 |
+
msgid "CSS Preprocessor"
|
503 |
+
msgstr "Préprocesseur CSS"
|
504 |
|
505 |
+
#: includes/admin-screens.php:845
|
506 |
+
msgid "None"
|
507 |
+
msgstr "aucun"
|
508 |
|
509 |
+
#: includes/admin-screens.php:848
|
510 |
+
msgid "Less"
|
511 |
+
msgstr "Less"
|
512 |
|
513 |
+
#: includes/admin-screens.php:851
|
514 |
+
msgid "SASS (only SCSS syntax)"
|
515 |
+
msgstr "SASS (syntaxe SCSS seulement)"
|
|
|
516 |
|
517 |
+
#: includes/admin-screens.php:857
|
518 |
+
msgid "Minify the code"
|
519 |
+
msgstr "Minifier le code"
|
|
|
520 |
|
521 |
+
#: includes/admin-screens.php:864 includes/admin-screens.php:945
|
522 |
+
msgid "Priority"
|
523 |
+
msgstr "Priorité"
|
|
|
524 |
|
525 |
+
#: includes/admin-screens.php:869 includes/admin-screens.php:950
|
526 |
+
msgctxt "1 is the highest priority"
|
527 |
+
msgid "1 (highest)"
|
528 |
+
msgstr "1 (la plus haute)"
|
529 |
|
530 |
+
#: includes/admin-screens.php:878 includes/admin-screens.php:959
|
531 |
+
msgctxt "10 is the lowest priority"
|
532 |
+
msgid "10 (lowest)"
|
533 |
+
msgstr "10 (la plus basse)"
|
534 |
|
535 |
+
#: includes/admin-screens.php:924
|
536 |
+
msgid "On which device"
|
537 |
+
msgstr "Sur quel appareil"
|
538 |
+
|
539 |
+
#: includes/admin-screens.php:930
|
540 |
+
msgid "Desktop"
|
541 |
+
msgstr "Ordinateur"
|
542 |
+
|
543 |
+
#: includes/admin-screens.php:934
|
544 |
+
msgid "Mobile"
|
545 |
+
msgstr "Mobile"
|
546 |
+
|
547 |
+
#: includes/admin-screens.php:938
|
548 |
+
msgid "Both"
|
549 |
+
msgstr "Les deux"
|
550 |
+
|
551 |
+
#: includes/admin-screens.php:1096
|
552 |
+
msgid "The %s directory could not be created"
|
553 |
+
msgstr "Le répertoire %s ne peut pas être créé"
|
554 |
+
|
555 |
+
#: includes/admin-screens.php:1097
|
556 |
+
msgid "Please run the following commands in order to make the directory"
|
557 |
+
msgstr "Veuillez exécuter les commandes suivantes pour créer le répertoire "
|
558 |
+
|
559 |
+
#: includes/admin-screens.php:1105
|
560 |
+
msgid ""
|
561 |
+
"The %s directory is not writable, therefore the CSS and JS files cannot be "
|
562 |
+
"saved."
|
563 |
+
msgstr ""
|
564 |
+
"Le répertoire %s n'est pas modifiable, les fichiers CSS et JS ne peuvent "
|
565 |
+
"être sauvegardés."
|
566 |
+
|
567 |
+
#: includes/admin-screens.php:1106
|
568 |
+
msgid "Please run the following command to make the directory writable"
|
569 |
+
msgstr ""
|
570 |
+
"Veuillez exécuter la commande suivante pour rendre le répertoire modifiable."
|
571 |
+
|
572 |
+
#: includes/admin-warnings.php:55
|
573 |
+
msgid ""
|
574 |
+
"Please remove the <b>custom-css-js</b> post type from the <b>qTranslate "
|
575 |
+
"settings</b> in order to avoid some malfunctions in the Simple Custom CSS & "
|
576 |
+
"JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> "
|
577 |
+
"for more details on how to do that."
|
578 |
+
msgstr ""
|
579 |
+
"Veuillez retirer le post type <b>custom-css-js</b> de la configuration de "
|
580 |
+
"<b>qTranslate</b> pour éviter certains effets néfastes avec Simple Custom "
|
581 |
+
"CSS & JS plugin. Reportez vous à <a href=\"%s\" target=\"_blank\">cette "
|
582 |
+
"image</a> pour plus de détail sur la façon de faire."
|
583 |
+
|
584 |
+
#. Plugin Name of the plugin/theme
|
585 |
+
msgid "Simple Custom CSS and JS"
|
586 |
+
msgstr "Simple Custom CSS and JS"
|
587 |
+
|
588 |
+
#. Plugin URI of the plugin/theme
|
589 |
+
msgid "https://wordpress.org/plugins/custom-css-js/"
|
590 |
+
msgstr "https://wordpress.org/plugins/custom-css-js/"
|
591 |
+
|
592 |
+
#. Description of the plugin/theme
|
593 |
+
msgid "Easily add Custom CSS or JS to your website with an awesome editor."
|
594 |
+
msgstr ""
|
595 |
+
"Ajoutez facilement du code CSS et JS à votre site avec ce puissant éditeur."
|
596 |
+
|
597 |
+
#. Author of the plugin/theme
|
598 |
+
msgid "Diana Burduja"
|
599 |
+
msgstr "Diana Burduja"
|
600 |
+
|
601 |
+
#. Author URI of the plugin/theme
|
602 |
+
msgid "https://www.silkypress.com/"
|
603 |
+
msgstr "https://www.silkypress.com/"
|
languages/custom-css-js-pl_PL.mo
CHANGED
Binary file
|
languages/custom-css-js-pl_PL.po
CHANGED
@@ -2,449 +2,560 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Simple Custom CSS and JS - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest release)\n"
|
13 |
|
14 |
-
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
|
|
33 |
|
34 |
-
#:
|
35 |
-
|
36 |
-
|
|
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#:
|
51 |
-
msgid "
|
52 |
-
msgstr "
|
53 |
|
54 |
-
#:
|
55 |
-
msgid "
|
56 |
-
msgstr "
|
57 |
|
58 |
-
#:
|
59 |
-
msgid "
|
60 |
-
msgstr "
|
61 |
|
62 |
-
#:
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
|
66 |
-
#:
|
67 |
-
msgid "
|
68 |
-
msgstr "
|
69 |
|
70 |
-
#:
|
71 |
-
|
72 |
-
|
73 |
-
msgstr "10 (najniższy)"
|
74 |
|
75 |
-
#:
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "1 (najwyższy)"
|
79 |
|
80 |
-
#:
|
81 |
-
msgid "
|
82 |
-
msgstr "
|
83 |
|
84 |
-
#: includes/admin-
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: includes/admin-screens.php:
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: includes/admin-
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: includes/admin-
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: includes/admin-
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: includes/admin-
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: includes/admin-
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: includes/admin-
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: includes/admin-
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
119 |
|
120 |
-
#: includes/admin-
|
121 |
-
msgid "
|
122 |
-
msgstr "
|
123 |
|
124 |
-
#: includes/admin-
|
125 |
-
msgid "
|
126 |
-
msgstr "
|
127 |
|
128 |
-
#: includes/admin-
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
131 |
|
132 |
-
#: includes/admin-
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#: includes/admin-
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
|
140 |
-
#: includes/admin-
|
141 |
-
msgid ""
|
142 |
-
"
|
143 |
-
" \n"
|
144 |
-
"For example:\n"
|
145 |
-
".example {\n"
|
146 |
-
" color: red;\n"
|
147 |
-
"}\n"
|
148 |
-
"\n"
|
149 |
-
"For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp\n"
|
150 |
-
"\n"
|
151 |
-
"End of comment */ "
|
152 |
-
msgstr ""
|
153 |
-
"/* Dodaj swój kod CSS tutaj.\n"
|
154 |
-
" \n"
|
155 |
-
"Na przykład:\n"
|
156 |
-
".przyklad {\n"
|
157 |
-
" color: red;\n"
|
158 |
-
"}\n"
|
159 |
-
"\n"
|
160 |
-
"Sprawdź poniższą stronę, jeśli chcesz poszerzyć swoją wiedzę nt. CSS:\n"
|
161 |
-
"http://www.w3schools.com/css/css_syntax.asp\n"
|
162 |
-
"\n"
|
163 |
-
"Koniec komentarza */ "
|
164 |
|
165 |
-
#: includes/admin-
|
166 |
-
msgid ""
|
167 |
-
"
|
168 |
-
"\n"
|
169 |
-
"For example, you can use the following code for loading the jQuery library from Google CDN:\n"
|
170 |
-
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
|
171 |
-
"\n"
|
172 |
-
"or the following one for loading the Bootstrap library from MaxCDN:\n"
|
173 |
-
"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
|
174 |
-
"\n"
|
175 |
-
"-- End of the comment --> "
|
176 |
-
msgstr ""
|
177 |
-
"<!-- Dodaj swój kod HTML do nagłówka lub stopki. \n"
|
178 |
-
"\n"
|
179 |
-
"Na przykład możesz użyć poniższego kodu aby załadować bibliotekę jQuery z Google CDN:\n"
|
180 |
-
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
|
181 |
-
"\n"
|
182 |
-
"lub poniższego kodu do załadowania biblioteki Bootstrap z MaxCDN:\n"
|
183 |
-
"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
|
184 |
-
"\n"
|
185 |
-
"-- Koniec komentarza --> "
|
186 |
|
187 |
-
#: includes/admin-
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
|
191 |
-
#: includes/admin-
|
192 |
-
msgid "Add
|
193 |
-
msgstr "Dodaj
|
194 |
|
195 |
-
#: includes/admin-
|
196 |
-
|
197 |
-
|
|
|
198 |
|
199 |
-
#: includes/admin-
|
200 |
-
msgid "
|
201 |
-
msgstr "
|
202 |
|
203 |
-
#: includes/admin-
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
206 |
|
207 |
-
#: includes/admin-
|
208 |
-
|
209 |
-
|
210 |
-
msgstr "Kod jest nieaktywny. Kliknij tutaj, aby go aktywować"
|
211 |
|
212 |
-
#: includes/admin-
|
213 |
-
|
214 |
-
|
215 |
-
msgstr "Kod jest aktywny. Kliknij tutaj, aby go dezaktywować"
|
216 |
|
217 |
-
#: includes/admin-
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
|
221 |
-
#: includes/admin-
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#: includes/admin-
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#: includes/admin-
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
-
#: includes/admin-
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
|
237 |
-
#: includes/admin-
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#: includes/admin-
|
242 |
-
|
243 |
-
|
244 |
-
msgstr "Czy kod jest aktywny?"
|
245 |
|
246 |
-
#: includes/admin-
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#: includes/admin-screens.php:
|
251 |
-
msgid "Add
|
252 |
-
msgstr "Dodaj
|
253 |
|
254 |
-
#: includes/admin-screens.php:
|
255 |
-
msgid "Add
|
256 |
-
msgstr "Dodaj
|
257 |
|
258 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
msgid "Options"
|
260 |
msgstr "Opcje"
|
261 |
|
262 |
-
#: includes/admin-screens.php:
|
263 |
-
msgid "Add
|
264 |
-
msgstr "Dodaj
|
265 |
|
266 |
-
#: includes/admin-screens.php:
|
267 |
-
msgid "Add
|
268 |
-
msgstr "Dodaj
|
269 |
|
270 |
-
#: includes/admin-screens.php:
|
271 |
-
msgid "Add
|
272 |
-
msgstr "Dodaj
|
273 |
|
274 |
-
#: includes/admin-
|
275 |
-
msgid "
|
276 |
-
msgstr "
|
277 |
|
278 |
-
#: includes/admin-
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: includes/admin-
|
283 |
-
msgid "
|
284 |
-
msgstr "
|
285 |
|
286 |
-
#: includes/admin-
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: includes/admin-
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: includes/admin-
|
295 |
-
msgid "
|
296 |
-
msgstr "
|
297 |
|
298 |
-
#: includes/admin-
|
299 |
-
msgid "
|
300 |
-
msgstr "
|
301 |
|
302 |
-
#: includes/admin-
|
303 |
-
|
304 |
-
|
305 |
-
msgstr "F j, Y @ H:i:s"
|
306 |
|
307 |
-
#: includes/admin-
|
308 |
-
msgid "
|
309 |
-
msgstr "
|
310 |
|
311 |
-
#: includes/admin-
|
312 |
-
msgid "
|
313 |
-
msgstr "
|
314 |
|
315 |
-
#: includes/admin-
|
316 |
-
msgid "
|
317 |
-
msgstr "
|
318 |
|
319 |
-
#: includes/admin-
|
320 |
-
msgid "
|
321 |
-
msgstr "
|
322 |
|
323 |
-
#: includes/admin-
|
324 |
-
|
325 |
-
|
|
|
326 |
|
327 |
-
#: includes/admin-
|
328 |
-
|
329 |
-
|
|
|
330 |
|
331 |
-
#: includes/admin-
|
332 |
-
|
333 |
-
|
|
|
334 |
|
335 |
-
#: includes/admin-
|
336 |
-
msgid "
|
337 |
-
msgstr "
|
338 |
|
339 |
-
#: includes/admin-
|
340 |
-
msgid "
|
341 |
-
msgstr "
|
342 |
|
343 |
-
#: includes/admin-
|
344 |
-
msgid "
|
345 |
-
msgstr "
|
346 |
|
347 |
-
#: includes/admin-
|
348 |
-
msgid "
|
349 |
-
msgstr "
|
350 |
|
351 |
-
#: includes/admin-
|
352 |
-
msgid "
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
-
#: includes/admin-
|
356 |
-
msgid "
|
357 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
|
359 |
-
#: includes/admin-
|
360 |
-
msgid "
|
361 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
|
363 |
-
#: includes/admin-
|
364 |
-
msgid "
|
365 |
-
msgstr "
|
366 |
|
367 |
-
#: includes/admin-
|
368 |
-
msgid "
|
369 |
-
msgstr "
|
370 |
|
371 |
-
#: includes/admin-
|
372 |
-
msgid "
|
373 |
-
msgstr "
|
374 |
|
375 |
-
#:
|
376 |
-
msgid "
|
377 |
-
msgstr "
|
378 |
|
379 |
-
#:
|
380 |
-
msgid "
|
381 |
-
msgstr "
|
382 |
|
383 |
-
#:
|
384 |
-
msgid "
|
385 |
-
msgstr "
|
386 |
|
387 |
-
#:
|
388 |
-
msgid "
|
389 |
-
msgstr "
|
390 |
|
391 |
-
#:
|
392 |
-
msgid "
|
393 |
-
msgstr "
|
394 |
|
395 |
-
#:
|
396 |
-
msgid "
|
397 |
-
msgstr "
|
398 |
|
399 |
-
#:
|
400 |
-
msgid "
|
401 |
-
msgstr "
|
402 |
|
403 |
-
#:
|
404 |
-
msgid "
|
405 |
-
msgstr "
|
406 |
|
407 |
-
#:
|
408 |
-
msgid "
|
409 |
-
msgstr "
|
410 |
|
411 |
-
#:
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
|
415 |
-
#:
|
416 |
-
msgid "
|
417 |
-
msgstr "
|
418 |
|
419 |
-
#:
|
420 |
-
msgid "
|
421 |
-
msgstr "
|
422 |
|
423 |
-
#:
|
424 |
-
|
425 |
-
|
426 |
-
msgstr "Dodaj nową wstawkę"
|
427 |
|
428 |
-
#:
|
429 |
-
|
430 |
-
|
431 |
-
msgstr "Wstawki kodu"
|
432 |
|
433 |
-
#:
|
434 |
-
|
435 |
-
|
436 |
-
msgstr "Custom CSS & JS"
|
437 |
|
438 |
-
#:
|
439 |
-
msgctxt "
|
440 |
-
msgid "
|
441 |
-
msgstr "
|
442 |
|
443 |
-
#:
|
444 |
-
msgctxt "
|
445 |
-
msgid "
|
446 |
-
msgstr "
|
447 |
|
448 |
-
#:
|
449 |
-
msgid "
|
450 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the Plugins - Simple Custom CSS and JS - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest "
|
6 |
+
"release)\n"
|
7 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
|
8 |
+
"svn\n"
|
9 |
+
"POT-Creation-Date: 2018-02-08 19:58:14+00:00\n"
|
10 |
+
"PO-Revision-Date: 2018-02-08 21:14+0100\n"
|
11 |
+
"Last-Translator: Diana Burduja <diana@wootips.com>\n"
|
12 |
+
"Language-Team: \n"
|
13 |
+
"Language: pl\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
18 |
+
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
+
"X-Generator: Poedit 1.6.10\n"
|
|
|
20 |
|
21 |
+
#: custom-css-js.php:53 custom-css-js.php:60
|
22 |
+
msgid "Cheatin’ huh?"
|
23 |
+
msgstr "Kantujesz, co nie? :)"
|
24 |
|
25 |
+
#: custom-css-js.php:220
|
26 |
+
msgctxt "post type general name"
|
27 |
+
msgid "Custom Code"
|
28 |
+
msgstr "Wstawki kodu"
|
29 |
|
30 |
+
#: custom-css-js.php:221
|
31 |
+
msgctxt "post type singular name"
|
32 |
+
msgid "Custom Code"
|
33 |
+
msgstr "Wstawki kodu"
|
34 |
|
35 |
+
#: custom-css-js.php:222
|
36 |
+
msgctxt "admin menu"
|
37 |
+
msgid "Custom CSS & JS"
|
38 |
+
msgstr "Custom CSS & JS"
|
39 |
|
40 |
+
#: custom-css-js.php:223
|
41 |
+
msgctxt "add new on admin bar"
|
42 |
+
msgid "Custom Code"
|
43 |
+
msgstr "Wstawki kodu"
|
44 |
|
45 |
+
#: custom-css-js.php:224
|
46 |
+
msgctxt "add new"
|
47 |
+
msgid "Add Custom Code"
|
48 |
+
msgstr "Dodaj nową wstawkę"
|
49 |
|
50 |
+
#: custom-css-js.php:225
|
51 |
+
msgid "Add Custom Code"
|
52 |
+
msgstr "Dodaj wstawkę"
|
53 |
|
54 |
+
#: custom-css-js.php:226
|
55 |
+
msgid "New Custom Code"
|
56 |
+
msgstr "Nowa wstawka"
|
57 |
|
58 |
+
#: custom-css-js.php:227
|
59 |
+
msgid "Edit Custom Code"
|
60 |
+
msgstr "Edytuj kod"
|
61 |
|
62 |
+
#: custom-css-js.php:228
|
63 |
+
msgid "View Custom Code"
|
64 |
+
msgstr "Zobacz kod"
|
65 |
|
66 |
+
#: custom-css-js.php:229
|
67 |
+
msgid "All Custom Code"
|
68 |
+
msgstr "Wszystkie wstawki"
|
69 |
|
70 |
+
#: custom-css-js.php:230
|
71 |
+
msgid "Search Custom Code"
|
72 |
+
msgstr "Szukaj wstawek"
|
73 |
|
74 |
+
#: custom-css-js.php:231
|
75 |
+
msgid "Parent Custom Code:"
|
76 |
+
msgstr "Kod macierzysty:"
|
77 |
|
78 |
+
#: custom-css-js.php:232
|
79 |
+
msgid "No Custom Code found."
|
80 |
+
msgstr "Nie znaleziono wstawek"
|
81 |
|
82 |
+
#: custom-css-js.php:233
|
83 |
+
msgid "No Custom Code found in Trash."
|
84 |
+
msgstr "Nie znaleziono wstawek w Koszu"
|
|
|
85 |
|
86 |
+
#: custom-css-js.php:254
|
87 |
+
msgid "Custom CSS and JS code"
|
88 |
+
msgstr "Wstawki kodu CSS i JS"
|
|
|
89 |
|
90 |
+
#: custom-css-js.php:299
|
91 |
+
msgid "Web Designer"
|
92 |
+
msgstr "Web Designer"
|
93 |
|
94 |
+
#: custom-css-js.php:394 includes/admin-config.php:58
|
95 |
+
msgid "Settings"
|
96 |
+
msgstr "Ustawienia"
|
97 |
|
98 |
+
#: includes/admin-addons.php:42 includes/admin-screens.php:776
|
99 |
+
msgid "Available only in <br />Simple Custom CSS and JS Pro"
|
100 |
+
msgstr "Dostępne tylko w <br />Simple Custom CSS and JS Pro"
|
101 |
|
102 |
+
#: includes/admin-addons.php:54
|
103 |
+
msgid "Preview"
|
104 |
+
msgstr "Podejrzyj"
|
105 |
|
106 |
+
#: includes/admin-addons.php:55
|
107 |
+
msgid "Apply only on these URLs"
|
108 |
+
msgstr "Zastosuj tylko dla tych adresów URL"
|
109 |
|
110 |
+
#: includes/admin-addons.php:56
|
111 |
+
msgid "Code Revisions"
|
112 |
+
msgstr "Wersje kodu"
|
113 |
|
114 |
+
#: includes/admin-addons.php:67
|
115 |
+
msgid "Full URL on which to preview the changes ..."
|
116 |
+
msgstr "Pełen adres URL na którym chcesz podejrzeć zmiany ..."
|
117 |
|
118 |
+
#: includes/admin-addons.php:68
|
119 |
+
msgid "Preview Changes"
|
120 |
+
msgstr "Podejrzyj zmiany"
|
121 |
|
122 |
+
#: includes/admin-addons.php:82
|
123 |
+
msgid "All Website"
|
124 |
+
msgstr "Cała strona"
|
125 |
|
126 |
+
#: includes/admin-addons.php:83
|
127 |
+
msgid "First page"
|
128 |
+
msgstr "Pierwsza strona"
|
129 |
|
130 |
+
#: includes/admin-addons.php:84
|
131 |
+
msgid "Contains"
|
132 |
+
msgstr "Zawiera"
|
133 |
|
134 |
+
#: includes/admin-addons.php:85
|
135 |
+
msgid "Not contains"
|
136 |
+
msgstr "Nie zawiera"
|
137 |
|
138 |
+
#: includes/admin-addons.php:86
|
139 |
+
msgid "Is equal to"
|
140 |
+
msgstr "Jest równe"
|
141 |
|
142 |
+
#: includes/admin-addons.php:87
|
143 |
+
msgid "Not equal to"
|
144 |
+
msgstr "Nie jest równe"
|
145 |
|
146 |
+
#: includes/admin-addons.php:88
|
147 |
+
msgid "Starts with"
|
148 |
+
msgstr "Zaczyna się na"
|
149 |
|
150 |
+
#: includes/admin-addons.php:89
|
151 |
+
msgid "Ends by"
|
152 |
+
msgstr "Kończy się na"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
|
154 |
+
#: includes/admin-addons.php:100 includes/admin-addons.php:101
|
155 |
+
msgid "URL"
|
156 |
+
msgstr "Adres URL"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
+
#: includes/admin-addons.php:102
|
159 |
+
msgid "Text filter"
|
160 |
+
msgstr "Filtr tekstowy"
|
161 |
|
162 |
+
#: includes/admin-addons.php:103
|
163 |
+
msgid "Add"
|
164 |
+
msgstr "Dodaj"
|
165 |
|
166 |
+
#: includes/admin-addons.php:114
|
167 |
+
msgctxt "revision date format"
|
168 |
+
msgid "F j, Y @ H:i:s"
|
169 |
+
msgstr "F j, Y @ H:i:s"
|
170 |
|
171 |
+
#: includes/admin-addons.php:136 includes/admin-addons.php:169
|
172 |
+
msgid "Compare"
|
173 |
+
msgstr "Porównaj wersje"
|
174 |
|
175 |
+
#: includes/admin-addons.php:137
|
176 |
+
msgid "Revision"
|
177 |
+
msgstr "Wersja"
|
178 |
|
179 |
+
#: includes/admin-addons.php:138 includes/admin-screens.php:283
|
180 |
+
msgid "Author"
|
181 |
+
msgstr "Autor"
|
|
|
182 |
|
183 |
+
#: includes/admin-addons.php:139 includes/admin-addons.php:173
|
184 |
+
msgid "Delete"
|
185 |
+
msgstr "Usuń wersję"
|
|
|
186 |
|
187 |
+
#: includes/admin-addons.php:140 includes/admin-addons.php:163
|
188 |
+
msgid "Restore"
|
189 |
+
msgstr "Przywróć wersję"
|
190 |
|
191 |
+
#: includes/admin-config.php:115
|
192 |
+
msgid "Save"
|
193 |
+
msgstr ""
|
194 |
|
195 |
+
#: includes/admin-config.php:139
|
196 |
+
msgid "Custom CSS & JS Settings"
|
197 |
+
msgstr ""
|
198 |
|
199 |
+
#: includes/admin-config.php:142
|
200 |
+
msgid "Editor Settings"
|
201 |
+
msgstr ""
|
202 |
|
203 |
+
#: includes/admin-config.php:195
|
204 |
+
msgid "Keep the HTML entities, don't convert to its character"
|
205 |
+
msgstr ""
|
206 |
|
207 |
+
#: includes/admin-config.php:200
|
208 |
+
msgid "Encode the HTML entities"
|
209 |
+
msgstr ""
|
210 |
|
211 |
+
#: includes/admin-notices.php:125
|
212 |
+
msgid "Get your discount now"
|
213 |
+
msgstr "Uzyskaj rabat"
|
|
|
214 |
|
215 |
+
#: includes/admin-notices.php:125 includes/admin-notices.php:190
|
216 |
+
msgid "Dismiss this notice"
|
217 |
+
msgstr "Odrzuć wiadomość"
|
218 |
|
219 |
+
#: includes/admin-screens.php:93
|
220 |
+
msgid "Add Custom CSS"
|
221 |
+
msgstr "Dodaj wstawkę CSS"
|
222 |
|
223 |
+
#: includes/admin-screens.php:96
|
224 |
+
msgid "Add Custom JS"
|
225 |
+
msgstr "Dodaj wstawkę JS"
|
226 |
|
227 |
+
#: includes/admin-screens.php:99
|
228 |
+
msgid "Add Custom HTML"
|
229 |
+
msgstr "Dodaj wstawkę HTML"
|
230 |
+
|
231 |
+
#: includes/admin-screens.php:173 includes/admin-screens.php:280
|
232 |
+
#: includes/admin-screens.php:1286
|
233 |
+
msgid "Active"
|
234 |
+
msgstr "Czy kod jest aktywny?"
|
235 |
+
|
236 |
+
#: includes/admin-screens.php:174 includes/admin-screens.php:1289
|
237 |
+
msgid "Inactive"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: includes/admin-screens.php:175 includes/admin-screens.php:1262
|
241 |
+
#: includes/admin-screens.php:1290
|
242 |
+
msgid "Activate"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/admin-screens.php:176 includes/admin-screens.php:1259
|
246 |
+
#: includes/admin-screens.php:1287
|
247 |
+
msgid "Deactivate"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/admin-screens.php:177 includes/admin-screens.php:325
|
251 |
+
#: includes/admin-screens.php:1258
|
252 |
+
msgid "The code is active. Click to deactivate it"
|
253 |
+
msgstr "Kod jest aktywny. Kliknij tutaj, aby go dezaktywować"
|
254 |
+
|
255 |
+
#: includes/admin-screens.php:178 includes/admin-screens.php:328
|
256 |
+
#: includes/admin-screens.php:1261
|
257 |
+
msgid "The code is inactive. Click to activate it"
|
258 |
+
msgstr "Kod jest nieaktywny. Kliknij tutaj, aby go aktywować"
|
259 |
+
|
260 |
+
#: includes/admin-screens.php:204
|
261 |
msgid "Options"
|
262 |
msgstr "Opcje"
|
263 |
|
264 |
+
#: includes/admin-screens.php:264
|
265 |
+
msgid "Add CSS code"
|
266 |
+
msgstr "Dodaj kod CSS"
|
267 |
|
268 |
+
#: includes/admin-screens.php:265
|
269 |
+
msgid "Add JS code"
|
270 |
+
msgstr "Dodaj kod JS"
|
271 |
|
272 |
+
#: includes/admin-screens.php:266
|
273 |
+
msgid "Add HTML code"
|
274 |
+
msgstr "Dodaj kod HTML"
|
275 |
|
276 |
+
#: includes/admin-screens.php:281
|
277 |
+
msgid "Type"
|
278 |
+
msgstr "Typ kodu"
|
279 |
|
280 |
+
#: includes/admin-screens.php:282
|
281 |
+
msgid "Title"
|
282 |
+
msgstr "Tytuł"
|
283 |
|
284 |
+
#: includes/admin-screens.php:284
|
285 |
+
msgid "Date"
|
286 |
+
msgstr "Data utworzenia"
|
287 |
|
288 |
+
#: includes/admin-screens.php:285
|
289 |
+
msgid "Modified"
|
290 |
+
msgstr "Data modyfikacji"
|
291 |
|
292 |
+
#: includes/admin-screens.php:314
|
293 |
+
msgid "%s ago"
|
294 |
+
msgstr "%s temu"
|
295 |
|
296 |
+
#: includes/admin-screens.php:316
|
297 |
+
msgid "Y/m/d"
|
298 |
+
msgstr "Y/m/d"
|
299 |
|
300 |
+
#: includes/admin-screens.php:386
|
301 |
+
msgid "CSS Codes"
|
302 |
+
msgstr ""
|
303 |
|
304 |
+
#: includes/admin-screens.php:387
|
305 |
+
msgid "JS Codes"
|
306 |
+
msgstr ""
|
|
|
307 |
|
308 |
+
#: includes/admin-screens.php:388
|
309 |
+
msgid "HTML Codes"
|
310 |
+
msgstr ""
|
311 |
|
312 |
+
#: includes/admin-screens.php:391
|
313 |
+
msgid "Filter Code Type"
|
314 |
+
msgstr ""
|
315 |
|
316 |
+
#: includes/admin-screens.php:393
|
317 |
+
msgid "All Custom Codes"
|
318 |
+
msgstr ""
|
319 |
|
320 |
+
#: includes/admin-screens.php:448
|
321 |
+
msgid "Custom Code"
|
322 |
+
msgstr "Wstawki kodu"
|
323 |
|
324 |
+
#: includes/admin-screens.php:449 includes/admin-screens.php:468
|
325 |
+
#: includes/admin-screens.php:489
|
326 |
+
msgid "Add CSS Code"
|
327 |
+
msgstr "Dodaj kod CSS"
|
328 |
|
329 |
+
#: includes/admin-screens.php:450 includes/admin-screens.php:469
|
330 |
+
#: includes/admin-screens.php:490
|
331 |
+
msgid "Add JS Code"
|
332 |
+
msgstr "Dodaj kod JS"
|
333 |
|
334 |
+
#: includes/admin-screens.php:451 includes/admin-screens.php:470
|
335 |
+
#: includes/admin-screens.php:491
|
336 |
+
msgid "Add HTML Code"
|
337 |
+
msgstr "Dodaj kod HTML"
|
338 |
|
339 |
+
#: includes/admin-screens.php:471
|
340 |
+
msgid "Edit CSS Code"
|
341 |
+
msgstr ""
|
342 |
|
343 |
+
#: includes/admin-screens.php:472
|
344 |
+
msgid "Edit JS Code"
|
345 |
+
msgstr ""
|
346 |
|
347 |
+
#: includes/admin-screens.php:473
|
348 |
+
msgid "Edit HTML Code"
|
349 |
+
msgstr ""
|
350 |
|
351 |
+
#: includes/admin-screens.php:499
|
352 |
+
msgid "Code updated"
|
353 |
+
msgstr "Kod wstawki zaktualizowany"
|
354 |
|
355 |
+
#: includes/admin-screens.php:612
|
356 |
+
msgid ""
|
357 |
+
"/* Add your JavaScript code here.\n"
|
358 |
+
"\n"
|
359 |
+
"If you are using the jQuery library, then don't forget to wrap your code "
|
360 |
+
"inside jQuery.ready() as follows:\n"
|
361 |
+
"\n"
|
362 |
+
"jQuery(document).ready(function( $ ){\n"
|
363 |
+
" // Your code in here\n"
|
364 |
+
"});\n"
|
365 |
+
"\n"
|
366 |
+
"--\n"
|
367 |
+
"\n"
|
368 |
+
"If you want to link a JavaScript file that resides on another server "
|
369 |
+
"(similar to\n"
|
370 |
+
"<script src=\"https://example.com/your-js-file.js\"></script>), then please "
|
371 |
+
"use\n"
|
372 |
+
"the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript "
|
373 |
+
"file.\n"
|
374 |
+
"\n"
|
375 |
+
"End of comment */ "
|
376 |
+
msgstr ""
|
377 |
|
378 |
+
#: includes/admin-screens.php:634
|
379 |
+
msgid ""
|
380 |
+
"<!-- Add HTML code to the header or the footer.\n"
|
381 |
+
"\n"
|
382 |
+
"For example, you can use the following code for loading the jQuery library "
|
383 |
+
"from Google CDN:\n"
|
384 |
+
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min."
|
385 |
+
"js\"></script>\n"
|
386 |
+
"\n"
|
387 |
+
"or the following one for loading the Bootstrap library from MaxCDN:\n"
|
388 |
+
"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/"
|
389 |
+
"bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-"
|
390 |
+
"BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" "
|
391 |
+
"crossorigin=\"anonymous\">\n"
|
392 |
+
"\n"
|
393 |
+
"-- End of the comment --> "
|
394 |
+
msgstr ""
|
395 |
|
396 |
+
#: includes/admin-screens.php:660
|
397 |
+
msgid ""
|
398 |
+
"/* Add your CSS code here.\n"
|
399 |
+
"\n"
|
400 |
+
"For example:\n"
|
401 |
+
".example {\n"
|
402 |
+
" color: red;\n"
|
403 |
+
"}\n"
|
404 |
+
"\n"
|
405 |
+
"For brushing up on your CSS knowledge, check out http://www.w3schools.com/"
|
406 |
+
"css/css_syntax.asp\n"
|
407 |
+
"\n"
|
408 |
+
"End of comment */ "
|
409 |
+
msgstr ""
|
410 |
|
411 |
+
#: includes/admin-screens.php:692
|
412 |
+
msgid "Last edited by %1$s on %2$s at %3$s"
|
413 |
+
msgstr ""
|
414 |
|
415 |
+
#: includes/admin-screens.php:694
|
416 |
+
msgid "Last edited on %1$s at %2$s"
|
417 |
+
msgstr ""
|
418 |
|
419 |
+
#: includes/admin-screens.php:791
|
420 |
+
msgid "Linking type"
|
421 |
+
msgstr "Linkowanie"
|
422 |
|
423 |
+
#: includes/admin-screens.php:796
|
424 |
+
msgid "External File"
|
425 |
+
msgstr "Zewnętrzny plik"
|
426 |
|
427 |
+
#: includes/admin-screens.php:800
|
428 |
+
msgid "Internal"
|
429 |
+
msgstr "Wewnętrzne"
|
430 |
|
431 |
+
#: includes/admin-screens.php:806 includes/admin-screens.php:894
|
432 |
+
msgid "Where on page"
|
433 |
+
msgstr "Gdzie w kodzie strony"
|
434 |
|
435 |
+
#: includes/admin-screens.php:811 includes/admin-screens.php:899
|
436 |
+
msgid "Header"
|
437 |
+
msgstr "Nagłówek"
|
438 |
|
439 |
+
#: includes/admin-screens.php:815 includes/admin-screens.php:903
|
440 |
+
msgid "Footer"
|
441 |
+
msgstr "Stopka"
|
442 |
|
443 |
+
#: includes/admin-screens.php:821 includes/admin-screens.php:909
|
444 |
+
msgid "Where in site"
|
445 |
+
msgstr "Gdzie na stronie"
|
446 |
|
447 |
+
#: includes/admin-screens.php:826 includes/admin-screens.php:914
|
448 |
+
msgid "In Frontend"
|
449 |
+
msgstr "Witryna"
|
450 |
|
451 |
+
#: includes/admin-screens.php:830 includes/admin-screens.php:918
|
452 |
+
msgid "In Admin"
|
453 |
+
msgstr "Panel admina"
|
454 |
|
455 |
+
#: includes/admin-screens.php:834
|
456 |
+
msgid "On Login Page"
|
457 |
+
msgstr ""
|
458 |
|
459 |
+
#: includes/admin-screens.php:840
|
460 |
+
msgid "CSS Preprocessor"
|
461 |
+
msgstr "Preprocesor CSS"
|
462 |
|
463 |
+
#: includes/admin-screens.php:845
|
464 |
+
msgid "None"
|
465 |
+
msgstr "Brak"
|
466 |
|
467 |
+
#: includes/admin-screens.php:848
|
468 |
+
msgid "Less"
|
469 |
+
msgstr "Less"
|
470 |
|
471 |
+
#: includes/admin-screens.php:851
|
472 |
+
msgid "SASS (only SCSS syntax)"
|
473 |
+
msgstr "SASS (tylko składnia SCSS)"
|
|
|
474 |
|
475 |
+
#: includes/admin-screens.php:857
|
476 |
+
msgid "Minify the code"
|
477 |
+
msgstr "Zredukuj kod"
|
|
|
478 |
|
479 |
+
#: includes/admin-screens.php:864 includes/admin-screens.php:945
|
480 |
+
msgid "Priority"
|
481 |
+
msgstr "Priorytet"
|
|
|
482 |
|
483 |
+
#: includes/admin-screens.php:869 includes/admin-screens.php:950
|
484 |
+
msgctxt "1 is the highest priority"
|
485 |
+
msgid "1 (highest)"
|
486 |
+
msgstr "1 (najwyższy)"
|
487 |
|
488 |
+
#: includes/admin-screens.php:878 includes/admin-screens.php:959
|
489 |
+
msgctxt "10 is the lowest priority"
|
490 |
+
msgid "10 (lowest)"
|
491 |
+
msgstr "10 (najniższy)"
|
492 |
|
493 |
+
#: includes/admin-screens.php:924
|
494 |
+
msgid "On which device"
|
495 |
+
msgstr "Na jakim urządzeniu"
|
496 |
+
|
497 |
+
#: includes/admin-screens.php:930
|
498 |
+
msgid "Desktop"
|
499 |
+
msgstr "Komputer stacjonarny"
|
500 |
+
|
501 |
+
#: includes/admin-screens.php:934
|
502 |
+
msgid "Mobile"
|
503 |
+
msgstr "Urządzenia mobilne"
|
504 |
+
|
505 |
+
#: includes/admin-screens.php:938
|
506 |
+
msgid "Both"
|
507 |
+
msgstr "Oba urządzenia"
|
508 |
+
|
509 |
+
#: includes/admin-screens.php:1096
|
510 |
+
msgid "The %s directory could not be created"
|
511 |
+
msgstr "Folder %s nie mógł zostać utworzony"
|
512 |
+
|
513 |
+
#: includes/admin-screens.php:1097
|
514 |
+
msgid "Please run the following commands in order to make the directory"
|
515 |
+
msgstr "Uruchom proszę poniższe komendy aby utworzyć folder"
|
516 |
+
|
517 |
+
#: includes/admin-screens.php:1105
|
518 |
+
msgid ""
|
519 |
+
"The %s directory is not writable, therefore the CSS and JS files cannot be "
|
520 |
+
"saved."
|
521 |
+
msgstr ""
|
522 |
+
"Katalog %s nie umożliwia zapisu, dlatego pliki CSS oraz JS nie mogą zostać "
|
523 |
+
"zapisane."
|
524 |
+
|
525 |
+
#: includes/admin-screens.php:1106
|
526 |
+
msgid "Please run the following command to make the directory writable"
|
527 |
+
msgstr "Proszę wykonaj poniższą komendę, aby uczynić katalog zapisywalnym"
|
528 |
+
|
529 |
+
#: includes/admin-warnings.php:55
|
530 |
+
msgid ""
|
531 |
+
"Please remove the <b>custom-css-js</b> post type from the <b>qTranslate "
|
532 |
+
"settings</b> in order to avoid some malfunctions in the Simple Custom CSS & "
|
533 |
+
"JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> "
|
534 |
+
"for more details on how to do that."
|
535 |
+
msgstr ""
|
536 |
+
"Proszę usuń typ postu <b>custom-css-js</b> z <b>ustawień qTranslate</b>, aby "
|
537 |
+
"uniknąć problemów z zapisywaniem wstawek we wtyczce Simple Custom CSS & JS. "
|
538 |
+
"Zobacz <a href=\"%s\" target=\"_blank\">ten zrzut ekranu</a> by dowiedzieć "
|
539 |
+
"się, jak to zrobić."
|
540 |
+
|
541 |
+
#. Plugin Name of the plugin/theme
|
542 |
+
msgid "Simple Custom CSS and JS"
|
543 |
+
msgstr "Simple Custom CSS and JS"
|
544 |
+
|
545 |
+
#. Plugin URI of the plugin/theme
|
546 |
+
msgid "https://wordpress.org/plugins/custom-css-js/"
|
547 |
+
msgstr "https://pl.wordpress.org/plugins/custom-css-js/"
|
548 |
+
|
549 |
+
#. Description of the plugin/theme
|
550 |
+
msgid "Easily add Custom CSS or JS to your website with an awesome editor."
|
551 |
+
msgstr ""
|
552 |
+
"Dodawaj wstawki z własnym kodem CSS lub JS do swojej strony w łatwy sposób z "
|
553 |
+
"użyciem wygodnego edytora."
|
554 |
+
|
555 |
+
#. Author of the plugin/theme
|
556 |
+
msgid "Diana Burduja"
|
557 |
+
msgstr "Diana Burduja"
|
558 |
+
|
559 |
+
#. Author URI of the plugin/theme
|
560 |
+
msgid "https://www.silkypress.com/"
|
561 |
+
msgstr "https://www.silkypress.com/"
|
languages/custom-css-js-tr_TR.mo
CHANGED
Binary file
|
languages/custom-css-js-tr_TR.po
CHANGED
@@ -5,95 +5,95 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Simple Custom CSS and JS 3.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
|
7 |
"svn\n"
|
8 |
-
"POT-Creation-Date:
|
|
|
|
|
|
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"Language-Team: \n"
|
14 |
-
"X-Generator: Poedit 2.0.3\n"
|
15 |
-
"Last-Translator: Adnan Uludag <auludag@mac.com>\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"Language: tr_TR\n"
|
18 |
|
19 |
-
#: custom-css-js.php:
|
20 |
msgid "Cheatin’ huh?"
|
21 |
msgstr "Kandırıkçılık ha?"
|
22 |
|
23 |
-
#: custom-css-js.php:
|
24 |
msgctxt "post type general name"
|
25 |
msgid "Custom Code"
|
26 |
msgstr "Özel Kod"
|
27 |
|
28 |
-
#: custom-css-js.php:
|
29 |
msgctxt "post type singular name"
|
30 |
msgid "Custom Code"
|
31 |
msgstr "Özel Kod"
|
32 |
|
33 |
-
#: custom-css-js.php:
|
34 |
msgctxt "admin menu"
|
35 |
msgid "Custom CSS & JS"
|
36 |
msgstr "Özel CSS & JS"
|
37 |
|
38 |
-
#: custom-css-js.php:
|
39 |
msgctxt "add new on admin bar"
|
40 |
msgid "Custom Code"
|
41 |
msgstr "Özel Kod"
|
42 |
|
43 |
-
#: custom-css-js.php:
|
44 |
msgctxt "add new"
|
45 |
msgid "Add Custom Code"
|
46 |
msgstr "Özel Kod Ekle"
|
47 |
|
48 |
-
#: custom-css-js.php:
|
49 |
msgid "Add Custom Code"
|
50 |
msgstr "Özel Kod Ekle"
|
51 |
|
52 |
-
#: custom-css-js.php:
|
53 |
msgid "New Custom Code"
|
54 |
msgstr "Yeni Özel Kod"
|
55 |
|
56 |
-
#: custom-css-js.php:
|
57 |
msgid "Edit Custom Code"
|
58 |
msgstr "Özel Kodu Düzenle"
|
59 |
|
60 |
-
#: custom-css-js.php:
|
61 |
msgid "View Custom Code"
|
62 |
msgstr "Özel Kodu Görüntüle"
|
63 |
|
64 |
-
#: custom-css-js.php:
|
65 |
msgid "All Custom Code"
|
66 |
msgstr "Tüm Özel Kodlar"
|
67 |
|
68 |
-
#: custom-css-js.php:
|
69 |
msgid "Search Custom Code"
|
70 |
msgstr "Özel Kod ara"
|
71 |
|
72 |
-
#: custom-css-js.php:
|
73 |
msgid "Parent Custom Code:"
|
74 |
msgstr "Ana Özel Kod:"
|
75 |
|
76 |
-
#: custom-css-js.php:
|
77 |
msgid "No Custom Code found."
|
78 |
msgstr "Özel Kod bulunmadı."
|
79 |
|
80 |
-
#: custom-css-js.php:
|
81 |
msgid "No Custom Code found in Trash."
|
82 |
msgstr "Çöp kutusunda özel kod bulunmadı."
|
83 |
|
84 |
-
#: custom-css-js.php:
|
85 |
msgid "Custom CSS and JS code"
|
86 |
msgstr "Özel CSS ve JS Kodu"
|
87 |
|
88 |
-
#: custom-css-js.php:
|
89 |
msgid "Web Designer"
|
90 |
msgstr "Web Tasarımcı"
|
91 |
|
92 |
-
#: custom-css-js.php:
|
93 |
msgid "Settings"
|
94 |
msgstr "Ayarlar"
|
95 |
|
96 |
-
#: includes/admin-addons.php:42 includes/admin-screens.php:
|
97 |
msgid "Available only in <br />Simple Custom CSS and JS Pro"
|
98 |
msgstr "Sadece <br />Simple Custom CSS and JS Pro<br />versiyonunda mevcut"
|
99 |
|
@@ -174,7 +174,7 @@ msgstr "Karşılaştır"
|
|
174 |
msgid "Revision"
|
175 |
msgstr "Revizyon"
|
176 |
|
177 |
-
#: includes/admin-addons.php:138 includes/admin-screens.php:
|
178 |
msgid "Author"
|
179 |
msgstr "Yazar"
|
180 |
|
@@ -186,6 +186,26 @@ msgstr "Sil"
|
|
186 |
msgid "Restore"
|
187 |
msgstr "Geri yükle"
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
#: includes/admin-notices.php:125
|
190 |
msgid "Get your discount now"
|
191 |
msgstr "Şimdi indirimi al"
|
@@ -194,121 +214,168 @@ msgstr "Şimdi indirimi al"
|
|
194 |
msgid "Dismiss this notice"
|
195 |
msgstr "Bu uyarıyı yoksay"
|
196 |
|
197 |
-
#: includes/admin-screens.php:
|
198 |
msgid "Add Custom CSS"
|
199 |
msgstr "Özel CSS Ekle"
|
200 |
|
201 |
-
#: includes/admin-screens.php:
|
202 |
msgid "Add Custom JS"
|
203 |
msgstr "Özel JS Ekle"
|
204 |
|
205 |
-
#: includes/admin-screens.php:
|
206 |
msgid "Add Custom HTML"
|
207 |
msgstr "Özel HTML Ekle"
|
208 |
|
209 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
msgid "Options"
|
211 |
msgstr "Seçenekler"
|
212 |
|
213 |
-
#: includes/admin-screens.php:
|
214 |
msgid "Add CSS code"
|
215 |
msgstr "CSS Kodu ekle"
|
216 |
|
217 |
-
#: includes/admin-screens.php:
|
218 |
msgid "Add JS code"
|
219 |
msgstr "JS Kodu ekle"
|
220 |
|
221 |
-
#: includes/admin-screens.php:
|
222 |
msgid "Add HTML code"
|
223 |
msgstr "HTML Kodu ekle"
|
224 |
|
225 |
-
#: includes/admin-screens.php:
|
226 |
-
msgid "Active"
|
227 |
-
msgstr "Aktif"
|
228 |
-
|
229 |
-
#: includes/admin-screens.php:266
|
230 |
msgid "Type"
|
231 |
msgstr "Çeşidi"
|
232 |
|
233 |
-
#: includes/admin-screens.php:
|
234 |
msgid "Title"
|
235 |
msgstr "Başlık"
|
236 |
|
237 |
-
#: includes/admin-screens.php:
|
238 |
msgid "Date"
|
239 |
msgstr "Tarih"
|
240 |
|
241 |
-
#: includes/admin-screens.php:
|
242 |
msgid "Modified"
|
243 |
msgstr "Değiştirilme"
|
244 |
|
245 |
-
#: includes/admin-screens.php:
|
246 |
msgid "%s ago"
|
247 |
msgstr "%s önce"
|
248 |
|
249 |
-
#: includes/admin-screens.php:
|
250 |
msgid "Y/m/d"
|
251 |
msgstr "Y/m/d"
|
252 |
|
253 |
-
#: includes/admin-screens.php:
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: includes/admin-screens.php:
|
258 |
-
msgid "
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: includes/admin-screens.php:
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
264 |
|
265 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
msgid "Custom Code"
|
267 |
msgstr "Özel Kod"
|
268 |
|
269 |
-
#: includes/admin-screens.php:
|
|
|
270 |
msgid "Add CSS Code"
|
271 |
msgstr "CSS Kodu Ekle"
|
272 |
|
273 |
-
#: includes/admin-screens.php:
|
|
|
274 |
msgid "Add JS Code"
|
275 |
msgstr "JS Kodu Ekle"
|
276 |
|
277 |
-
#: includes/admin-screens.php:
|
|
|
278 |
msgid "Add HTML Code"
|
279 |
msgstr "HTML Kodu Ekle"
|
280 |
|
281 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Code updated"
|
283 |
msgstr "Kod güncellendi"
|
284 |
|
285 |
-
#: includes/admin-screens.php:
|
286 |
msgid ""
|
287 |
"/* Add your JavaScript code here.\n"
|
288 |
-
"
|
289 |
"If you are using the jQuery library, then don't forget to wrap your code "
|
290 |
"inside jQuery.ready() as follows:\n"
|
291 |
"\n"
|
292 |
"jQuery(document).ready(function( $ ){\n"
|
293 |
-
" // Your code in here
|
294 |
"});\n"
|
295 |
"\n"
|
296 |
-
"
|
297 |
-
msgstr ""
|
298 |
-
"/* Javascript kodunuzu buraya ekleyiniz..\n"
|
299 |
-
" \n"
|
300 |
-
"Eğer jQuery kutuphanesi kullaniyorsaniz, kodunuzu asagidaki gibi jQuery."
|
301 |
-
"ready() icine koymayi unutmayiniz:\n"
|
302 |
"\n"
|
303 |
-
"
|
304 |
-
"
|
305 |
-
"
|
|
|
|
|
|
|
306 |
"\n"
|
307 |
-
"
|
|
|
308 |
|
309 |
-
#: includes/admin-screens.php:
|
310 |
msgid ""
|
311 |
-
"<!-- Add HTML code to the header or the footer
|
312 |
"\n"
|
313 |
"For example, you can use the following code for loading the jQuery library "
|
314 |
"from Google CDN:\n"
|
@@ -323,27 +390,11 @@ msgid ""
|
|
323 |
"\n"
|
324 |
"-- End of the comment --> "
|
325 |
msgstr ""
|
326 |
-
"<!-- HTML kodunu sayfa üstbaşlığına (header) veya sayfa altbaşlığına "
|
327 |
-
"ekler. \n"
|
328 |
-
"\n"
|
329 |
-
"Örnegin, Google CDN den jQuery kutuphanesini cagirmak icin asagidaki kodu "
|
330 |
-
"kullanabilirsiniz:\n"
|
331 |
-
"<script src=“https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min."
|
332 |
-
"js”></script>\n"
|
333 |
-
"\n"
|
334 |
-
"veya MaxCDN den Bootstrap kutuphanesini cagirmak icin asagidakini "
|
335 |
-
"kullanabilirsiniz:\n"
|
336 |
-
"<link rel=“stylesheet” href=“https://maxcdn.bootstrapcdn.com/"
|
337 |
-
"bootstrap/3.3.7/css/bootstrap.min.css” integrity=“sha384-"
|
338 |
-
"BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u” "
|
339 |
-
"crossorigin=“anonymous”>\n"
|
340 |
-
"\n"
|
341 |
-
" -- Yorum Sonu --> "
|
342 |
|
343 |
-
#: includes/admin-screens.php:
|
344 |
msgid ""
|
345 |
"/* Add your CSS code here.\n"
|
346 |
-
"
|
347 |
"For example:\n"
|
348 |
".example {\n"
|
349 |
" color: red;\n"
|
@@ -354,120 +405,121 @@ msgid ""
|
|
354 |
"\n"
|
355 |
"End of comment */ "
|
356 |
msgstr ""
|
357 |
-
"/* CSS kodunuzu buraya ekleyiniz.\n"
|
358 |
-
" \n"
|
359 |
-
"Ornegin :\n"
|
360 |
-
".ornek {\n"
|
361 |
-
" color: red;\n"
|
362 |
-
"}\n"
|
363 |
-
"\n"
|
364 |
-
"CSS bilgilerinizi parlatmak icin, suraya bakiniz: http://www.w3schools.com/"
|
365 |
-
"css/css_syntax.asp\n"
|
366 |
-
"\n"
|
367 |
-
"yorum sonu*/ "
|
368 |
|
369 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
msgid "Linking type"
|
371 |
msgstr "Linkleme çeşidi"
|
372 |
|
373 |
-
#: includes/admin-screens.php:
|
374 |
msgid "External File"
|
375 |
msgstr "Harici Dosya"
|
376 |
|
377 |
-
#: includes/admin-screens.php:
|
378 |
msgid "Internal"
|
379 |
msgstr "Dahili"
|
380 |
|
381 |
-
#: includes/admin-screens.php:
|
382 |
msgid "Where on page"
|
383 |
msgstr "Sayfanın neresinde"
|
384 |
|
385 |
-
#: includes/admin-screens.php:
|
386 |
msgid "Header"
|
387 |
msgstr "Üstbaşlık (Header)"
|
388 |
|
389 |
-
#: includes/admin-screens.php:
|
390 |
msgid "Footer"
|
391 |
msgstr "Altbaşlık (Footer)"
|
392 |
|
393 |
-
#: includes/admin-screens.php:
|
394 |
msgid "Where in site"
|
395 |
msgstr "Sitede nerede"
|
396 |
|
397 |
-
#: includes/admin-screens.php:
|
398 |
msgid "In Frontend"
|
399 |
msgstr "Önyüzde"
|
400 |
|
401 |
-
#: includes/admin-screens.php:
|
402 |
msgid "In Admin"
|
403 |
msgstr "Yönetici panelinde"
|
404 |
|
405 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
406 |
msgid "CSS Preprocessor"
|
407 |
msgstr "CSS Önişleyici"
|
408 |
|
409 |
-
#: includes/admin-screens.php:
|
410 |
msgid "None"
|
411 |
msgstr "Yok"
|
412 |
|
413 |
-
#: includes/admin-screens.php:
|
414 |
msgid "Less"
|
415 |
msgstr "Less"
|
416 |
|
417 |
-
#: includes/admin-screens.php:
|
418 |
msgid "SASS (only SCSS syntax)"
|
419 |
msgstr "SASS (sadece SCSS yazımı)"
|
420 |
|
421 |
-
#: includes/admin-screens.php:
|
422 |
msgid "Minify the code"
|
423 |
msgstr "Kodu küçült"
|
424 |
|
425 |
-
#: includes/admin-screens.php:
|
426 |
msgid "Priority"
|
427 |
msgstr "Öncelik"
|
428 |
|
429 |
-
#: includes/admin-screens.php:
|
430 |
msgctxt "1 is the highest priority"
|
431 |
msgid "1 (highest)"
|
432 |
msgstr "1 (En yüksek)"
|
433 |
|
434 |
-
#: includes/admin-screens.php:
|
435 |
msgctxt "10 is the lowest priority"
|
436 |
msgid "10 (lowest)"
|
437 |
msgstr "10 (en düşük)"
|
438 |
|
439 |
-
#: includes/admin-screens.php:
|
440 |
msgid "On which device"
|
441 |
msgstr "Hangi cihazlarda"
|
442 |
|
443 |
-
#: includes/admin-screens.php:
|
444 |
msgid "Desktop"
|
445 |
msgstr "Masaüstü"
|
446 |
|
447 |
-
#: includes/admin-screens.php:
|
448 |
msgid "Mobile"
|
449 |
msgstr "Mobil"
|
450 |
|
451 |
-
#: includes/admin-screens.php:
|
452 |
msgid "Both"
|
453 |
msgstr "Her ikisi"
|
454 |
|
455 |
-
#: includes/admin-screens.php:
|
456 |
msgid "The %s directory could not be created"
|
457 |
msgstr "%s klasörü oluşturulamadı"
|
458 |
|
459 |
-
#: includes/admin-screens.php:
|
460 |
msgid "Please run the following commands in order to make the directory"
|
461 |
msgstr "Klasör oluşturmak için lütfen aşağıdaki komutları çalıştırın"
|
462 |
|
463 |
-
#: includes/admin-screens.php:
|
464 |
msgid ""
|
465 |
"The %s directory is not writable, therefore the CSS and JS files cannot be "
|
466 |
"saved."
|
467 |
msgstr ""
|
468 |
"%s klasörü yazılabilir değil, o yüzden CSS ve JS dosyaları kaydedilemedi."
|
469 |
|
470 |
-
#: includes/admin-screens.php:
|
471 |
msgid "Please run the following command to make the directory writable"
|
472 |
msgstr "Lütfen klasörü yazılabilir yapmak için aşağıdaki komutu çalıştırın"
|
473 |
|
@@ -483,6 +535,10 @@ msgstr ""
|
|
483 |
"kaldırınız. Bunu nasıl yapacağınızın detayları hakkında <a href=“%s” "
|
484 |
"target=“_blank”>bu ekran görüntüsüne </a> bakınız."
|
485 |
|
|
|
|
|
|
|
|
|
486 |
#. Plugin URI of the plugin/theme
|
487 |
msgid "https://wordpress.org/plugins/custom-css-js/"
|
488 |
msgstr "https://wordpress.org/plugins/custom-css-js/"
|
@@ -499,3 +555,6 @@ msgstr "Diana Burduja"
|
|
499 |
#. Author URI of the plugin/theme
|
500 |
msgid "https://www.silkypress.com/"
|
501 |
msgstr "https://www.silkypress.com/"
|
|
|
|
|
|
5 |
"Project-Id-Version: Simple Custom CSS and JS 3.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
|
7 |
"svn\n"
|
8 |
+
"POT-Creation-Date: 2018-02-08 19:58:14+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-02-08 21:12+0100\n"
|
10 |
+
"Last-Translator: Diana Burduja <diana@wootips.com>\n"
|
11 |
+
"Language-Team: \n"
|
12 |
+
"Language: tr_TR\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"X-Generator: Poedit 1.6.10\n"
|
|
|
|
|
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
18 |
|
19 |
+
#: custom-css-js.php:53 custom-css-js.php:60
|
20 |
msgid "Cheatin’ huh?"
|
21 |
msgstr "Kandırıkçılık ha?"
|
22 |
|
23 |
+
#: custom-css-js.php:220
|
24 |
msgctxt "post type general name"
|
25 |
msgid "Custom Code"
|
26 |
msgstr "Özel Kod"
|
27 |
|
28 |
+
#: custom-css-js.php:221
|
29 |
msgctxt "post type singular name"
|
30 |
msgid "Custom Code"
|
31 |
msgstr "Özel Kod"
|
32 |
|
33 |
+
#: custom-css-js.php:222
|
34 |
msgctxt "admin menu"
|
35 |
msgid "Custom CSS & JS"
|
36 |
msgstr "Özel CSS & JS"
|
37 |
|
38 |
+
#: custom-css-js.php:223
|
39 |
msgctxt "add new on admin bar"
|
40 |
msgid "Custom Code"
|
41 |
msgstr "Özel Kod"
|
42 |
|
43 |
+
#: custom-css-js.php:224
|
44 |
msgctxt "add new"
|
45 |
msgid "Add Custom Code"
|
46 |
msgstr "Özel Kod Ekle"
|
47 |
|
48 |
+
#: custom-css-js.php:225
|
49 |
msgid "Add Custom Code"
|
50 |
msgstr "Özel Kod Ekle"
|
51 |
|
52 |
+
#: custom-css-js.php:226
|
53 |
msgid "New Custom Code"
|
54 |
msgstr "Yeni Özel Kod"
|
55 |
|
56 |
+
#: custom-css-js.php:227
|
57 |
msgid "Edit Custom Code"
|
58 |
msgstr "Özel Kodu Düzenle"
|
59 |
|
60 |
+
#: custom-css-js.php:228
|
61 |
msgid "View Custom Code"
|
62 |
msgstr "Özel Kodu Görüntüle"
|
63 |
|
64 |
+
#: custom-css-js.php:229
|
65 |
msgid "All Custom Code"
|
66 |
msgstr "Tüm Özel Kodlar"
|
67 |
|
68 |
+
#: custom-css-js.php:230
|
69 |
msgid "Search Custom Code"
|
70 |
msgstr "Özel Kod ara"
|
71 |
|
72 |
+
#: custom-css-js.php:231
|
73 |
msgid "Parent Custom Code:"
|
74 |
msgstr "Ana Özel Kod:"
|
75 |
|
76 |
+
#: custom-css-js.php:232
|
77 |
msgid "No Custom Code found."
|
78 |
msgstr "Özel Kod bulunmadı."
|
79 |
|
80 |
+
#: custom-css-js.php:233
|
81 |
msgid "No Custom Code found in Trash."
|
82 |
msgstr "Çöp kutusunda özel kod bulunmadı."
|
83 |
|
84 |
+
#: custom-css-js.php:254
|
85 |
msgid "Custom CSS and JS code"
|
86 |
msgstr "Özel CSS ve JS Kodu"
|
87 |
|
88 |
+
#: custom-css-js.php:299
|
89 |
msgid "Web Designer"
|
90 |
msgstr "Web Tasarımcı"
|
91 |
|
92 |
+
#: custom-css-js.php:394 includes/admin-config.php:58
|
93 |
msgid "Settings"
|
94 |
msgstr "Ayarlar"
|
95 |
|
96 |
+
#: includes/admin-addons.php:42 includes/admin-screens.php:776
|
97 |
msgid "Available only in <br />Simple Custom CSS and JS Pro"
|
98 |
msgstr "Sadece <br />Simple Custom CSS and JS Pro<br />versiyonunda mevcut"
|
99 |
|
174 |
msgid "Revision"
|
175 |
msgstr "Revizyon"
|
176 |
|
177 |
+
#: includes/admin-addons.php:138 includes/admin-screens.php:283
|
178 |
msgid "Author"
|
179 |
msgstr "Yazar"
|
180 |
|
186 |
msgid "Restore"
|
187 |
msgstr "Geri yükle"
|
188 |
|
189 |
+
#: includes/admin-config.php:115
|
190 |
+
msgid "Save"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/admin-config.php:139
|
194 |
+
msgid "Custom CSS & JS Settings"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/admin-config.php:142
|
198 |
+
msgid "Editor Settings"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/admin-config.php:195
|
202 |
+
msgid "Keep the HTML entities, don't convert to its character"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/admin-config.php:200
|
206 |
+
msgid "Encode the HTML entities"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
#: includes/admin-notices.php:125
|
210 |
msgid "Get your discount now"
|
211 |
msgstr "Şimdi indirimi al"
|
214 |
msgid "Dismiss this notice"
|
215 |
msgstr "Bu uyarıyı yoksay"
|
216 |
|
217 |
+
#: includes/admin-screens.php:93
|
218 |
msgid "Add Custom CSS"
|
219 |
msgstr "Özel CSS Ekle"
|
220 |
|
221 |
+
#: includes/admin-screens.php:96
|
222 |
msgid "Add Custom JS"
|
223 |
msgstr "Özel JS Ekle"
|
224 |
|
225 |
+
#: includes/admin-screens.php:99
|
226 |
msgid "Add Custom HTML"
|
227 |
msgstr "Özel HTML Ekle"
|
228 |
|
229 |
+
#: includes/admin-screens.php:173 includes/admin-screens.php:280
|
230 |
+
#: includes/admin-screens.php:1286
|
231 |
+
msgid "Active"
|
232 |
+
msgstr "Aktif"
|
233 |
+
|
234 |
+
#: includes/admin-screens.php:174 includes/admin-screens.php:1289
|
235 |
+
msgid "Inactive"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/admin-screens.php:175 includes/admin-screens.php:1262
|
239 |
+
#: includes/admin-screens.php:1290
|
240 |
+
msgid "Activate"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/admin-screens.php:176 includes/admin-screens.php:1259
|
244 |
+
#: includes/admin-screens.php:1287
|
245 |
+
msgid "Deactivate"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: includes/admin-screens.php:177 includes/admin-screens.php:325
|
249 |
+
#: includes/admin-screens.php:1258
|
250 |
+
msgid "The code is active. Click to deactivate it"
|
251 |
+
msgstr "Bu kod faal. Devre dışı bırakmak için tıklayınız"
|
252 |
+
|
253 |
+
#: includes/admin-screens.php:178 includes/admin-screens.php:328
|
254 |
+
#: includes/admin-screens.php:1261
|
255 |
+
msgid "The code is inactive. Click to activate it"
|
256 |
+
msgstr "Bu kod faal değil. Faal hale getirmek için tıklayınız"
|
257 |
+
|
258 |
+
#: includes/admin-screens.php:204
|
259 |
msgid "Options"
|
260 |
msgstr "Seçenekler"
|
261 |
|
262 |
+
#: includes/admin-screens.php:264
|
263 |
msgid "Add CSS code"
|
264 |
msgstr "CSS Kodu ekle"
|
265 |
|
266 |
+
#: includes/admin-screens.php:265
|
267 |
msgid "Add JS code"
|
268 |
msgstr "JS Kodu ekle"
|
269 |
|
270 |
+
#: includes/admin-screens.php:266
|
271 |
msgid "Add HTML code"
|
272 |
msgstr "HTML Kodu ekle"
|
273 |
|
274 |
+
#: includes/admin-screens.php:281
|
|
|
|
|
|
|
|
|
275 |
msgid "Type"
|
276 |
msgstr "Çeşidi"
|
277 |
|
278 |
+
#: includes/admin-screens.php:282
|
279 |
msgid "Title"
|
280 |
msgstr "Başlık"
|
281 |
|
282 |
+
#: includes/admin-screens.php:284
|
283 |
msgid "Date"
|
284 |
msgstr "Tarih"
|
285 |
|
286 |
+
#: includes/admin-screens.php:285
|
287 |
msgid "Modified"
|
288 |
msgstr "Değiştirilme"
|
289 |
|
290 |
+
#: includes/admin-screens.php:314
|
291 |
msgid "%s ago"
|
292 |
msgstr "%s önce"
|
293 |
|
294 |
+
#: includes/admin-screens.php:316
|
295 |
msgid "Y/m/d"
|
296 |
msgstr "Y/m/d"
|
297 |
|
298 |
+
#: includes/admin-screens.php:386
|
299 |
+
msgid "CSS Codes"
|
300 |
+
msgstr ""
|
301 |
|
302 |
+
#: includes/admin-screens.php:387
|
303 |
+
msgid "JS Codes"
|
304 |
+
msgstr ""
|
305 |
|
306 |
+
#: includes/admin-screens.php:388
|
307 |
+
msgid "HTML Codes"
|
308 |
+
msgstr ""
|
309 |
|
310 |
+
#: includes/admin-screens.php:391
|
311 |
+
msgid "Filter Code Type"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/admin-screens.php:393
|
315 |
+
msgid "All Custom Codes"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/admin-screens.php:448
|
319 |
msgid "Custom Code"
|
320 |
msgstr "Özel Kod"
|
321 |
|
322 |
+
#: includes/admin-screens.php:449 includes/admin-screens.php:468
|
323 |
+
#: includes/admin-screens.php:489
|
324 |
msgid "Add CSS Code"
|
325 |
msgstr "CSS Kodu Ekle"
|
326 |
|
327 |
+
#: includes/admin-screens.php:450 includes/admin-screens.php:469
|
328 |
+
#: includes/admin-screens.php:490
|
329 |
msgid "Add JS Code"
|
330 |
msgstr "JS Kodu Ekle"
|
331 |
|
332 |
+
#: includes/admin-screens.php:451 includes/admin-screens.php:470
|
333 |
+
#: includes/admin-screens.php:491
|
334 |
msgid "Add HTML Code"
|
335 |
msgstr "HTML Kodu Ekle"
|
336 |
|
337 |
+
#: includes/admin-screens.php:471
|
338 |
+
msgid "Edit CSS Code"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: includes/admin-screens.php:472
|
342 |
+
msgid "Edit JS Code"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/admin-screens.php:473
|
346 |
+
msgid "Edit HTML Code"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: includes/admin-screens.php:499
|
350 |
msgid "Code updated"
|
351 |
msgstr "Kod güncellendi"
|
352 |
|
353 |
+
#: includes/admin-screens.php:612
|
354 |
msgid ""
|
355 |
"/* Add your JavaScript code here.\n"
|
356 |
+
"\n"
|
357 |
"If you are using the jQuery library, then don't forget to wrap your code "
|
358 |
"inside jQuery.ready() as follows:\n"
|
359 |
"\n"
|
360 |
"jQuery(document).ready(function( $ ){\n"
|
361 |
+
" // Your code in here\n"
|
362 |
"});\n"
|
363 |
"\n"
|
364 |
+
"--\n"
|
|
|
|
|
|
|
|
|
|
|
365 |
"\n"
|
366 |
+
"If you want to link a JavaScript file that resides on another server "
|
367 |
+
"(similar to\n"
|
368 |
+
"<script src=\"https://example.com/your-js-file.js\"></script>), then please "
|
369 |
+
"use\n"
|
370 |
+
"the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript "
|
371 |
+
"file.\n"
|
372 |
"\n"
|
373 |
+
"End of comment */ "
|
374 |
+
msgstr ""
|
375 |
|
376 |
+
#: includes/admin-screens.php:634
|
377 |
msgid ""
|
378 |
+
"<!-- Add HTML code to the header or the footer.\n"
|
379 |
"\n"
|
380 |
"For example, you can use the following code for loading the jQuery library "
|
381 |
"from Google CDN:\n"
|
390 |
"\n"
|
391 |
"-- End of the comment --> "
|
392 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
|
394 |
+
#: includes/admin-screens.php:660
|
395 |
msgid ""
|
396 |
"/* Add your CSS code here.\n"
|
397 |
+
"\n"
|
398 |
"For example:\n"
|
399 |
".example {\n"
|
400 |
" color: red;\n"
|
405 |
"\n"
|
406 |
"End of comment */ "
|
407 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
|
409 |
+
#: includes/admin-screens.php:692
|
410 |
+
msgid "Last edited by %1$s on %2$s at %3$s"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/admin-screens.php:694
|
414 |
+
msgid "Last edited on %1$s at %2$s"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin-screens.php:791
|
418 |
msgid "Linking type"
|
419 |
msgstr "Linkleme çeşidi"
|
420 |
|
421 |
+
#: includes/admin-screens.php:796
|
422 |
msgid "External File"
|
423 |
msgstr "Harici Dosya"
|
424 |
|
425 |
+
#: includes/admin-screens.php:800
|
426 |
msgid "Internal"
|
427 |
msgstr "Dahili"
|
428 |
|
429 |
+
#: includes/admin-screens.php:806 includes/admin-screens.php:894
|
430 |
msgid "Where on page"
|
431 |
msgstr "Sayfanın neresinde"
|
432 |
|
433 |
+
#: includes/admin-screens.php:811 includes/admin-screens.php:899
|
434 |
msgid "Header"
|
435 |
msgstr "Üstbaşlık (Header)"
|
436 |
|
437 |
+
#: includes/admin-screens.php:815 includes/admin-screens.php:903
|
438 |
msgid "Footer"
|
439 |
msgstr "Altbaşlık (Footer)"
|
440 |
|
441 |
+
#: includes/admin-screens.php:821 includes/admin-screens.php:909
|
442 |
msgid "Where in site"
|
443 |
msgstr "Sitede nerede"
|
444 |
|
445 |
+
#: includes/admin-screens.php:826 includes/admin-screens.php:914
|
446 |
msgid "In Frontend"
|
447 |
msgstr "Önyüzde"
|
448 |
|
449 |
+
#: includes/admin-screens.php:830 includes/admin-screens.php:918
|
450 |
msgid "In Admin"
|
451 |
msgstr "Yönetici panelinde"
|
452 |
|
453 |
+
#: includes/admin-screens.php:834
|
454 |
+
msgid "On Login Page"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/admin-screens.php:840
|
458 |
msgid "CSS Preprocessor"
|
459 |
msgstr "CSS Önişleyici"
|
460 |
|
461 |
+
#: includes/admin-screens.php:845
|
462 |
msgid "None"
|
463 |
msgstr "Yok"
|
464 |
|
465 |
+
#: includes/admin-screens.php:848
|
466 |
msgid "Less"
|
467 |
msgstr "Less"
|
468 |
|
469 |
+
#: includes/admin-screens.php:851
|
470 |
msgid "SASS (only SCSS syntax)"
|
471 |
msgstr "SASS (sadece SCSS yazımı)"
|
472 |
|
473 |
+
#: includes/admin-screens.php:857
|
474 |
msgid "Minify the code"
|
475 |
msgstr "Kodu küçült"
|
476 |
|
477 |
+
#: includes/admin-screens.php:864 includes/admin-screens.php:945
|
478 |
msgid "Priority"
|
479 |
msgstr "Öncelik"
|
480 |
|
481 |
+
#: includes/admin-screens.php:869 includes/admin-screens.php:950
|
482 |
msgctxt "1 is the highest priority"
|
483 |
msgid "1 (highest)"
|
484 |
msgstr "1 (En yüksek)"
|
485 |
|
486 |
+
#: includes/admin-screens.php:878 includes/admin-screens.php:959
|
487 |
msgctxt "10 is the lowest priority"
|
488 |
msgid "10 (lowest)"
|
489 |
msgstr "10 (en düşük)"
|
490 |
|
491 |
+
#: includes/admin-screens.php:924
|
492 |
msgid "On which device"
|
493 |
msgstr "Hangi cihazlarda"
|
494 |
|
495 |
+
#: includes/admin-screens.php:930
|
496 |
msgid "Desktop"
|
497 |
msgstr "Masaüstü"
|
498 |
|
499 |
+
#: includes/admin-screens.php:934
|
500 |
msgid "Mobile"
|
501 |
msgstr "Mobil"
|
502 |
|
503 |
+
#: includes/admin-screens.php:938
|
504 |
msgid "Both"
|
505 |
msgstr "Her ikisi"
|
506 |
|
507 |
+
#: includes/admin-screens.php:1096
|
508 |
msgid "The %s directory could not be created"
|
509 |
msgstr "%s klasörü oluşturulamadı"
|
510 |
|
511 |
+
#: includes/admin-screens.php:1097
|
512 |
msgid "Please run the following commands in order to make the directory"
|
513 |
msgstr "Klasör oluşturmak için lütfen aşağıdaki komutları çalıştırın"
|
514 |
|
515 |
+
#: includes/admin-screens.php:1105
|
516 |
msgid ""
|
517 |
"The %s directory is not writable, therefore the CSS and JS files cannot be "
|
518 |
"saved."
|
519 |
msgstr ""
|
520 |
"%s klasörü yazılabilir değil, o yüzden CSS ve JS dosyaları kaydedilemedi."
|
521 |
|
522 |
+
#: includes/admin-screens.php:1106
|
523 |
msgid "Please run the following command to make the directory writable"
|
524 |
msgstr "Lütfen klasörü yazılabilir yapmak için aşağıdaki komutu çalıştırın"
|
525 |
|
535 |
"kaldırınız. Bunu nasıl yapacağınızın detayları hakkında <a href=“%s” "
|
536 |
"target=“_blank”>bu ekran görüntüsüne </a> bakınız."
|
537 |
|
538 |
+
#. Plugin Name of the plugin/theme
|
539 |
+
msgid "Simple Custom CSS and JS"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
#. Plugin URI of the plugin/theme
|
543 |
msgid "https://wordpress.org/plugins/custom-css-js/"
|
544 |
msgstr "https://wordpress.org/plugins/custom-css-js/"
|
555 |
#. Author URI of the plugin/theme
|
556 |
msgid "https://www.silkypress.com/"
|
557 |
msgstr "https://www.silkypress.com/"
|
558 |
+
|
559 |
+
#~ msgid "Toggle active"
|
560 |
+
#~ msgstr "Aktiflik durumunu değiştir"
|
languages/custom-css-js.pot
CHANGED
@@ -1,96 +1,96 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Simple Custom CSS and JS package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Simple Custom CSS and JS 3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
|
7 |
"svn\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"PO-Revision-Date:
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
|
16 |
-
#: custom-css-js.php:
|
17 |
msgid "Cheatin’ huh?"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: custom-css-js.php:
|
21 |
msgctxt "post type general name"
|
22 |
msgid "Custom Code"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: custom-css-js.php:
|
26 |
msgctxt "post type singular name"
|
27 |
msgid "Custom Code"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: custom-css-js.php:
|
31 |
msgctxt "admin menu"
|
32 |
msgid "Custom CSS & JS"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: custom-css-js.php:
|
36 |
msgctxt "add new on admin bar"
|
37 |
msgid "Custom Code"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: custom-css-js.php:
|
41 |
msgctxt "add new"
|
42 |
msgid "Add Custom Code"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: custom-css-js.php:
|
46 |
msgid "Add Custom Code"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: custom-css-js.php:
|
50 |
msgid "New Custom Code"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: custom-css-js.php:
|
54 |
msgid "Edit Custom Code"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: custom-css-js.php:
|
58 |
msgid "View Custom Code"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: custom-css-js.php:
|
62 |
msgid "All Custom Code"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: custom-css-js.php:
|
66 |
msgid "Search Custom Code"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: custom-css-js.php:
|
70 |
msgid "Parent Custom Code:"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: custom-css-js.php:
|
74 |
msgid "No Custom Code found."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: custom-css-js.php:
|
78 |
msgid "No Custom Code found in Trash."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: custom-css-js.php:
|
82 |
msgid "Custom CSS and JS code"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: custom-css-js.php:
|
86 |
msgid "Web Designer"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: custom-css-js.php:
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/admin-addons.php:42 includes/admin-screens.php:
|
94 |
msgid "Available only in <br />Simple Custom CSS and JS Pro"
|
95 |
msgstr ""
|
96 |
|
@@ -171,7 +171,7 @@ msgstr ""
|
|
171 |
msgid "Revision"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/admin-addons.php:138 includes/admin-screens.php:
|
175 |
msgid "Author"
|
176 |
msgstr ""
|
177 |
|
@@ -183,6 +183,26 @@ msgstr ""
|
|
183 |
msgid "Restore"
|
184 |
msgstr ""
|
185 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
#: includes/admin-notices.php:125
|
187 |
msgid "Get your discount now"
|
188 |
msgstr ""
|
@@ -191,148 +211,168 @@ msgstr ""
|
|
191 |
msgid "Dismiss this notice"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/admin-screens.php:
|
195 |
msgid "Add Custom CSS"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/admin-screens.php:
|
199 |
msgid "Add Custom JS"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/admin-screens.php:
|
203 |
msgid "Add Custom HTML"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/admin-screens.php:
|
207 |
-
#: includes/admin-screens.php:
|
208 |
msgid "Active"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/admin-screens.php:
|
212 |
msgid "Inactive"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/admin-screens.php:
|
216 |
-
#: includes/admin-screens.php:
|
217 |
msgid "Activate"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/admin-screens.php:
|
221 |
-
#: includes/admin-screens.php:
|
222 |
msgid "Deactivate"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/admin-screens.php:
|
226 |
-
#: includes/admin-screens.php:
|
227 |
msgid "The code is active. Click to deactivate it"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: includes/admin-screens.php:
|
231 |
-
#: includes/admin-screens.php:
|
232 |
msgid "The code is inactive. Click to activate it"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/admin-screens.php:
|
236 |
msgid "Options"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/admin-screens.php:
|
240 |
msgid "Add CSS code"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: includes/admin-screens.php:
|
244 |
msgid "Add JS code"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/admin-screens.php:
|
248 |
msgid "Add HTML code"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/admin-screens.php:
|
252 |
msgid "Type"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/admin-screens.php:
|
256 |
msgid "Title"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/admin-screens.php:
|
260 |
msgid "Date"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/admin-screens.php:
|
264 |
msgid "Modified"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/admin-screens.php:
|
268 |
msgid "%s ago"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/admin-screens.php:
|
272 |
msgid "Y/m/d"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
msgid "Custom Code"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/admin-screens.php:
|
280 |
-
#: includes/admin-screens.php:
|
281 |
msgid "Add CSS Code"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: includes/admin-screens.php:
|
285 |
-
#: includes/admin-screens.php:
|
286 |
msgid "Add JS Code"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/admin-screens.php:
|
290 |
-
#: includes/admin-screens.php:
|
291 |
msgid "Add HTML Code"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/admin-screens.php:
|
295 |
msgid "Edit CSS Code"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/admin-screens.php:
|
299 |
msgid "Edit JS Code"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/admin-screens.php:
|
303 |
msgid "Edit HTML Code"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/admin-screens.php:
|
307 |
msgid "Code updated"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/admin-screens.php:
|
311 |
msgid ""
|
312 |
"/* Add your JavaScript code here.\n"
|
313 |
-
"
|
314 |
"If you are using the jQuery library, then don't forget to wrap your code "
|
315 |
"inside jQuery.ready() as follows:\n"
|
316 |
"\n"
|
317 |
"jQuery(document).ready(function( $ ){\n"
|
318 |
-
" // Your code in here
|
319 |
"});\n"
|
320 |
"\n"
|
321 |
"--\n"
|
322 |
"\n"
|
323 |
"If you want to link a JavaScript file that resides on another server "
|
324 |
-
"(similar to
|
325 |
"<script src=\"https://example.com/your-js-file.js\"></script>), then please "
|
326 |
-
"use
|
327 |
"the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript "
|
328 |
"file.\n"
|
329 |
"\n"
|
330 |
"End of comment */ "
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: includes/admin-screens.php:
|
334 |
msgid ""
|
335 |
-
"<!-- Add HTML code to the header or the footer
|
336 |
"\n"
|
337 |
"For example, you can use the following code for loading the jQuery library "
|
338 |
"from Google CDN:\n"
|
@@ -348,10 +388,10 @@ msgid ""
|
|
348 |
"-- End of the comment --> "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: includes/admin-screens.php:
|
352 |
msgid ""
|
353 |
"/* Add your CSS code here.\n"
|
354 |
-
"
|
355 |
"For example:\n"
|
356 |
".example {\n"
|
357 |
" color: red;\n"
|
@@ -363,111 +403,119 @@ msgid ""
|
|
363 |
"End of comment */ "
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/admin-screens.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
msgid "Linking type"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes/admin-screens.php:
|
371 |
msgid "External File"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes/admin-screens.php:
|
375 |
msgid "Internal"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes/admin-screens.php:
|
379 |
msgid "Where on page"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: includes/admin-screens.php:
|
383 |
msgid "Header"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes/admin-screens.php:
|
387 |
msgid "Footer"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: includes/admin-screens.php:
|
391 |
msgid "Where in site"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/admin-screens.php:
|
395 |
msgid "In Frontend"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/admin-screens.php:
|
399 |
msgid "In Admin"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/admin-screens.php:
|
403 |
msgid "On Login Page"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: includes/admin-screens.php:
|
407 |
msgid "CSS Preprocessor"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: includes/admin-screens.php:
|
411 |
msgid "None"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/admin-screens.php:
|
415 |
msgid "Less"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/admin-screens.php:
|
419 |
msgid "SASS (only SCSS syntax)"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: includes/admin-screens.php:
|
423 |
msgid "Minify the code"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/admin-screens.php:
|
427 |
msgid "Priority"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: includes/admin-screens.php:
|
431 |
msgctxt "1 is the highest priority"
|
432 |
msgid "1 (highest)"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/admin-screens.php:
|
436 |
msgctxt "10 is the lowest priority"
|
437 |
msgid "10 (lowest)"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/admin-screens.php:
|
441 |
msgid "On which device"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/admin-screens.php:
|
445 |
msgid "Desktop"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/admin-screens.php:
|
449 |
msgid "Mobile"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/admin-screens.php:
|
453 |
msgid "Both"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/admin-screens.php:
|
457 |
msgid "The %s directory could not be created"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/admin-screens.php:
|
461 |
msgid "Please run the following commands in order to make the directory"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/admin-screens.php:
|
465 |
msgid ""
|
466 |
"The %s directory is not writable, therefore the CSS and JS files cannot be "
|
467 |
"saved."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/admin-screens.php:
|
471 |
msgid "Please run the following command to make the directory writable"
|
472 |
msgstr ""
|
473 |
|
1 |
+
# Copyright (C) 2018 Simple Custom CSS and JS
|
2 |
# This file is distributed under the same license as the Simple Custom CSS and JS package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Simple Custom CSS and JS 3.14\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
|
7 |
"svn\n"
|
8 |
+
"POT-Creation-Date: 2018-02-08 19:58:14+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
|
16 |
+
#: custom-css-js.php:53 custom-css-js.php:60
|
17 |
msgid "Cheatin’ huh?"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: custom-css-js.php:220
|
21 |
msgctxt "post type general name"
|
22 |
msgid "Custom Code"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: custom-css-js.php:221
|
26 |
msgctxt "post type singular name"
|
27 |
msgid "Custom Code"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: custom-css-js.php:222
|
31 |
msgctxt "admin menu"
|
32 |
msgid "Custom CSS & JS"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: custom-css-js.php:223
|
36 |
msgctxt "add new on admin bar"
|
37 |
msgid "Custom Code"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: custom-css-js.php:224
|
41 |
msgctxt "add new"
|
42 |
msgid "Add Custom Code"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: custom-css-js.php:225
|
46 |
msgid "Add Custom Code"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: custom-css-js.php:226
|
50 |
msgid "New Custom Code"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: custom-css-js.php:227
|
54 |
msgid "Edit Custom Code"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: custom-css-js.php:228
|
58 |
msgid "View Custom Code"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: custom-css-js.php:229
|
62 |
msgid "All Custom Code"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: custom-css-js.php:230
|
66 |
msgid "Search Custom Code"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: custom-css-js.php:231
|
70 |
msgid "Parent Custom Code:"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: custom-css-js.php:232
|
74 |
msgid "No Custom Code found."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: custom-css-js.php:233
|
78 |
msgid "No Custom Code found in Trash."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: custom-css-js.php:254
|
82 |
msgid "Custom CSS and JS code"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: custom-css-js.php:299
|
86 |
msgid "Web Designer"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: custom-css-js.php:394 includes/admin-config.php:58
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/admin-addons.php:42 includes/admin-screens.php:776
|
94 |
msgid "Available only in <br />Simple Custom CSS and JS Pro"
|
95 |
msgstr ""
|
96 |
|
171 |
msgid "Revision"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: includes/admin-addons.php:138 includes/admin-screens.php:283
|
175 |
msgid "Author"
|
176 |
msgstr ""
|
177 |
|
183 |
msgid "Restore"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: includes/admin-config.php:115
|
187 |
+
msgid "Save"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/admin-config.php:139
|
191 |
+
msgid "Custom CSS & JS Settings"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/admin-config.php:142
|
195 |
+
msgid "Editor Settings"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/admin-config.php:195
|
199 |
+
msgid "Keep the HTML entities, don't convert to its character"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/admin-config.php:200
|
203 |
+
msgid "Encode the HTML entities"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
#: includes/admin-notices.php:125
|
207 |
msgid "Get your discount now"
|
208 |
msgstr ""
|
211 |
msgid "Dismiss this notice"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/admin-screens.php:93
|
215 |
msgid "Add Custom CSS"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/admin-screens.php:96
|
219 |
msgid "Add Custom JS"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/admin-screens.php:99
|
223 |
msgid "Add Custom HTML"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/admin-screens.php:173 includes/admin-screens.php:280
|
227 |
+
#: includes/admin-screens.php:1286
|
228 |
msgid "Active"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: includes/admin-screens.php:174 includes/admin-screens.php:1289
|
232 |
msgid "Inactive"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: includes/admin-screens.php:175 includes/admin-screens.php:1262
|
236 |
+
#: includes/admin-screens.php:1290
|
237 |
msgid "Activate"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/admin-screens.php:176 includes/admin-screens.php:1259
|
241 |
+
#: includes/admin-screens.php:1287
|
242 |
msgid "Deactivate"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/admin-screens.php:177 includes/admin-screens.php:325
|
246 |
+
#: includes/admin-screens.php:1258
|
247 |
msgid "The code is active. Click to deactivate it"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: includes/admin-screens.php:178 includes/admin-screens.php:328
|
251 |
+
#: includes/admin-screens.php:1261
|
252 |
msgid "The code is inactive. Click to activate it"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/admin-screens.php:204
|
256 |
msgid "Options"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/admin-screens.php:264
|
260 |
msgid "Add CSS code"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/admin-screens.php:265
|
264 |
msgid "Add JS code"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/admin-screens.php:266
|
268 |
msgid "Add HTML code"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/admin-screens.php:281
|
272 |
msgid "Type"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/admin-screens.php:282
|
276 |
msgid "Title"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/admin-screens.php:284
|
280 |
msgid "Date"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/admin-screens.php:285
|
284 |
msgid "Modified"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/admin-screens.php:314
|
288 |
msgid "%s ago"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/admin-screens.php:316
|
292 |
msgid "Y/m/d"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/admin-screens.php:386
|
296 |
+
msgid "CSS Codes"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/admin-screens.php:387
|
300 |
+
msgid "JS Codes"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: includes/admin-screens.php:388
|
304 |
+
msgid "HTML Codes"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: includes/admin-screens.php:391
|
308 |
+
msgid "Filter Code Type"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: includes/admin-screens.php:393
|
312 |
+
msgid "All Custom Codes"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: includes/admin-screens.php:448
|
316 |
msgid "Custom Code"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/admin-screens.php:449 includes/admin-screens.php:468
|
320 |
+
#: includes/admin-screens.php:489
|
321 |
msgid "Add CSS Code"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/admin-screens.php:450 includes/admin-screens.php:469
|
325 |
+
#: includes/admin-screens.php:490
|
326 |
msgid "Add JS Code"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/admin-screens.php:451 includes/admin-screens.php:470
|
330 |
+
#: includes/admin-screens.php:491
|
331 |
msgid "Add HTML Code"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/admin-screens.php:471
|
335 |
msgid "Edit CSS Code"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/admin-screens.php:472
|
339 |
msgid "Edit JS Code"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: includes/admin-screens.php:473
|
343 |
msgid "Edit HTML Code"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/admin-screens.php:499
|
347 |
msgid "Code updated"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: includes/admin-screens.php:612
|
351 |
msgid ""
|
352 |
"/* Add your JavaScript code here.\n"
|
353 |
+
"\n"
|
354 |
"If you are using the jQuery library, then don't forget to wrap your code "
|
355 |
"inside jQuery.ready() as follows:\n"
|
356 |
"\n"
|
357 |
"jQuery(document).ready(function( $ ){\n"
|
358 |
+
" // Your code in here\n"
|
359 |
"});\n"
|
360 |
"\n"
|
361 |
"--\n"
|
362 |
"\n"
|
363 |
"If you want to link a JavaScript file that resides on another server "
|
364 |
+
"(similar to\n"
|
365 |
"<script src=\"https://example.com/your-js-file.js\"></script>), then please "
|
366 |
+
"use\n"
|
367 |
"the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript "
|
368 |
"file.\n"
|
369 |
"\n"
|
370 |
"End of comment */ "
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: includes/admin-screens.php:634
|
374 |
msgid ""
|
375 |
+
"<!-- Add HTML code to the header or the footer.\n"
|
376 |
"\n"
|
377 |
"For example, you can use the following code for loading the jQuery library "
|
378 |
"from Google CDN:\n"
|
388 |
"-- End of the comment --> "
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: includes/admin-screens.php:660
|
392 |
msgid ""
|
393 |
"/* Add your CSS code here.\n"
|
394 |
+
"\n"
|
395 |
"For example:\n"
|
396 |
".example {\n"
|
397 |
" color: red;\n"
|
403 |
"End of comment */ "
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: includes/admin-screens.php:692
|
407 |
+
msgid "Last edited by %1$s on %2$s at %3$s"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: includes/admin-screens.php:694
|
411 |
+
msgid "Last edited on %1$s at %2$s"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: includes/admin-screens.php:791
|
415 |
msgid "Linking type"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: includes/admin-screens.php:796
|
419 |
msgid "External File"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/admin-screens.php:800
|
423 |
msgid "Internal"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/admin-screens.php:806 includes/admin-screens.php:894
|
427 |
msgid "Where on page"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/admin-screens.php:811 includes/admin-screens.php:899
|
431 |
msgid "Header"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/admin-screens.php:815 includes/admin-screens.php:903
|
435 |
msgid "Footer"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/admin-screens.php:821 includes/admin-screens.php:909
|
439 |
msgid "Where in site"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/admin-screens.php:826 includes/admin-screens.php:914
|
443 |
msgid "In Frontend"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/admin-screens.php:830 includes/admin-screens.php:918
|
447 |
msgid "In Admin"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/admin-screens.php:834
|
451 |
msgid "On Login Page"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/admin-screens.php:840
|
455 |
msgid "CSS Preprocessor"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/admin-screens.php:845
|
459 |
msgid "None"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: includes/admin-screens.php:848
|
463 |
msgid "Less"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: includes/admin-screens.php:851
|
467 |
msgid "SASS (only SCSS syntax)"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/admin-screens.php:857
|
471 |
msgid "Minify the code"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/admin-screens.php:864 includes/admin-screens.php:945
|
475 |
msgid "Priority"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/admin-screens.php:869 includes/admin-screens.php:950
|
479 |
msgctxt "1 is the highest priority"
|
480 |
msgid "1 (highest)"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/admin-screens.php:878 includes/admin-screens.php:959
|
484 |
msgctxt "10 is the lowest priority"
|
485 |
msgid "10 (lowest)"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/admin-screens.php:924
|
489 |
msgid "On which device"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/admin-screens.php:930
|
493 |
msgid "Desktop"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/admin-screens.php:934
|
497 |
msgid "Mobile"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/admin-screens.php:938
|
501 |
msgid "Both"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/admin-screens.php:1096
|
505 |
msgid "The %s directory could not be created"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: includes/admin-screens.php:1097
|
509 |
msgid "Please run the following commands in order to make the directory"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/admin-screens.php:1105
|
513 |
msgid ""
|
514 |
"The %s directory is not writable, therefore the CSS and JS files cannot be "
|
515 |
"saved."
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: includes/admin-screens.php:1106
|
519 |
msgid "Please run the following command to make the directory writable"
|
520 |
msgstr ""
|
521 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Email: diana@burduja.eu
|
|
5 |
Tags: CSS, JS, javascript, custom CSS, custom JS, custom style, site css, add style, customize theme, custom code, external css, css3, style, styles, stylesheet, theme, editor, design, admin
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 4.9
|
8 |
-
Stable tag: 3.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -114,6 +114,14 @@ $. Add/Edit HTML
|
|
114 |
|
115 |
== Changelog ==
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
= 3.13 =
|
118 |
* 01/12/2018
|
119 |
* Feature: add the "Keep the HTML entities, don't convert to its character" option
|
5 |
Tags: CSS, JS, javascript, custom CSS, custom JS, custom style, site css, add style, customize theme, custom code, external css, css3, style, styles, stylesheet, theme, editor, design, admin
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 4.9
|
8 |
+
Stable tag: 3.14
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
= 3.14 =
|
118 |
+
* 02/04/2018
|
119 |
+
* Feature: permalink slug for custom codes
|
120 |
+
* Fix: set the footer scripts to a higher priority
|
121 |
+
* Update the french translation
|
122 |
+
* Fix: allow admin stylesheets from ACF plugin, otherwise it breaks the post.php page
|
123 |
+
* Tweak: for post.php and post-new.php page show code's title in the page title
|
124 |
+
|
125 |
= 3.13 =
|
126 |
* 01/12/2018
|
127 |
* Feature: add the "Keep the HTML entities, don't convert to its character" option
|