Simple Custom CSS and JS - Version 3.14

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 Icon 128x128 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 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.13
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.2.0
16
  */
17
 
18
  if ( ! defined( 'ABSPATH' ) ) {
@@ -107,7 +107,9 @@ final class CustomCSSandJS {
107
  $action .= 'footer';
108
  }
109
 
110
- add_action( $action, array( $this, 'print_' . $_key ) );
 
 
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.13',
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, 'ccj_settings_form' ), 11 );
47
- add_filter( 'ccj_settings_default', array( $this, 'ccj_settings_default' ) );
48
- add_filter( 'ccj_settings_save', array( $this, 'ccj_settings_save' ) );
49
  }
50
 
51
 
@@ -145,50 +145,66 @@ class CustomCSSandJS_AdminConfig {
145
  <?php
146
  }
147
 
 
 
148
  /**
149
- * Add the default for the theme
150
  */
151
- function ccj_settings_default( $defaults ) {
152
- return array_merge( $defaults, array( 'ccj_htmlentities' => false) );
 
 
 
153
  }
154
 
155
 
156
  /**
157
- * Add the 'ccj_htmlentities' value to the $_POST for the Settings page
158
  */
159
- function ccj_settings_save( $data ) {
160
  $default['htmlentities'] = false;
161
  $htmlentities = isset($_POST['ccj_htmlentities']) ? true : false;
 
162
 
163
- return array_merge( $data, array('ccj_htmlentities' => $htmlentities) );
 
 
 
164
  }
165
 
166
 
167
 
168
  /**
169
- * Form for "Editor Theme" field
170
  */
171
- function ccj_settings_form() {
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('&gt; or &quot;').'), but the editor keeps on changing them to its equivalent character (&gt; and &quot; 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('&gt; or &quot;').'), but the editor keeps on changing them to its equivalent character (&gt; and &quot; 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 && strstr($_value->src, 'plugins/custom-css-js/assets') === 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( 'G', $post_id );
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( __( 'Y/m/d' ), $m_time );
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
+ &lrm;<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
- "PO-Revision-Date: +0000\n"
 
 
 
 
 
 
 
 
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: GlotPress/2.4.0-alpha\n"
11
- "Language: fr\n"
12
- "Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest release)\n"
13
 
14
- #: includes/admin-screens.php:496
15
- msgid ""
16
- "/* Add your JavaScript code here.\n"
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
- #: includes/admin-screens.php:162 includes/admin-screens.php:1111
49
- #: includes/admin-screens.php:1139
50
- msgid "Deactivate"
51
- msgstr "Désactiver"
52
 
53
- #: includes/admin-screens.php:161 includes/admin-screens.php:1114
54
- #: includes/admin-screens.php:1142
55
- msgid "Activate"
56
- msgstr "Activer"
57
 
58
- #: includes/admin-screens.php:160 includes/admin-screens.php:1141
59
- msgid "Inactive"
60
- msgstr "Inactif"
 
61
 
62
- #: includes/admin-screens.php:701
63
- msgid "On Login Page"
64
- msgstr "Sur la page de Login"
 
65
 
66
- #. Author URI of the plugin/theme
67
- msgid "https://www.silkypress.com/"
68
- msgstr "https://www.silkypress.com/"
 
69
 
70
- #. Author of the plugin/theme
71
- msgid "Diana Burduja"
72
- msgstr "Diana Burduja"
73
 
74
- #. Description of the plugin/theme
75
- msgid "Easily add Custom CSS or JS to your website with an awesome editor."
76
- msgstr "Ajoutez facilement du code CSS et JS à votre site avec ce puissant éditeur."
77
 
78
- #. Plugin URI of the plugin/theme
79
- msgid "https://wordpress.org/plugins/custom-css-js/"
80
- msgstr "https://wordpress.org/plugins/custom-css-js/"
81
 
82
- #. Plugin Name of the plugin/theme
83
- msgid "Simple Custom CSS and JS"
84
- msgstr "Simple Custom CSS and JS"
85
 
86
- #: includes/admin-warnings.php:55
87
- msgid "Please remove the <b>custom-css-js</b> post type from the <b>qTranslate settings</b> in order to avoid some malfunctions in the Simple Custom CSS & JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> for more details on how to do that."
88
- msgstr "Veuillez retirer le post type <b>custom-css-js</b> de la configuration de <b>qTranslate</b> pour éviter certains effets néfastes avec Simple Custom CSS & JS plugin. Reportez vous à <a href=\"%s\" target=\"_blank\">cette image</a> pour plus de détail sur la façon de faire."
89
 
90
- #: includes/admin-screens.php:958
91
- msgid "Please run the following command to make the directory writable"
92
- msgstr "Veuillez exécuter la commande suivante pour rendre le répertoire modifiable."
93
 
94
- #: includes/admin-screens.php:957
95
- msgid "The %s directory is not writable, therefore the CSS and JS files cannot be saved."
96
- msgstr "Le répertoire %s n'est pas modifiable, les fichiers CSS et JS ne peuvent être sauvegardés."
97
 
98
- #: includes/admin-screens.php:949
99
- msgid "Please run the following commands in order to make the directory"
100
- msgstr "Veuillez exécuter les commandes suivantes pour créer le répertoire "
101
 
102
- #: includes/admin-screens.php:948
103
- msgid "The %s directory could not be created"
104
- msgstr "Le répertoire %s ne peut pas être créé"
105
 
106
- #: includes/admin-screens.php:805
107
- msgid "Both"
108
- msgstr "Les deux"
109
 
110
- #: includes/admin-screens.php:801
111
- msgid "Mobile"
112
- msgstr "Mobile"
113
 
114
- #: includes/admin-screens.php:797
115
- msgid "Desktop"
116
- msgstr "Ordinateur"
117
 
118
- #: includes/admin-screens.php:791
119
- msgid "On which device"
120
- msgstr "Sur quel appareil"
121
 
122
- #: includes/admin-screens.php:745 includes/admin-screens.php:826
123
- msgctxt "10 is the lowest priority"
124
- msgid "10 (lowest)"
125
- msgstr "10 (la plus basse)"
126
 
127
- #: includes/admin-screens.php:736 includes/admin-screens.php:817
128
- msgctxt "1 is the highest priority"
129
- msgid "1 (highest)"
130
- msgstr "1 (la plus haute)"
131
 
132
- #: includes/admin-screens.php:731 includes/admin-screens.php:812
133
- msgid "Priority"
134
- msgstr "Priorité"
135
 
136
- #: includes/admin-screens.php:724
137
- msgid "Minify the code"
138
- msgstr "Minifier le code"
139
 
140
- #: includes/admin-screens.php:718
141
- msgid "SASS (only SCSS syntax)"
142
- msgstr "SASS (syntaxe SCSS seulement)"
143
 
144
- #: includes/admin-screens.php:715
145
- msgid "Less"
146
- msgstr "Less"
147
 
148
- #: includes/admin-screens.php:712
149
- msgid "None"
150
- msgstr "aucun"
151
 
152
- #: includes/admin-screens.php:707
153
- msgid "CSS Preprocessor"
154
- msgstr "Préprocesseur CSS"
155
 
156
- #: includes/admin-screens.php:697 includes/admin-screens.php:785
157
- msgid "In Admin"
158
- msgstr "Dans l'administration"
159
 
160
- #: includes/admin-screens.php:693 includes/admin-screens.php:781
161
- msgid "In Frontend"
162
- msgstr "Sur le site"
163
 
164
- #: includes/admin-screens.php:688 includes/admin-screens.php:776
165
- msgid "Where in site"
166
- msgstr " dans le site"
167
 
168
- #: includes/admin-screens.php:682 includes/admin-screens.php:770
169
- msgid "Footer"
170
- msgstr "Pied de page"
171
 
172
- #: includes/admin-screens.php:678 includes/admin-screens.php:766
173
- msgid "Header"
174
- msgstr "En-tête de page"
175
 
176
- #: includes/admin-screens.php:673 includes/admin-screens.php:761
177
- msgid "Where on page"
178
- msgstr "Où dans la page"
179
 
180
- #: includes/admin-screens.php:667
181
- msgid "Internal"
182
- msgstr "Interne"
183
 
184
- #: includes/admin-screens.php:663
185
- msgid "External File"
186
- msgstr "Fichier externe"
187
 
188
- #: includes/admin-screens.php:658
189
- msgid "Linking type"
190
- msgstr "Type de liaison"
 
191
 
192
- #: includes/admin-screens.php:544
193
- msgid ""
194
- "/* Add your CSS code here.\n"
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-screens.php:518
217
- msgid ""
218
- "<!-- Add HTML code to the header or the footer. \n"
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:410
239
- msgid "Code updated"
240
- msgstr "Code mis à jour"
241
 
242
- #: includes/admin-screens.php:372 includes/admin-screens.php:402
243
- msgid "Add HTML Code"
244
- msgstr "Ajouter du code HTML"
245
 
246
- #: includes/admin-screens.php:371 includes/admin-screens.php:401
247
- msgid "Add JS Code"
248
- msgstr "Ajouter du code JS"
249
 
250
- #: includes/admin-screens.php:370 includes/admin-screens.php:400
251
- msgid "Add CSS Code"
252
- msgstr "Ajouter du code CSS"
253
 
254
- #: includes/admin-screens.php:369
255
- msgid "Custom Code"
256
- msgstr "Code personnalisé"
257
 
258
- #: includes/admin-screens.php:164 includes/admin-screens.php:314
259
- #: includes/admin-screens.php:1113
260
- msgid "The code is inactive. Click to activate it"
261
- msgstr "Le code est inactif. Cliquez pour l'activer"
262
 
263
- #: includes/admin-screens.php:163 includes/admin-screens.php:311
264
- #: includes/admin-screens.php:1110
265
- msgid "The code is active. Click to deactivate it"
266
- msgstr "Le code est actif. Cliquez pour le désactiver "
267
 
268
- #: includes/admin-screens.php:302
269
- msgid "Y/m/d"
270
- msgstr "Y/m/d"
271
 
272
- #: includes/admin-screens.php:300
273
- msgid "%s ago"
274
- msgstr "Il y a %s"
275
 
276
- #: includes/admin-screens.php:271
277
- msgid "Modified"
278
- msgstr "Modifié"
279
 
280
- #: includes/admin-screens.php:270
281
- msgid "Date"
282
- msgstr "Date"
283
 
284
- #: includes/admin-screens.php:268
285
- msgid "Title"
286
- msgstr "Titre"
287
 
288
- #: includes/admin-screens.php:267
289
- msgid "Type"
290
- msgstr "Type"
291
 
292
- #: includes/admin-screens.php:159 includes/admin-screens.php:266
293
- #: includes/admin-screens.php:1138
294
  msgid "Active"
295
  msgstr "Actif"
296
 
297
- #: includes/admin-screens.php:252
298
- msgid "Add HTML code"
299
- msgstr "Ajouter du code HTML"
300
 
301
- #: includes/admin-screens.php:251
302
- msgid "Add JS code"
303
- msgstr "Ajouter du code JS"
 
304
 
305
- #: includes/admin-screens.php:250
306
- msgid "Add CSS code"
307
- msgstr "Ajouter du code CSS"
 
 
 
 
 
 
 
 
 
 
 
308
 
309
- #: includes/admin-screens.php:190
310
  msgid "Options"
311
  msgstr "Options"
312
 
313
- #: includes/admin-screens.php:94
314
- msgid "Add Custom HTML"
315
- msgstr "Ajouter du HTML personnalisé"
316
 
317
- #: includes/admin-screens.php:91
318
- msgid "Add Custom JS"
319
- msgstr "Ajouter du JS personnalisé"
320
 
321
- #: includes/admin-screens.php:88
322
- msgid "Add Custom CSS"
323
- msgstr "Ajouter du CSS personnalisé"
324
 
325
- #: includes/admin-notices.php:125 includes/admin-notices.php:190
326
- msgid "Dismiss this notice"
327
- msgstr "Effacer cette notification"
328
 
329
- #: includes/admin-notices.php:125
330
- msgid "Get your discount now"
331
- msgstr "Obtenez votre remise maintenant"
332
 
333
- #: includes/admin-addons.php:140 includes/admin-addons.php:163
334
- msgid "Restore"
335
- msgstr "Restaurer"
336
 
337
- #: includes/admin-addons.php:139 includes/admin-addons.php:173
338
- msgid "Delete"
339
- msgstr "Effacer"
340
 
341
- #: includes/admin-addons.php:138 includes/admin-screens.php:269
342
- msgid "Author"
343
- msgstr "Auteur"
344
 
345
- #: includes/admin-addons.php:137
346
- msgid "Revision"
347
- msgstr "Révision"
348
 
349
- #: includes/admin-addons.php:136 includes/admin-addons.php:169
350
- msgid "Compare"
351
- msgstr "Comparer"
352
 
353
- #: includes/admin-addons.php:114
354
- msgctxt "revision date format"
355
- msgid "F j, Y @ H:i:s"
356
- msgstr "F j, Y @ H:i:s"
357
 
358
- #: includes/admin-addons.php:103
359
- msgid "Add"
360
- msgstr "Ajouter"
361
 
362
- #: includes/admin-addons.php:102
363
- msgid "Text filter"
364
- msgstr "Filtre de texte"
365
 
366
- #: includes/admin-addons.php:100 includes/admin-addons.php:101
367
- msgid "URL"
368
- msgstr "URL"
369
 
370
- #: includes/admin-addons.php:89
371
- msgid "Ends by"
372
- msgstr "Se termine par"
373
 
374
- #: includes/admin-addons.php:88
375
- msgid "Starts with"
376
- msgstr "Commence par"
 
377
 
378
- #: includes/admin-addons.php:87
379
- msgid "Not equal to"
380
- msgstr "Différent de"
 
381
 
382
- #: includes/admin-addons.php:86
383
- msgid "Is equal to"
384
- msgstr "Egal à"
 
385
 
386
- #: includes/admin-addons.php:85
387
- msgid "Not contains"
388
- msgstr "Ne contient pas"
389
 
390
- #: includes/admin-addons.php:84
391
- msgid "Contains"
392
- msgstr "Contient"
393
 
394
- #: includes/admin-addons.php:83
395
- msgid "First page"
396
- msgstr "Première page"
397
 
398
- #: includes/admin-addons.php:82
399
- msgid "All Website"
400
- msgstr "Tout le site"
401
 
402
- #: includes/admin-addons.php:68
403
- msgid "Preview Changes"
404
- msgstr "Prévisualiser"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
 
406
- #: includes/admin-addons.php:67
407
- msgid "Full URL on which to preview the changes ..."
408
- msgstr "URL prévisualiser les modifications ..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
 
410
- #: includes/admin-addons.php:56
411
- msgid "Code Revisions"
412
- msgstr "Révisions du code"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
 
414
- #: includes/admin-addons.php:55
415
- msgid "Apply only on these URLs"
416
- msgstr "Appliquer seulement à ces URLs"
417
 
418
- #: includes/admin-addons.php:54
419
- msgid "Preview"
420
- msgstr "Prévisualiser"
421
 
422
- #: includes/admin-addons.php:42 includes/admin-screens.php:643
423
- msgid "Available only in <br />Simple Custom CSS and JS Pro"
424
- msgstr "Uniquement disponible dans <br />Simple Custom CSS and JS Pro"
425
 
426
- #: custom-css-js.php:387
427
- msgid "Settings"
428
- msgstr "Configuration"
429
 
430
- #: custom-css-js.php:292
431
- msgid "Web Designer"
432
- msgstr "Designer Web"
433
 
434
- #: custom-css-js.php:247
435
- msgid "Custom CSS and JS code"
436
- msgstr "Code CSS et JS personnalisé "
437
 
438
- #: custom-css-js.php:226
439
- msgid "No Custom Code found in Trash."
440
- msgstr "Aucun code personnalisé trouvé dans la corbeille."
441
 
442
- #: custom-css-js.php:225
443
- msgid "No Custom Code found."
444
- msgstr "Aucun code personnalisé trouvé."
445
 
446
- #: custom-css-js.php:224
447
- msgid "Parent Custom Code:"
448
- msgstr "Code personnalisé parent :"
449
 
450
- #: custom-css-js.php:223
451
- msgid "Search Custom Code"
452
- msgstr "Rechercher du code personnalisé"
453
 
454
- #: custom-css-js.php:222
455
- msgid "All Custom Code"
456
- msgstr "Tous les codes personnalisés"
457
 
458
- #: custom-css-js.php:221
459
- msgid "View Custom Code"
460
- msgstr "Voir le code personnalisé"
461
 
462
- #: custom-css-js.php:220
463
- msgid "Edit Custom Code"
464
- msgstr "Modifier le code personnalisé"
465
 
466
- #: custom-css-js.php:219
467
- msgid "New Custom Code"
468
- msgstr "Nouveau code personnalisé"
469
 
470
- #: custom-css-js.php:218
471
- msgid "Add Custom Code"
472
- msgstr "Ajouter du code personnalisé "
473
 
474
- #: custom-css-js.php:217
475
- msgctxt "add new"
476
- msgid "Add Custom Code"
477
- msgstr "Ajouter du code personnalisé"
478
 
479
- #: custom-css-js.php:216
480
- msgctxt "add new on admin bar"
481
- msgid "Custom Code"
482
- msgstr "Code personnalisé"
483
 
484
- #: custom-css-js.php:215
485
- msgctxt "admin menu"
486
- msgid "Custom CSS & JS"
487
- msgstr "CSS et JS personnalisés"
488
 
489
- #: custom-css-js.php:214
490
- msgctxt "post type singular name"
491
- msgid "Custom Code"
492
- msgstr "Code personnalisé"
493
 
494
- #: custom-css-js.php:213
495
- msgctxt "post type general name"
496
- msgid "Custom Code"
497
- msgstr "Code personnalisé"
498
 
499
- #: custom-css-js.php:51 custom-css-js.php:58
500
- msgid "Cheatin&#8217; huh?"
501
- msgstr "Cheatin&#8217; huh?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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&#8217; huh?"
22
+ msgstr "Cheatin&#8217; 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 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 " 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 " 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
- "PO-Revision-Date: +0000\n"
 
 
 
 
 
 
 
 
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 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/2.4.0-alpha\n"
11
- "Language: pl\n"
12
- "Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest release)\n"
13
 
14
- #. Author URI of the plugin/theme
15
- msgid "https://www.silkypress.com/"
16
- msgstr "https://www.silkypress.com/"
17
 
18
- #. Author of the plugin/theme
19
- msgid "Diana Burduja"
20
- msgstr "Diana Burduja"
 
21
 
22
- #. Description of the plugin/theme
23
- msgid "Easily add Custom CSS or JS to your website with an awesome editor."
24
- msgstr "Dodawaj wstawki z własnym kodem CSS lub JS do swojej strony w łatwy sposób z użyciem wygodnego edytora."
 
25
 
26
- #. Plugin URI of the plugin/theme
27
- msgid "https://wordpress.org/plugins/custom-css-js/"
28
- msgstr "https://pl.wordpress.org/plugins/custom-css-js/"
 
29
 
30
- #. Plugin Name of the plugin/theme
31
- msgid "Simple Custom CSS and JS"
32
- msgstr "Simple Custom CSS and JS"
 
33
 
34
- #: includes/admin-warnings.php:55
35
- msgid "Please remove the <b>custom-css-js</b> post type from the <b>qTranslate settings</b> in order to avoid some malfunctions in the Simple Custom CSS & JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> for more details on how to do that."
36
- msgstr "Proszę usuń typ postu <b>custom-css-js</b> z <b>ustawień qTranslate</b>, aby uniknąć problemów z zapisywaniem wstawek we wtyczce Simple Custom CSS & JS. Zobacz <a href=\"%s\" target=\"_blank\">ten zrzut ekranu</a> by dowiedzieć się, jak to zrobić."
 
37
 
38
- #: includes/admin-screens.php:958
39
- msgid "Please run the following command to make the directory writable"
40
- msgstr "Proszę wykonaj poniższą komendę, aby uczynić katalog zapisywalnym"
41
 
42
- #: includes/admin-screens.php:957
43
- msgid "The %s directory is not writable, therefore the CSS and JS files cannot be saved."
44
- msgstr "Katalog %s nie umożliwia zapisu, dlatego pliki CSS oraz JS nie mogą zostać zapisane."
45
 
46
- #: includes/admin-screens.php:949
47
- msgid "Please run the following commands in order to make the directory"
48
- msgstr "Uruchom proszę poniższe komendy aby utworzyć folder"
49
 
50
- #: includes/admin-screens.php:948
51
- msgid "The %s directory could not be created"
52
- msgstr "Folder %s nie mógł zostać utworzony"
53
 
54
- #: includes/admin-screens.php:805
55
- msgid "Both"
56
- msgstr "Oba urządzenia"
57
 
58
- #: includes/admin-screens.php:801
59
- msgid "Mobile"
60
- msgstr "Urządzenia mobilne"
61
 
62
- #: includes/admin-screens.php:797
63
- msgid "Desktop"
64
- msgstr "Komputer stacjonarny"
65
 
66
- #: includes/admin-screens.php:791
67
- msgid "On which device"
68
- msgstr "Na jakim urządzeniu"
69
 
70
- #: includes/admin-screens.php:745 includes/admin-screens.php:826
71
- msgctxt "10 is the lowest priority"
72
- msgid "10 (lowest)"
73
- msgstr "10 (najniższy)"
74
 
75
- #: includes/admin-screens.php:736 includes/admin-screens.php:817
76
- msgctxt "1 is the highest priority"
77
- msgid "1 (highest)"
78
- msgstr "1 (najwyższy)"
79
 
80
- #: includes/admin-screens.php:731 includes/admin-screens.php:812
81
- msgid "Priority"
82
- msgstr "Priorytet"
83
 
84
- #: includes/admin-screens.php:724
85
- msgid "Minify the code"
86
- msgstr "Zredukuj kod"
87
 
88
- #: includes/admin-screens.php:718
89
- msgid "SASS (only SCSS syntax)"
90
- msgstr "SASS (tylko składnia SCSS)"
91
 
92
- #: includes/admin-screens.php:715
93
- msgid "Less"
94
- msgstr "Less"
95
 
96
- #: includes/admin-screens.php:712
97
- msgid "None"
98
- msgstr "Brak"
99
 
100
- #: includes/admin-screens.php:707
101
- msgid "CSS Preprocessor"
102
- msgstr "Preprocesor CSS"
103
 
104
- #: includes/admin-screens.php:697 includes/admin-screens.php:785
105
- msgid "In Admin"
106
- msgstr "Panel admina"
107
 
108
- #: includes/admin-screens.php:693 includes/admin-screens.php:781
109
- msgid "In Frontend"
110
- msgstr "Witryna"
111
 
112
- #: includes/admin-screens.php:688 includes/admin-screens.php:776
113
- msgid "Where in site"
114
- msgstr "Gdzie na stronie"
115
 
116
- #: includes/admin-screens.php:682 includes/admin-screens.php:770
117
- msgid "Footer"
118
- msgstr "Stopka"
119
 
120
- #: includes/admin-screens.php:678 includes/admin-screens.php:766
121
- msgid "Header"
122
- msgstr "Nagłówek"
123
 
124
- #: includes/admin-screens.php:673 includes/admin-screens.php:761
125
- msgid "Where on page"
126
- msgstr "Gdzie w kodzie strony"
127
 
128
- #: includes/admin-screens.php:667
129
- msgid "Internal"
130
- msgstr "Wewnętrzne"
131
 
132
- #: includes/admin-screens.php:663
133
- msgid "External File"
134
- msgstr "Zewnętrzny plik"
135
 
136
- #: includes/admin-screens.php:658
137
- msgid "Linking type"
138
- msgstr "Linkowanie"
139
 
140
- #: includes/admin-screens.php:544
141
- msgid ""
142
- "/* Add your CSS code here.\n"
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-screens.php:518
166
- msgid ""
167
- "<!-- Add HTML code to the header or the footer. \n"
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-screens.php:410
188
- msgid "Code updated"
189
- msgstr "Kod wstawki zaktualizowany"
190
 
191
- #: includes/admin-screens.php:372 includes/admin-screens.php:402
192
- msgid "Add HTML Code"
193
- msgstr "Dodaj kod HTML"
194
 
195
- #: includes/admin-screens.php:371 includes/admin-screens.php:401
196
- msgid "Add JS Code"
197
- msgstr "Dodaj kod JS"
 
198
 
199
- #: includes/admin-screens.php:370 includes/admin-screens.php:400
200
- msgid "Add CSS Code"
201
- msgstr "Dodaj kod CSS"
202
 
203
- #: includes/admin-screens.php:369
204
- msgid "Custom Code"
205
- msgstr "Wstawki kodu"
206
 
207
- #: includes/admin-screens.php:164 includes/admin-screens.php:314
208
- #: includes/admin-screens.php:1113
209
- msgid "The code is inactive. Click to activate it"
210
- msgstr "Kod jest nieaktywny. Kliknij tutaj, aby go aktywować"
211
 
212
- #: includes/admin-screens.php:163 includes/admin-screens.php:311
213
- #: includes/admin-screens.php:1110
214
- msgid "The code is active. Click to deactivate it"
215
- msgstr "Kod jest aktywny. Kliknij tutaj, aby go dezaktywować"
216
 
217
- #: includes/admin-screens.php:302
218
- msgid "Y/m/d"
219
- msgstr "Y/m/d"
220
 
221
- #: includes/admin-screens.php:300
222
- msgid "%s ago"
223
- msgstr "%s temu"
224
 
225
- #: includes/admin-screens.php:271
226
- msgid "Modified"
227
- msgstr "Data modyfikacji"
228
 
229
- #: includes/admin-screens.php:270
230
- msgid "Date"
231
- msgstr "Data utworzenia"
232
 
233
- #: includes/admin-screens.php:268
234
- msgid "Title"
235
- msgstr "Tytuł"
236
 
237
- #: includes/admin-screens.php:267
238
- msgid "Type"
239
- msgstr "Typ kodu"
240
 
241
- #: includes/admin-screens.php:159 includes/admin-screens.php:266
242
- #: includes/admin-screens.php:1138
243
- msgid "Active"
244
- msgstr "Czy kod jest aktywny?"
245
 
246
- #: includes/admin-screens.php:252
247
- msgid "Add HTML code"
248
- msgstr "Dodaj kod HTML"
249
 
250
- #: includes/admin-screens.php:251
251
- msgid "Add JS code"
252
- msgstr "Dodaj kod JS"
253
 
254
- #: includes/admin-screens.php:250
255
- msgid "Add CSS code"
256
- msgstr "Dodaj kod CSS"
257
 
258
- #: includes/admin-screens.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Options"
260
  msgstr "Opcje"
261
 
262
- #: includes/admin-screens.php:94
263
- msgid "Add Custom HTML"
264
- msgstr "Dodaj wstawkę HTML"
265
 
266
- #: includes/admin-screens.php:91
267
- msgid "Add Custom JS"
268
- msgstr "Dodaj wstawkę JS"
269
 
270
- #: includes/admin-screens.php:88
271
- msgid "Add Custom CSS"
272
- msgstr "Dodaj wstawkę CSS"
273
 
274
- #: includes/admin-notices.php:125 includes/admin-notices.php:190
275
- msgid "Dismiss this notice"
276
- msgstr "Odrzuć wiadomość"
277
 
278
- #: includes/admin-notices.php:125
279
- msgid "Get your discount now"
280
- msgstr "Uzyskaj rabat"
281
 
282
- #: includes/admin-addons.php:140 includes/admin-addons.php:163
283
- msgid "Restore"
284
- msgstr "Przywróć wersję"
285
 
286
- #: includes/admin-addons.php:139 includes/admin-addons.php:173
287
- msgid "Delete"
288
- msgstr "Usuń wersję"
289
 
290
- #: includes/admin-addons.php:138 includes/admin-screens.php:269
291
- msgid "Author"
292
- msgstr "Autor"
293
 
294
- #: includes/admin-addons.php:137
295
- msgid "Revision"
296
- msgstr "Wersja"
297
 
298
- #: includes/admin-addons.php:136 includes/admin-addons.php:169
299
- msgid "Compare"
300
- msgstr "Porównaj wersje"
301
 
302
- #: includes/admin-addons.php:114
303
- msgctxt "revision date format"
304
- msgid "F j, Y @ H:i:s"
305
- msgstr "F j, Y @ H:i:s"
306
 
307
- #: includes/admin-addons.php:103
308
- msgid "Add"
309
- msgstr "Dodaj"
310
 
311
- #: includes/admin-addons.php:102
312
- msgid "Text filter"
313
- msgstr "Filtr tekstowy"
314
 
315
- #: includes/admin-addons.php:100 includes/admin-addons.php:101
316
- msgid "URL"
317
- msgstr "Adres URL"
318
 
319
- #: includes/admin-addons.php:89
320
- msgid "Ends by"
321
- msgstr "Kończy się na"
322
 
323
- #: includes/admin-addons.php:88
324
- msgid "Starts with"
325
- msgstr "Zaczyna się na"
 
326
 
327
- #: includes/admin-addons.php:87
328
- msgid "Not equal to"
329
- msgstr "Nie jest równe"
 
330
 
331
- #: includes/admin-addons.php:86
332
- msgid "Is equal to"
333
- msgstr "Jest równe"
 
334
 
335
- #: includes/admin-addons.php:85
336
- msgid "Not contains"
337
- msgstr "Nie zawiera"
338
 
339
- #: includes/admin-addons.php:84
340
- msgid "Contains"
341
- msgstr "Zawiera"
342
 
343
- #: includes/admin-addons.php:83
344
- msgid "First page"
345
- msgstr "Pierwsza strona"
346
 
347
- #: includes/admin-addons.php:82
348
- msgid "All Website"
349
- msgstr "Cała strona"
350
 
351
- #: includes/admin-addons.php:68
352
- msgid "Preview Changes"
353
- msgstr "Podejrzyj zmiany"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
 
355
- #: includes/admin-addons.php:67
356
- msgid "Full URL on which to preview the changes ..."
357
- msgstr "Pełen adres URL na którym chcesz podejrzeć zmiany ..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
 
359
- #: includes/admin-addons.php:56
360
- msgid "Code Revisions"
361
- msgstr "Wersje kodu"
 
 
 
 
 
 
 
 
 
 
 
362
 
363
- #: includes/admin-addons.php:55
364
- msgid "Apply only on these URLs"
365
- msgstr "Zastosuj tylko dla tych adresów URL"
366
 
367
- #: includes/admin-addons.php:54
368
- msgid "Preview"
369
- msgstr "Podejrzyj"
370
 
371
- #: includes/admin-addons.php:42 includes/admin-screens.php:643
372
- msgid "Available only in <br />Simple Custom CSS and JS Pro"
373
- msgstr "Dostępne tylko w <br />Simple Custom CSS and JS Pro"
374
 
375
- #: custom-css-js.php:387
376
- msgid "Settings"
377
- msgstr "Ustawienia"
378
 
379
- #: custom-css-js.php:292
380
- msgid "Web Designer"
381
- msgstr "Web Designer"
382
 
383
- #: custom-css-js.php:247
384
- msgid "Custom CSS and JS code"
385
- msgstr "Wstawki kodu CSS i JS"
386
 
387
- #: custom-css-js.php:226
388
- msgid "No Custom Code found in Trash."
389
- msgstr "Nie znaleziono wstawek w Koszu"
390
 
391
- #: custom-css-js.php:225
392
- msgid "No Custom Code found."
393
- msgstr "Nie znaleziono wstawek"
394
 
395
- #: custom-css-js.php:224
396
- msgid "Parent Custom Code:"
397
- msgstr "Kod macierzysty:"
398
 
399
- #: custom-css-js.php:223
400
- msgid "Search Custom Code"
401
- msgstr "Szukaj wstawek"
402
 
403
- #: custom-css-js.php:222
404
- msgid "All Custom Code"
405
- msgstr "Wszystkie wstawki"
406
 
407
- #: custom-css-js.php:221
408
- msgid "View Custom Code"
409
- msgstr "Zobacz kod"
410
 
411
- #: custom-css-js.php:220
412
- msgid "Edit Custom Code"
413
- msgstr "Edytuj kod"
414
 
415
- #: custom-css-js.php:219
416
- msgid "New Custom Code"
417
- msgstr "Nowa wstawka"
418
 
419
- #: custom-css-js.php:218
420
- msgid "Add Custom Code"
421
- msgstr "Dodaj wstawkę"
422
 
423
- #: custom-css-js.php:217
424
- msgctxt "add new"
425
- msgid "Add Custom Code"
426
- msgstr "Dodaj nową wstawkę"
427
 
428
- #: custom-css-js.php:216
429
- msgctxt "add new on admin bar"
430
- msgid "Custom Code"
431
- msgstr "Wstawki kodu"
432
 
433
- #: custom-css-js.php:215
434
- msgctxt "admin menu"
435
- msgid "Custom CSS & JS"
436
- msgstr "Custom CSS & JS"
437
 
438
- #: custom-css-js.php:214
439
- msgctxt "post type singular name"
440
- msgid "Custom Code"
441
- msgstr "Wstawki kodu"
442
 
443
- #: custom-css-js.php:213
444
- msgctxt "post type general name"
445
- msgid "Custom Code"
446
- msgstr "Wstawki kodu"
447
 
448
- #: custom-css-js.php:51 custom-css-js.php:58
449
- msgid "Cheatin&#8217; huh?"
450
- msgstr "Kantujesz, co nie? :)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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&#8217; 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: 2017-05-13 18:45:06+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: 2017-08-07 22:47+0300\n"
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:56 custom-css-js.php:63
20
  msgid "Cheatin&#8217; huh?"
21
  msgstr "Kandırıkçılık ha?"
22
 
23
- #: custom-css-js.php:198
24
  msgctxt "post type general name"
25
  msgid "Custom Code"
26
  msgstr "Özel Kod"
27
 
28
- #: custom-css-js.php:199
29
  msgctxt "post type singular name"
30
  msgid "Custom Code"
31
  msgstr "Özel Kod"
32
 
33
- #: custom-css-js.php:200
34
  msgctxt "admin menu"
35
  msgid "Custom CSS & JS"
36
  msgstr "Özel CSS & JS"
37
 
38
- #: custom-css-js.php:201
39
  msgctxt "add new on admin bar"
40
  msgid "Custom Code"
41
  msgstr "Özel Kod"
42
 
43
- #: custom-css-js.php:202
44
  msgctxt "add new"
45
  msgid "Add Custom Code"
46
  msgstr "Özel Kod Ekle"
47
 
48
- #: custom-css-js.php:203
49
  msgid "Add Custom Code"
50
  msgstr "Özel Kod Ekle"
51
 
52
- #: custom-css-js.php:204
53
  msgid "New Custom Code"
54
  msgstr "Yeni Özel Kod"
55
 
56
- #: custom-css-js.php:205
57
  msgid "Edit Custom Code"
58
  msgstr "Özel Kodu Düzenle"
59
 
60
- #: custom-css-js.php:206
61
  msgid "View Custom Code"
62
  msgstr "Özel Kodu Görüntüle"
63
 
64
- #: custom-css-js.php:207
65
  msgid "All Custom Code"
66
  msgstr "Tüm Özel Kodlar"
67
 
68
- #: custom-css-js.php:208
69
  msgid "Search Custom Code"
70
  msgstr "Özel Kod ara"
71
 
72
- #: custom-css-js.php:209
73
  msgid "Parent Custom Code:"
74
  msgstr "Ana Özel Kod:"
75
 
76
- #: custom-css-js.php:210
77
  msgid "No Custom Code found."
78
  msgstr "Özel Kod bulunmadı."
79
 
80
- #: custom-css-js.php:211
81
  msgid "No Custom Code found in Trash."
82
  msgstr "Çöp kutusunda özel kod bulunmadı."
83
 
84
- #: custom-css-js.php:232
85
  msgid "Custom CSS and JS code"
86
  msgstr "Özel CSS ve JS Kodu"
87
 
88
- #: custom-css-js.php:277
89
  msgid "Web Designer"
90
  msgstr "Web Tasarımcı"
91
 
92
- #: custom-css-js.php:372
93
  msgid "Settings"
94
  msgstr "Ayarlar"
95
 
96
- #: includes/admin-addons.php:42 includes/admin-screens.php:631
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:268
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:94
198
  msgid "Add Custom CSS"
199
  msgstr "Özel CSS Ekle"
200
 
201
- #: includes/admin-screens.php:97
202
  msgid "Add Custom JS"
203
  msgstr "Özel JS Ekle"
204
 
205
- #: includes/admin-screens.php:100
206
  msgid "Add Custom HTML"
207
  msgstr "Özel HTML Ekle"
208
 
209
- #: includes/admin-screens.php:189
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  msgid "Options"
211
  msgstr "Seçenekler"
212
 
213
- #: includes/admin-screens.php:249
214
  msgid "Add CSS code"
215
  msgstr "CSS Kodu ekle"
216
 
217
- #: includes/admin-screens.php:250
218
  msgid "Add JS code"
219
  msgstr "JS Kodu ekle"
220
 
221
- #: includes/admin-screens.php:251
222
  msgid "Add HTML code"
223
  msgstr "HTML Kodu ekle"
224
 
225
- #: includes/admin-screens.php:265
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:267
234
  msgid "Title"
235
  msgstr "Başlık"
236
 
237
- #: includes/admin-screens.php:269
238
  msgid "Date"
239
  msgstr "Tarih"
240
 
241
- #: includes/admin-screens.php:270
242
  msgid "Modified"
243
  msgstr "Değiştirilme"
244
 
245
- #: includes/admin-screens.php:299
246
  msgid "%s ago"
247
  msgstr "%s önce"
248
 
249
- #: includes/admin-screens.php:301
250
  msgid "Y/m/d"
251
  msgstr "Y/m/d"
252
 
253
- #: includes/admin-screens.php:309
254
- msgid "Toggle active"
255
- msgstr "Aktiflik durumunu değiştir"
256
 
257
- #: includes/admin-screens.php:311
258
- msgid "The code is active. Click to deactivate it"
259
- msgstr "Bu kod faal. Devre dışı bırakmak için tıklayınız"
260
 
261
- #: includes/admin-screens.php:314
262
- msgid "The code is inactive. Click to activate it"
263
- msgstr "Bu kod faal değil. Faal hale getirmek için tıklayınız"
264
 
265
- #: includes/admin-screens.php:365
 
 
 
 
 
 
 
 
266
  msgid "Custom Code"
267
  msgstr "Özel Kod"
268
 
269
- #: includes/admin-screens.php:366 includes/admin-screens.php:397
 
270
  msgid "Add CSS Code"
271
  msgstr "CSS Kodu Ekle"
272
 
273
- #: includes/admin-screens.php:367 includes/admin-screens.php:398
 
274
  msgid "Add JS Code"
275
  msgstr "JS Kodu Ekle"
276
 
277
- #: includes/admin-screens.php:368 includes/admin-screens.php:399
 
278
  msgid "Add HTML Code"
279
  msgstr "HTML Kodu Ekle"
280
 
281
- #: includes/admin-screens.php:407
 
 
 
 
 
 
 
 
 
 
 
 
282
  msgid "Code updated"
283
  msgstr "Kod güncellendi"
284
 
285
- #: includes/admin-screens.php:490
286
  msgid ""
287
  "/* Add your JavaScript code here.\n"
288
- " \n"
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 \n"
294
  "});\n"
295
  "\n"
296
- "End of comment */ "
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
- "jQuery(document).ready(function( $ ){\n"
304
- " //Kodunuz buraya gelecek \n"
305
- "});\n"
 
 
 
306
  "\n"
307
- "Yorum sonu */ "
 
308
 
309
- #: includes/admin-screens.php:506
310
  msgid ""
311
- "<!-- Add HTML code to the header or the footer. \n"
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:532
344
  msgid ""
345
  "/* Add your CSS code here.\n"
346
- " \n"
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:646
 
 
 
 
 
 
 
 
370
  msgid "Linking type"
371
  msgstr "Linkleme çeşidi"
372
 
373
- #: includes/admin-screens.php:651
374
  msgid "External File"
375
  msgstr "Harici Dosya"
376
 
377
- #: includes/admin-screens.php:655
378
  msgid "Internal"
379
  msgstr "Dahili"
380
 
381
- #: includes/admin-screens.php:661 includes/admin-screens.php:745
382
  msgid "Where on page"
383
  msgstr "Sayfanın neresinde"
384
 
385
- #: includes/admin-screens.php:666 includes/admin-screens.php:750
386
  msgid "Header"
387
  msgstr "Üstbaşlık (Header)"
388
 
389
- #: includes/admin-screens.php:670 includes/admin-screens.php:754
390
  msgid "Footer"
391
  msgstr "Altbaşlık (Footer)"
392
 
393
- #: includes/admin-screens.php:676 includes/admin-screens.php:760
394
  msgid "Where in site"
395
  msgstr "Sitede nerede"
396
 
397
- #: includes/admin-screens.php:681 includes/admin-screens.php:765
398
  msgid "In Frontend"
399
  msgstr "Önyüzde"
400
 
401
- #: includes/admin-screens.php:685 includes/admin-screens.php:769
402
  msgid "In Admin"
403
  msgstr "Yönetici panelinde"
404
 
405
- #: includes/admin-screens.php:691
 
 
 
 
406
  msgid "CSS Preprocessor"
407
  msgstr "CSS Önişleyici"
408
 
409
- #: includes/admin-screens.php:696
410
  msgid "None"
411
  msgstr "Yok"
412
 
413
- #: includes/admin-screens.php:699
414
  msgid "Less"
415
  msgstr "Less"
416
 
417
- #: includes/admin-screens.php:702
418
  msgid "SASS (only SCSS syntax)"
419
  msgstr "SASS (sadece SCSS yazımı)"
420
 
421
- #: includes/admin-screens.php:708
422
  msgid "Minify the code"
423
  msgstr "Kodu küçült"
424
 
425
- #: includes/admin-screens.php:715 includes/admin-screens.php:796
426
  msgid "Priority"
427
  msgstr "Öncelik"
428
 
429
- #: includes/admin-screens.php:720 includes/admin-screens.php:801
430
  msgctxt "1 is the highest priority"
431
  msgid "1 (highest)"
432
  msgstr "1 (En yüksek)"
433
 
434
- #: includes/admin-screens.php:729 includes/admin-screens.php:810
435
  msgctxt "10 is the lowest priority"
436
  msgid "10 (lowest)"
437
  msgstr "10 (en düşük)"
438
 
439
- #: includes/admin-screens.php:775
440
  msgid "On which device"
441
  msgstr "Hangi cihazlarda"
442
 
443
- #: includes/admin-screens.php:781
444
  msgid "Desktop"
445
  msgstr "Masaüstü"
446
 
447
- #: includes/admin-screens.php:785
448
  msgid "Mobile"
449
  msgstr "Mobil"
450
 
451
- #: includes/admin-screens.php:789
452
  msgid "Both"
453
  msgstr "Her ikisi"
454
 
455
- #: includes/admin-screens.php:932
456
  msgid "The %s directory could not be created"
457
  msgstr "%s klasörü oluşturulamadı"
458
 
459
- #: includes/admin-screens.php:933
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:941
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:942
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&#8217; 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) 2017 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.6\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
7
  "svn\n"
8
- "POT-Creation-Date: 2017-09-28 11: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: 2017-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:51 custom-css-js.php:58
17
  msgid "Cheatin&#8217; huh?"
18
  msgstr ""
19
 
20
- #: custom-css-js.php:213
21
  msgctxt "post type general name"
22
  msgid "Custom Code"
23
  msgstr ""
24
 
25
- #: custom-css-js.php:214
26
  msgctxt "post type singular name"
27
  msgid "Custom Code"
28
  msgstr ""
29
 
30
- #: custom-css-js.php:215
31
  msgctxt "admin menu"
32
  msgid "Custom CSS & JS"
33
  msgstr ""
34
 
35
- #: custom-css-js.php:216
36
  msgctxt "add new on admin bar"
37
  msgid "Custom Code"
38
  msgstr ""
39
 
40
- #: custom-css-js.php:217
41
  msgctxt "add new"
42
  msgid "Add Custom Code"
43
  msgstr ""
44
 
45
- #: custom-css-js.php:218
46
  msgid "Add Custom Code"
47
  msgstr ""
48
 
49
- #: custom-css-js.php:219
50
  msgid "New Custom Code"
51
  msgstr ""
52
 
53
- #: custom-css-js.php:220
54
  msgid "Edit Custom Code"
55
  msgstr ""
56
 
57
- #: custom-css-js.php:221
58
  msgid "View Custom Code"
59
  msgstr ""
60
 
61
- #: custom-css-js.php:222
62
  msgid "All Custom Code"
63
  msgstr ""
64
 
65
- #: custom-css-js.php:223
66
  msgid "Search Custom Code"
67
  msgstr ""
68
 
69
- #: custom-css-js.php:224
70
  msgid "Parent Custom Code:"
71
  msgstr ""
72
 
73
- #: custom-css-js.php:225
74
  msgid "No Custom Code found."
75
  msgstr ""
76
 
77
- #: custom-css-js.php:226
78
  msgid "No Custom Code found in Trash."
79
  msgstr ""
80
 
81
- #: custom-css-js.php:247
82
  msgid "Custom CSS and JS code"
83
  msgstr ""
84
 
85
- #: custom-css-js.php:292
86
  msgid "Web Designer"
87
  msgstr ""
88
 
89
- #: custom-css-js.php:387
90
  msgid "Settings"
91
  msgstr ""
92
 
93
- #: includes/admin-addons.php:42 includes/admin-screens.php:653
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:269
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:88
195
  msgid "Add Custom CSS"
196
  msgstr ""
197
 
198
- #: includes/admin-screens.php:91
199
  msgid "Add Custom JS"
200
  msgstr ""
201
 
202
- #: includes/admin-screens.php:94
203
  msgid "Add Custom HTML"
204
  msgstr ""
205
 
206
- #: includes/admin-screens.php:159 includes/admin-screens.php:266
207
- #: includes/admin-screens.php:1148
208
  msgid "Active"
209
  msgstr ""
210
 
211
- #: includes/admin-screens.php:160 includes/admin-screens.php:1151
212
  msgid "Inactive"
213
  msgstr ""
214
 
215
- #: includes/admin-screens.php:161 includes/admin-screens.php:1124
216
- #: includes/admin-screens.php:1152
217
  msgid "Activate"
218
  msgstr ""
219
 
220
- #: includes/admin-screens.php:162 includes/admin-screens.php:1121
221
- #: includes/admin-screens.php:1149
222
  msgid "Deactivate"
223
  msgstr ""
224
 
225
- #: includes/admin-screens.php:163 includes/admin-screens.php:311
226
- #: includes/admin-screens.php:1120
227
  msgid "The code is active. Click to deactivate it"
228
  msgstr ""
229
 
230
- #: includes/admin-screens.php:164 includes/admin-screens.php:314
231
- #: includes/admin-screens.php:1123
232
  msgid "The code is inactive. Click to activate it"
233
  msgstr ""
234
 
235
- #: includes/admin-screens.php:190
236
  msgid "Options"
237
  msgstr ""
238
 
239
- #: includes/admin-screens.php:250
240
  msgid "Add CSS code"
241
  msgstr ""
242
 
243
- #: includes/admin-screens.php:251
244
  msgid "Add JS code"
245
  msgstr ""
246
 
247
- #: includes/admin-screens.php:252
248
  msgid "Add HTML code"
249
  msgstr ""
250
 
251
- #: includes/admin-screens.php:267
252
  msgid "Type"
253
  msgstr ""
254
 
255
- #: includes/admin-screens.php:268
256
  msgid "Title"
257
  msgstr ""
258
 
259
- #: includes/admin-screens.php:270
260
  msgid "Date"
261
  msgstr ""
262
 
263
- #: includes/admin-screens.php:271
264
  msgid "Modified"
265
  msgstr ""
266
 
267
- #: includes/admin-screens.php:300
268
  msgid "%s ago"
269
  msgstr ""
270
 
271
- #: includes/admin-screens.php:302
272
  msgid "Y/m/d"
273
  msgstr ""
274
 
275
- #: includes/admin-screens.php:369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  msgid "Custom Code"
277
  msgstr ""
278
 
279
- #: includes/admin-screens.php:370 includes/admin-screens.php:389
280
- #: includes/admin-screens.php:410
281
  msgid "Add CSS Code"
282
  msgstr ""
283
 
284
- #: includes/admin-screens.php:371 includes/admin-screens.php:390
285
- #: includes/admin-screens.php:411
286
  msgid "Add JS Code"
287
  msgstr ""
288
 
289
- #: includes/admin-screens.php:372 includes/admin-screens.php:391
290
- #: includes/admin-screens.php:412
291
  msgid "Add HTML Code"
292
  msgstr ""
293
 
294
- #: includes/admin-screens.php:392
295
  msgid "Edit CSS Code"
296
  msgstr ""
297
 
298
- #: includes/admin-screens.php:393
299
  msgid "Edit JS Code"
300
  msgstr ""
301
 
302
- #: includes/admin-screens.php:394
303
  msgid "Edit HTML Code"
304
  msgstr ""
305
 
306
- #: includes/admin-screens.php:420
307
  msgid "Code updated"
308
  msgstr ""
309
 
310
- #: includes/admin-screens.php:506
311
  msgid ""
312
  "/* Add your JavaScript code here.\n"
313
- " \n"
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 \n"
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 \n"
325
  "<script src=\"https://example.com/your-js-file.js\"></script>), then please "
326
- "use \n"
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:528
334
  msgid ""
335
- "<!-- Add HTML code to the header or the footer. \n"
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:554
352
  msgid ""
353
  "/* Add your CSS code here.\n"
354
- " \n"
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:668
 
 
 
 
 
 
 
 
367
  msgid "Linking type"
368
  msgstr ""
369
 
370
- #: includes/admin-screens.php:673
371
  msgid "External File"
372
  msgstr ""
373
 
374
- #: includes/admin-screens.php:677
375
  msgid "Internal"
376
  msgstr ""
377
 
378
- #: includes/admin-screens.php:683 includes/admin-screens.php:771
379
  msgid "Where on page"
380
  msgstr ""
381
 
382
- #: includes/admin-screens.php:688 includes/admin-screens.php:776
383
  msgid "Header"
384
  msgstr ""
385
 
386
- #: includes/admin-screens.php:692 includes/admin-screens.php:780
387
  msgid "Footer"
388
  msgstr ""
389
 
390
- #: includes/admin-screens.php:698 includes/admin-screens.php:786
391
  msgid "Where in site"
392
  msgstr ""
393
 
394
- #: includes/admin-screens.php:703 includes/admin-screens.php:791
395
  msgid "In Frontend"
396
  msgstr ""
397
 
398
- #: includes/admin-screens.php:707 includes/admin-screens.php:795
399
  msgid "In Admin"
400
  msgstr ""
401
 
402
- #: includes/admin-screens.php:711
403
  msgid "On Login Page"
404
  msgstr ""
405
 
406
- #: includes/admin-screens.php:717
407
  msgid "CSS Preprocessor"
408
  msgstr ""
409
 
410
- #: includes/admin-screens.php:722
411
  msgid "None"
412
  msgstr ""
413
 
414
- #: includes/admin-screens.php:725
415
  msgid "Less"
416
  msgstr ""
417
 
418
- #: includes/admin-screens.php:728
419
  msgid "SASS (only SCSS syntax)"
420
  msgstr ""
421
 
422
- #: includes/admin-screens.php:734
423
  msgid "Minify the code"
424
  msgstr ""
425
 
426
- #: includes/admin-screens.php:741 includes/admin-screens.php:822
427
  msgid "Priority"
428
  msgstr ""
429
 
430
- #: includes/admin-screens.php:746 includes/admin-screens.php:827
431
  msgctxt "1 is the highest priority"
432
  msgid "1 (highest)"
433
  msgstr ""
434
 
435
- #: includes/admin-screens.php:755 includes/admin-screens.php:836
436
  msgctxt "10 is the lowest priority"
437
  msgid "10 (lowest)"
438
  msgstr ""
439
 
440
- #: includes/admin-screens.php:801
441
  msgid "On which device"
442
  msgstr ""
443
 
444
- #: includes/admin-screens.php:807
445
  msgid "Desktop"
446
  msgstr ""
447
 
448
- #: includes/admin-screens.php:811
449
  msgid "Mobile"
450
  msgstr ""
451
 
452
- #: includes/admin-screens.php:815
453
  msgid "Both"
454
  msgstr ""
455
 
456
- #: includes/admin-screens.php:958
457
  msgid "The %s directory could not be created"
458
  msgstr ""
459
 
460
- #: includes/admin-screens.php:959
461
  msgid "Please run the following commands in order to make the directory"
462
  msgstr ""
463
 
464
- #: includes/admin-screens.php:967
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:968
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&#8217; 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.13
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