Permalink Manager Lite - Version 2.2.9.6

Version Description

Download this release

Release Info

Developer mbis
Plugin Icon 128x128 Permalink Manager Lite
Version 2.2.9.6
Comparing to
See all releases

Code changes from version 2.2.9.4 to 2.2.9.6

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: permalinks, custom permalinks, url editor, permalinks, woocommerce permali
7
  Requires at least: 4.4.0
8
  Requires PHP: 5.4
9
  Tested up to: 5.6.0
10
- Stable tag: 2.2.9.4
11
 
12
  Permalink Manager allows to easily change full URL addresses of posts, pages, custom post types, terms and WooCommerce links. You can also set different permalink formats per language or bulk change the URLs.
13
 
@@ -103,6 +103,11 @@ It is because Permalink Manager overwrites one of the core Wordpress functionali
103
 
104
  == Changelog ==
105
 
 
 
 
 
 
106
  = 2.2.9.4 =
107
  * Fix - The language prefix for default language is now added again when "Use directory for default language" mode is turned on in WPML settings ("Language URL format")
108
 
7
  Requires at least: 4.4.0
8
  Requires PHP: 5.4
9
  Tested up to: 5.6.0
10
+ Stable tag: 2.2.9.6
11
 
12
  Permalink Manager allows to easily change full URL addresses of posts, pages, custom post types, terms and WooCommerce links. You can also set different permalink formats per language or bulk change the URLs.
13
 
103
 
104
  == Changelog ==
105
 
106
+ = 2.2.9.5/2.2.9.6 =
107
+ * Fix - The custom permalink is generated properly if the product is duplicated in WooCommerce dashboard
108
+ * Enhancement - New settings field - "Exclude drafts"
109
+ * Enhancement - Minor code improvements
110
+
111
  = 2.2.9.4 =
112
  * Fix - The language prefix for default language is now added again when "Use directory for default language" mode is turned on in WPML settings ("Language URL format")
113
 
includes/core/permalink-manager-actions.php CHANGED
@@ -12,7 +12,7 @@ class Permalink_Manager_Actions extends Permalink_Manager_Class {
12
  if(is_admin()) {
13
  add_action('wp_ajax_pm_bulk_tools', array($this, 'pm_bulk_tools'));
14
  add_action('wp_ajax_pm_save_permalink', array($this, 'pm_save_permalink'));
15
- add_action('wp_ajax_detect_duplicates', array($this, 'ajax_detect_duplicates') );
16
  }
17
 
18
  add_action('clean_permalinks_event', array($this, 'clean_permalinks_hook'));
12
  if(is_admin()) {
13
  add_action('wp_ajax_pm_bulk_tools', array($this, 'pm_bulk_tools'));
14
  add_action('wp_ajax_pm_save_permalink', array($this, 'pm_save_permalink'));
15
+ add_action('wp_ajax_pm_detect_duplicates', array($this, 'ajax_detect_duplicates') );
16
  }
17
 
18
  add_action('clean_permalinks_event', array($this, 'clean_permalinks_hook'));
includes/core/permalink-manager-admin-functions.php CHANGED
@@ -258,6 +258,11 @@ class Permalink_Manager_Admin_Functions extends Permalink_Manager_Class {
258
  $input_template = "<label for='%s[]'><input type='checkbox' %s value='%s' name='%s[]' %s /> %s</label>";
259
 
260
  if(empty($choice['label']) && is_array($choice)) {
 
 
 
 
 
261
  foreach($choice as $sub_choice_value => $sub_choice) {
262
  $label = (!empty($sub_choice['label'])) ? $sub_choice['label'] : $sub_choice;
263
  $atts = (!empty($value[$choice_value]) && in_array($sub_choice_value, $value[$choice_value])) ? "checked='checked'" : "";
258
  $input_template = "<label for='%s[]'><input type='checkbox' %s value='%s' name='%s[]' %s /> %s</label>";
259
 
260
  if(empty($choice['label']) && is_array($choice)) {
261
+ if(in_array($choice_value, array('post_types', 'taxonomies'))) {
262
+ $group_labela = array('post_types' => __('Post types', 'permalink-manager'), 'taxonomies' => __('Taxonomies', 'permalink-manager'));
263
+ $fields .= sprintf('<p>%s</p>', $group_labela[$choice_value]);
264
+ }
265
+
266
  foreach($choice as $sub_choice_value => $sub_choice) {
267
  $label = (!empty($sub_choice['label'])) ? $sub_choice['label'] : $sub_choice;
268
  $atts = (!empty($value[$choice_value]) && in_array($sub_choice_value, $value[$choice_value])) ? "checked='checked'" : "";
includes/core/permalink-manager-core-functions.php CHANGED
@@ -18,6 +18,7 @@ class Permalink_Manager_Core_Functions extends Permalink_Manager_Class {
18
  add_filter( 'permalink_manager_filter_post_sample_uri', array($this, 'control_trailing_slashes'), 9);
19
  add_filter( 'wpseo_canonical', array($this, 'control_trailing_slashes'), 9);
20
  add_filter( 'wpseo_opengraph_url', array($this, 'control_trailing_slashes'), 9);
 
21
 
22
  /**
23
  * Detect & canonical URL/redirect functions
@@ -451,7 +452,7 @@ class Permalink_Manager_Core_Functions extends Permalink_Manager_Class {
451
  $trailing_slash_setting = (!empty($permalink_manager_options['general']['trailing_slashes'])) ? $permalink_manager_options['general']['trailing_slashes'] : "";
452
 
453
  // Remove trailing slashes from URLs that end with file extension (eg. .html)
454
- if(preg_match('/.*\.([a-zA-Z]{3,4})\/?$/', $permalink)) {
455
  $permalink = preg_replace('/^(?!http(?:s):\/\/[^\/]+\/$)(.+?)([\/]*)(\[\?\#][^\/]+|$)/', '$1$3', $permalink); // Instead of untrailingslashit()
456
  } else {
457
  // Add trailing slashes
@@ -594,7 +595,6 @@ class Permalink_Manager_Core_Functions extends Permalink_Manager_Class {
594
  if(!is_array($redirects)) { continue; }
595
 
596
  if(in_array($uri, $redirects) || in_array($decoded_url, $redirects) || (is_numeric($endpoint_value) && in_array($endpoint_url, $redirects))) {
597
-
598
  // Post is detected
599
  if(is_numeric($element)) {
600
  $correct_permalink = get_permalink($element);
@@ -604,6 +604,9 @@ class Permalink_Manager_Core_Functions extends Permalink_Manager_Class {
604
  $term_id = intval(preg_replace("/[^0-9]/", "", $element));
605
  $correct_permalink = get_term_link($term_id);
606
  }
 
 
 
607
  }
608
  }
609
 
@@ -654,7 +657,7 @@ class Permalink_Manager_Core_Functions extends Permalink_Manager_Class {
654
  /**
655
  * 1E. Old slug redirect
656
  */
657
- if($old_slug_redirect && !empty($pm_query['uri']) && empty($wp_query->query_vars['do_not_redirect']) && is_404()) {
658
  $slug = basename($pm_query['uri']);
659
 
660
  $post_id = $wpdb->get_var($wpdb->prepare("SELECT post_id from {$wpdb->postmeta} WHERE meta_key = '_wp_old_slug' AND meta_value = %s", $slug));
18
  add_filter( 'permalink_manager_filter_post_sample_uri', array($this, 'control_trailing_slashes'), 9);
19
  add_filter( 'wpseo_canonical', array($this, 'control_trailing_slashes'), 9);
20
  add_filter( 'wpseo_opengraph_url', array($this, 'control_trailing_slashes'), 9);
21
+ add_filter( 'paginate_links', array($this, 'control_trailing_slashes'), 9);
22
 
23
  /**
24
  * Detect & canonical URL/redirect functions
452
  $trailing_slash_setting = (!empty($permalink_manager_options['general']['trailing_slashes'])) ? $permalink_manager_options['general']['trailing_slashes'] : "";
453
 
454
  // Remove trailing slashes from URLs that end with file extension (eg. .html)
455
+ if(preg_match('/(http(?:s)?:\/\/(?:[^\/]+)\/.*\.([a-zA-Z]{3,4}))\/?$/', $permalink)) {
456
  $permalink = preg_replace('/^(?!http(?:s):\/\/[^\/]+\/$)(.+?)([\/]*)(\[\?\#][^\/]+|$)/', '$1$3', $permalink); // Instead of untrailingslashit()
457
  } else {
458
  // Add trailing slashes
595
  if(!is_array($redirects)) { continue; }
596
 
597
  if(in_array($uri, $redirects) || in_array($decoded_url, $redirects) || (is_numeric($endpoint_value) && in_array($endpoint_url, $redirects))) {
 
598
  // Post is detected
599
  if(is_numeric($element)) {
600
  $correct_permalink = get_permalink($element);
604
  $term_id = intval(preg_replace("/[^0-9]/", "", $element));
605
  $correct_permalink = get_term_link($term_id);
606
  }
607
+
608
+ // The custom redirect is found so there is no need to query the rest of array
609
+ continue;
610
  }
611
  }
612
 
657
  /**
658
  * 1E. Old slug redirect
659
  */
660
+ if($old_slug_redirect && !empty($pm_query['uri']) && empty($wp_query->query_vars['do_not_redirect']) && is_404() && empty($correct_permalink)) {
661
  $slug = basename($pm_query['uri']);
662
 
663
  $post_id = $wpdb->get_var($wpdb->prepare("SELECT post_id from {$wpdb->postmeta} WHERE meta_key = '_wp_old_slug' AND meta_value = %s", $slug));
includes/core/permalink-manager-gutenberg.php CHANGED
@@ -7,6 +7,9 @@ class Permalink_Manager_Gutenberg extends Permalink_Manager_Class {
7
 
8
  public function __construct() {
9
  add_action('enqueue_block_editor_assets', array($this, 'init'));
 
 
 
10
  }
11
 
12
  public function init() {
@@ -23,14 +26,15 @@ class Permalink_Manager_Gutenberg extends Permalink_Manager_Class {
23
  $show_uri_editor = apply_filters("permalink_manager_hide_uri_editor_post_{$post_type}", true);
24
  if(!$show_uri_editor) { return; }
25
 
26
- add_meta_box('permalink-manager', __('Permalink Manager', 'permalink-manager'), array($this, 'meta_box'), '', 'side', 'high' );
 
27
  }
28
 
29
- public function meta_box($post) {
30
- global $permalink_manager_uris;
31
-
32
- if(empty($post->ID)) {
33
  return '';
 
 
34
  }
35
 
36
  // Display URI Editor
7
 
8
  public function __construct() {
9
  add_action('enqueue_block_editor_assets', array($this, 'init'));
10
+
11
+ // add_action('wp_ajax_pm_get_uri_editor', array($this, 'get_uri_editor'));
12
+ // add_action('wp_ajax_nopriv_pm_get_uri_editor', array($this, 'get_uri_editor'));
13
  }
14
 
15
  public function init() {
26
  $show_uri_editor = apply_filters("permalink_manager_hide_uri_editor_post_{$post_type}", true);
27
  if(!$show_uri_editor) { return; }
28
 
29
+ add_meta_box('permalink-manager', __('Permalink Manager', 'permalink-manager'), array($this, 'get_uri_editor'), '', 'side', 'high' );
30
+ // wp_enqueue_script('permalink-manager-gutenberg', PERMALINK_MANAGER_URL . '/out/permalink-manager-gutenberg.js', array('wp-plugins', 'wp-edit-post', 'wp-i18n', 'wp-element'));
31
  }
32
 
33
+ public function get_uri_editor($post = null) {
34
+ if(empty($post->ID) && empty($_REQUEST['post_id'])) {
 
 
35
  return '';
36
+ } else if(!empty($_REQUEST['post_id'])) {
37
+ $post = get_post($_REQUEST['post_id']);
38
  }
39
 
40
  // Display URI Editor
includes/core/permalink-manager-language-plugins.php CHANGED
@@ -15,10 +15,9 @@ class Permalink_Manager_Language_Plugins extends Permalink_Manager_Class {
15
  // 1. WPML, Polylang & TranslatePress
16
  if($sitepress_settings || !empty($polylang->links_model->options) || class_exists('TRP_Translate_Press')) {
17
  // Detect Post/Term function
18
- if(!empty($permalink_manager_options['general']['fix_language_mismatch'])) {
19
- add_filter('permalink_manager_detected_post_id', array($this, 'fix_language_mismatch'), 9, 3);
20
- add_filter('permalink_manager_detected_term_id', array($this, 'fix_language_mismatch'), 9, 3);
21
- }
22
  // Fix posts page
23
  // else {
24
  add_filter('permalink_manager_filter_query', array($this, 'fix_posts_page'), 5, 5);
@@ -204,7 +203,9 @@ class Permalink_Manager_Language_Plugins extends Permalink_Manager_Class {
204
  }
205
 
206
  function fix_language_mismatch($item_id, $uri_parts, $is_term = false) {
207
- global $wp, $language_code;
 
 
208
 
209
  if($is_term) {
210
  $element = get_term($item_id);
@@ -226,11 +227,28 @@ class Permalink_Manager_Language_Plugins extends Permalink_Manager_Class {
226
  // Stop if no term or post is detected
227
  if(empty($element)) { return false; }
228
 
229
- $language_code = self::get_language_code($element);
 
 
 
 
 
 
 
 
 
 
230
 
231
- if(!empty($uri_parts['lang']) && ($uri_parts['lang'] != $language_code)) {
232
- $wpml_item_id = apply_filters('wpml_object_id', $element_id, $element_type);
233
- $item_id = (is_numeric($wpml_item_id)) ? $wpml_item_id : $item_id;
 
 
 
 
 
 
 
234
  }
235
 
236
  return $item_id;
15
  // 1. WPML, Polylang & TranslatePress
16
  if($sitepress_settings || !empty($polylang->links_model->options) || class_exists('TRP_Translate_Press')) {
17
  // Detect Post/Term function
18
+ add_filter('permalink_manager_detected_post_id', array($this, 'fix_language_mismatch'), 9, 3);
19
+ add_filter('permalink_manager_detected_term_id', array($this, 'fix_language_mismatch'), 9, 3);
20
+
 
21
  // Fix posts page
22
  // else {
23
  add_filter('permalink_manager_filter_query', array($this, 'fix_posts_page'), 5, 5);
203
  }
204
 
205
  function fix_language_mismatch($item_id, $uri_parts, $is_term = false) {
206
+ global $wp, $language_code, $permalink_manager_options;
207
+
208
+ $mode = (!empty($permalink_manager_options['general']['fix_language_mismatch'])) ? $permalink_manager_options['general']['fix_language_mismatch'] : 0;
209
 
210
  if($is_term) {
211
  $element = get_term($item_id);
227
  // Stop if no term or post is detected
228
  if(empty($element)) { return false; }
229
 
230
+ // Get the language code of the found post/term
231
+ $element_language_code = self::get_language_code($element);
232
+
233
+ // Get the detected language code
234
+ if(defined('ICL_LANGUAGE_CODE')) {
235
+ $detected_language_code = ICL_LANGUAGE_CODE;
236
+ } else if(!empty($uri_parts['lang'])) {
237
+ $detected_language_code = $uri_parts['lang'];
238
+ } else {
239
+ return $item_id;
240
+ }
241
 
242
+ if($detected_language_code !== $element_language_code) {
243
+ // A. Display the content in requested language
244
+ if($mode == 1) {
245
+ $wpml_item_id = apply_filters('wpml_object_id', $element_id, $element_type);
246
+ $item_id = (is_numeric($wpml_item_id)) ? $wpml_item_id : $item_id;
247
+ }
248
+ // C. Display "404 error"
249
+ else {
250
+ $item_id = 0;
251
+ }
252
  }
253
 
254
  return $item_id;
includes/core/permalink-manager-third-parties.php CHANGED
@@ -28,17 +28,19 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
28
  add_filter('request', array($this, 'woocommerce_detect'), 20, 1);
29
  add_filter('template_redirect', array($this, 'woocommerce_checkout_fix'), 9);
30
 
31
- if(class_exists('Permalink_Manager_Pro_Functions')) {
32
  if(is_admin()){
33
  add_filter('woocommerce_coupon_data_tabs', 'Permalink_Manager_Pro_Functions::woocommerce_coupon_tabs');
34
  add_action('woocommerce_coupon_data_panels', 'Permalink_Manager_Pro_Functions::woocommerce_coupon_panel');
35
  add_action('woocommerce_coupon_options_save', 'Permalink_Manager_Pro_Functions::woocommerce_save_coupon_uri', 9, 2);
36
  }
 
37
  add_filter('request', 'Permalink_Manager_Pro_Functions::woocommerce_detect_coupon_code', 1, 1);
38
  add_filter('permalink_manager_disabled_post_types', 'Permalink_Manager_Pro_Functions::woocommerce_coupon_uris', 9, 1);
39
  }
40
 
41
  add_action('woocommerce_product_import_inserted_product_object', array($this, 'woocommerce_generate_permalinks_after_import'), 9, 2);
 
42
  add_filter('permalink_manager_filter_default_post_uri', array($this, 'woocommerce_product_attributes'), 5, 5);
43
 
44
  if(wp_doing_ajax() && class_exists('SitePress')) {
@@ -99,7 +101,7 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
99
  }
100
 
101
  // 12. My Listing by 27collective
102
- if(defined('CASE27_THEME_DIR')) {
103
  add_filter('permalink_manager_filter_default_post_uri', array($this, 'ml_listing_custom_fields'), 5, 5 );
104
  add_action('mylisting/submission/save-listing-data', array($this, 'ml_set_listing_uri'), 100);
105
  add_filter('permalink_manager_filter_query', array($this, 'ml_detect_archives'), 1);
@@ -363,7 +365,7 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
363
  $product_id = $object->get_id();
364
 
365
  // Ignore variations
366
- if(empty($permalink_manager_uris[$product_id]) && $object->get_type() !== 'variation') {
367
  $permalink_manager_uris[$product_id] = Permalink_Manager_URI_Functions_Post::get_default_post_uri($product_id, false, true);
368
 
369
  update_option('permalink-manager-uris', $permalink_manager_uris);
@@ -483,6 +485,12 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
483
  } else if(!empty($element->taxonomy) && !empty($element->term_id)) {
484
  $new_url = get_term_link($element, $element->taxonomy);
485
 
 
 
 
 
 
 
486
  $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
487
  if($paged > 1) {
488
  $new_url = sprintf('%s/%s/%d', trim($new_url, '/'), $wp_rewrite->pagination_base, $paged);
@@ -928,7 +936,7 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
928
  function ml_set_listing_uri($post_id) {
929
  global $permalink_manager_uris;
930
 
931
- if(!empty($permalink_manager_uris) && empty($permalink_manager_uris[$post_id])) {
932
  $default_uri = Permalink_Manager_URI_Functions_Post::get_default_post_uri($post_id);
933
 
934
  if($default_uri) {
28
  add_filter('request', array($this, 'woocommerce_detect'), 20, 1);
29
  add_filter('template_redirect', array($this, 'woocommerce_checkout_fix'), 9);
30
 
31
+ if(class_exists('Permalink_Manager_Pro_Functions') && ((empty($permalink_manager_options['general']['partial_disable']['post_types'])) || !in_array('shop_coupon', $permalink_manager_options['general']['partial_disable']['post_types']))) {
32
  if(is_admin()){
33
  add_filter('woocommerce_coupon_data_tabs', 'Permalink_Manager_Pro_Functions::woocommerce_coupon_tabs');
34
  add_action('woocommerce_coupon_data_panels', 'Permalink_Manager_Pro_Functions::woocommerce_coupon_panel');
35
  add_action('woocommerce_coupon_options_save', 'Permalink_Manager_Pro_Functions::woocommerce_save_coupon_uri', 9, 2);
36
  }
37
+
38
  add_filter('request', 'Permalink_Manager_Pro_Functions::woocommerce_detect_coupon_code', 1, 1);
39
  add_filter('permalink_manager_disabled_post_types', 'Permalink_Manager_Pro_Functions::woocommerce_coupon_uris', 9, 1);
40
  }
41
 
42
  add_action('woocommerce_product_import_inserted_product_object', array($this, 'woocommerce_generate_permalinks_after_import'), 9, 2);
43
+ add_action('woocommerce_product_duplicate', array($this, 'woocommerce_generate_permalinks_after_import'), 9, 2);
44
  add_filter('permalink_manager_filter_default_post_uri', array($this, 'woocommerce_product_attributes'), 5, 5);
45
 
46
  if(wp_doing_ajax() && class_exists('SitePress')) {
101
  }
102
 
103
  // 12. My Listing by 27collective
104
+ if(class_exists('\MyListing\Post_Types')) {
105
  add_filter('permalink_manager_filter_default_post_uri', array($this, 'ml_listing_custom_fields'), 5, 5 );
106
  add_action('mylisting/submission/save-listing-data', array($this, 'ml_set_listing_uri'), 100);
107
  add_filter('permalink_manager_filter_query', array($this, 'ml_detect_archives'), 1);
365
  $product_id = $object->get_id();
366
 
367
  // Ignore variations
368
+ if($object->get_type() !== 'variation') {
369
  $permalink_manager_uris[$product_id] = Permalink_Manager_URI_Functions_Post::get_default_post_uri($product_id, false, true);
370
 
371
  update_option('permalink-manager-uris', $permalink_manager_uris);
485
  } else if(!empty($element->taxonomy) && !empty($element->term_id)) {
486
  $new_url = get_term_link($element, $element->taxonomy);
487
 
488
+ // Do not filter if custom canonical URL is set
489
+ if(class_exists('WPSEO_Taxonomy_Meta')) {
490
+ $yoast_canonical_url = WPSEO_Taxonomy_Meta::get_term_meta($element, $element->taxonomy, 'canonical' );
491
+ if(!empty($yoast_canonical_url)) { return $url; }
492
+ }
493
+
494
  $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
495
  if($paged > 1) {
496
  $new_url = sprintf('%s/%s/%d', trim($new_url, '/'), $wp_rewrite->pagination_base, $paged);
936
  function ml_set_listing_uri($post_id) {
937
  global $permalink_manager_uris;
938
 
939
+ if(!empty($permalink_manager_uris)) {
940
  $default_uri = Permalink_Manager_URI_Functions_Post::get_default_post_uri($post_id);
941
 
942
  if($default_uri) {
includes/core/permalink-manager-uri-functions-post.php CHANGED
@@ -476,7 +476,7 @@ class Permalink_Manager_URI_Functions_Post extends Permalink_Manager_Class {
476
  }
477
 
478
  if(($old_uri != $new_uri) || ($old_post_name != $new_post_name) && !(empty($new_uri))) {
479
- $permalink_manager_uris[$row['ID']] = $new_uri;
480
  $updated_array[] = array('item_title' => $row['post_title'], 'ID' => $row['ID'], 'old_uri' => $old_uri, 'new_uri' => $new_uri, 'old_slug' => $old_slug, 'new_slug' => $new_slug);
481
  $updated_slugs_count++;
482
  }
@@ -626,6 +626,9 @@ class Permalink_Manager_URI_Functions_Post extends Permalink_Manager_Class {
626
  // Check if post type is disabled
627
  if(Permalink_Manager_Helper_Functions::is_disabled($post->post_type, 'post_type')) { return $html; }
628
 
 
 
 
629
  // Stop the hook (if needed)
630
  $show_uri_editor = apply_filters("permalink_manager_hide_uri_editor_post_{$post->post_type}", true);
631
  if(!$show_uri_editor) { return $html; }
@@ -735,6 +738,9 @@ class Permalink_Manager_URI_Functions_Post extends Permalink_Manager_Class {
735
  // Check if post type is allowed
736
  if(empty($post_object->post_type) || Permalink_Manager_Helper_Functions::is_disabled($post_object->post_type, 'post_type')) { return $post_id; };
737
 
 
 
 
738
  // Stop the hook (if needed)
739
  $allow_new_uri = apply_filters("permalink_manager_allow_new_post_uri", true, $post_object);
740
  if(!$allow_new_uri) { return $post_id; }
@@ -783,6 +789,9 @@ class Permalink_Manager_URI_Functions_Post extends Permalink_Manager_Class {
783
  // Check if post type is allowed
784
  if(empty($post->post_type) || Permalink_Manager_Helper_Functions::is_disabled($post->post_type, 'post_type')) { return $post_id; };
785
 
 
 
 
786
  // Stop the hook (if needed)
787
  $allow_update_uri = apply_filters("permalink_manager_allow_update_post_uri", true, $post);
788
  if(!$allow_update_uri) { return $post_id; }
@@ -843,5 +852,3 @@ class Permalink_Manager_URI_Functions_Post extends Permalink_Manager_Class {
843
  }
844
 
845
  }
846
-
847
- ?>
476
  }
477
 
478
  if(($old_uri != $new_uri) || ($old_post_name != $new_post_name) && !(empty($new_uri))) {
479
+ $permalink_manager_uris[$row['ID']] = trim($new_uri, '/');
480
  $updated_array[] = array('item_title' => $row['post_title'], 'ID' => $row['ID'], 'old_uri' => $old_uri, 'new_uri' => $new_uri, 'old_slug' => $old_slug, 'new_slug' => $new_slug);
481
  $updated_slugs_count++;
482
  }
626
  // Check if post type is disabled
627
  if(Permalink_Manager_Helper_Functions::is_disabled($post->post_type, 'post_type')) { return $html; }
628
 
629
+ // Ignore drafts
630
+ if(!empty($permalink_manager_options["general"]["ignore_drafts"]) && !empty($post->post_status) && $post->post_status == 'draft') { return $html; }
631
+
632
  // Stop the hook (if needed)
633
  $show_uri_editor = apply_filters("permalink_manager_hide_uri_editor_post_{$post->post_type}", true);
634
  if(!$show_uri_editor) { return $html; }
738
  // Check if post type is allowed
739
  if(empty($post_object->post_type) || Permalink_Manager_Helper_Functions::is_disabled($post_object->post_type, 'post_type')) { return $post_id; };
740
 
741
+ // Exclude drafts
742
+ if(!empty($permalink_manager_options["general"]["ignore_drafts"]) && !empty($post_object->post_status) && $post_object->post_status == 'draft') { return $post_id; }
743
+
744
  // Stop the hook (if needed)
745
  $allow_new_uri = apply_filters("permalink_manager_allow_new_post_uri", true, $post_object);
746
  if(!$allow_new_uri) { return $post_id; }
789
  // Check if post type is allowed
790
  if(empty($post->post_type) || Permalink_Manager_Helper_Functions::is_disabled($post->post_type, 'post_type')) { return $post_id; };
791
 
792
+ // Exclude drafts
793
+ if(!empty($permalink_manager_options["general"]["ignore_drafts"]) && !empty($post->post_status) && $post->post_status == 'draft') { return $post_id; }
794
+
795
  // Stop the hook (if needed)
796
  $allow_update_uri = apply_filters("permalink_manager_allow_update_post_uri", true, $post);
797
  if(!$allow_update_uri) { return $post_id; }
852
  }
853
 
854
  }
 
 
includes/core/permalink-manager-uri-functions.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Functions used to create, edit and remove custom permalinks
5
+ */
6
+ class Permalink_Manager_URI_Functions extends Permalink_Manager_Class {
7
+
8
+ public function __construct() {
9
+
10
+ }
11
+
12
+ public static function get_single_uri_key($element_id, $is_tax = false) {
13
+ // Check if the element ID is numeric
14
+ if(empty($element_id) || !is_numeric($element_id)) { return; }
15
+
16
+ if($is_tax) {
17
+ $element_id = "tax-{$element_id}";
18
+ }
19
+
20
+ return $element_id;
21
+ }
22
+
23
+ /**
24
+ * Save URI to the custom permalinks array
25
+ */
26
+ public static function save_single_uri($element, $element_uri = null, $is_tax = false, $db_save = false) {
27
+ global $permalink_manager_uris;
28
+
29
+ // Get the element key
30
+ $element_key = self::get_single_uri_key($element, $is_tax);
31
+
32
+ // Save the custom permalink if the URI is not empty
33
+ if(!empty($element_key) && !empty($element_uri)) {
34
+ $permalink_manager_uris[$element_key] = Permalink_Manager_Helper_Functions::sanitize_title($element_uri, true);
35
+
36
+ if($db_save) {
37
+ self::save_all_uris($permalink_manager_uris);
38
+ }
39
+ }
40
+ }
41
+
42
+ /**
43
+ * Remove URI to the custom permalinks array
44
+ */
45
+ public static function remove_single_uri($element, $is_tax = false, $db_save = false) {
46
+ global $permalink_manager_uris;
47
+
48
+ // Get the element key
49
+ $element_key = self::get_single_uri_key($element, $is_tax);
50
+
51
+ // Check if the custom permalink is assigned to this post
52
+ if(!empty($element_key) && isset($permalink_manager_uris[$element_key])) {
53
+ unset($permalink_manager_uris[$element_key]);
54
+ }
55
+
56
+ if($db_save) {
57
+ self::save_all_uris($permalink_manager_uris);
58
+ }
59
+ }
60
+
61
+ /**
62
+ * Save the array with custom permalinks
63
+ */
64
+ public static function save_all_uris($updated_uris) {
65
+ if(is_array($updated_uris) && !empty($updated_uris)) {
66
+ update_option('permalink-manager-uris', $updated_uris);
67
+ }
68
+ }
69
+
70
+ }
71
+
72
+ ?>
includes/views/permalink-manager-settings.php CHANGED
@@ -110,14 +110,13 @@ class Permalink_Manager_Settings extends Permalink_Manager_Class {
110
  ),
111
  'setup_redirects' => array(
112
  'type' => 'single_checkbox',
113
- 'label' => __('Old custom permalinks redirect', 'permalink-manager'),
114
  'input_class' => '',
115
  'pro' => true,
116
  'disabled' => true,
117
  'description' => sprintf('%s<br />%s',
118
- __('<strong>Permalink Manager can automatically set-up extra redirects after the custom permalink is changed.</strong>', 'permalink-manager'),
119
- __('If enabled, Permalink Manage will add redirect for earlier version of custom permalink after you change it (eg. with URI Editor or Regenerate/reset tool).', 'permalink-manager'),
120
- __('You can disable this feature if you use another plugin for redirects, eg. Yoast SEO Premium or Redirection.', 'permalink-manager')
121
  )
122
  ),
123
  'sslwww_redirect' => array(
@@ -170,13 +169,7 @@ class Permalink_Manager_Settings extends Permalink_Manager_Class {
170
  'label' => __('Breadcrumbs support', 'permalink-manager'),
171
  'input_class' => '',
172
  'description' => __('If enabled, the HTML breadcrumbs will be filtered by Permalink Manager to mimic the current URL structure.<br />Works with: <strong>WooCommerce, Yoast SEO, RankMath and SEOPress</strong> breadcrumbs.', 'permalink-manager')
173
- ),
174
- 'partial_disable' => array(
175
- 'type' => 'checkbox',
176
- 'label' => __('Excluded content types', 'permalink-manager'),
177
- 'choices' => $content_types,
178
- 'description' => __('Permalink Manager will ignore and not filter the custom permalinks of all selected above post types & taxonomies.', 'permalink-manager')
179
- ),
180
  )
181
  ),
182
  'advanced' => array(
@@ -186,14 +179,11 @@ class Permalink_Manager_Settings extends Permalink_Manager_Class {
186
  'fields' => array(
187
  'show_native_slug_field' => array(
188
  'type' => 'single_checkbox',
189
- 'label' => __('Show "Native slug" field', 'permalink-manager'),
190
- 'input_class' => '',
191
- 'description' => __('If enabled, it would be possible to edit the native slug via URI Editor on single post/term edit page.', 'permalink-manager')
192
  ),
193
  'pagination_redirect' => array(
194
  'type' => 'single_checkbox',
195
  'label' => __('Force 404 on non-existing pagination pages', 'permalink-manager'),
196
- 'input_class' => '',
197
  'description' => __('If enabled, the non-existing pagination pages (for single posts) will return 404 ("Not Found") error.<br /><strong>Please disable it, if you encounter any problems with pagination pages or use custom pagination system.</strong>', 'permalink-manager')
198
  ),
199
  'disable_slug_sanitization' => array(
@@ -225,6 +215,17 @@ class Permalink_Manager_Settings extends Permalink_Manager_Class {
225
  __('Enable this option if you would like to automatically remove redundant permalinks & duplicated redirects.', 'permalink-manager')
226
  )
227
  ),
 
 
 
 
 
 
 
 
 
 
 
228
  )
229
  )
230
  ));
110
  ),
111
  'setup_redirects' => array(
112
  'type' => 'single_checkbox',
113
+ 'label' => __('Save old custom permalinks as redirects', 'permalink-manager'),
114
  'input_class' => '',
115
  'pro' => true,
116
  'disabled' => true,
117
  'description' => sprintf('%s<br />%s',
118
+ __('If enabled, Permalink Manage will save the "extra redirect" for earlier version of custom permalink after you change it (eg. with URI Editor or Regenerate/reset tool).', 'permalink-manager'),
119
+ __('You can disable this feature if you would like to use another plugin for redirects, eg. Yoast SEO Premium or Redirection.', 'permalink-manager')
 
120
  )
121
  ),
122
  'sslwww_redirect' => array(
169
  'label' => __('Breadcrumbs support', 'permalink-manager'),
170
  'input_class' => '',
171
  'description' => __('If enabled, the HTML breadcrumbs will be filtered by Permalink Manager to mimic the current URL structure.<br />Works with: <strong>WooCommerce, Yoast SEO, RankMath and SEOPress</strong> breadcrumbs.', 'permalink-manager')
172
+ )
 
 
 
 
 
 
173
  )
174
  ),
175
  'advanced' => array(
179
  'fields' => array(
180
  'show_native_slug_field' => array(
181
  'type' => 'single_checkbox',
182
+ 'label' => __('Show "Native slug" field in URI Editor', 'permalink-manager'),
 
 
183
  ),
184
  'pagination_redirect' => array(
185
  'type' => 'single_checkbox',
186
  'label' => __('Force 404 on non-existing pagination pages', 'permalink-manager'),
 
187
  'description' => __('If enabled, the non-existing pagination pages (for single posts) will return 404 ("Not Found") error.<br /><strong>Please disable it, if you encounter any problems with pagination pages or use custom pagination system.</strong>', 'permalink-manager')
188
  ),
189
  'disable_slug_sanitization' => array(
215
  __('Enable this option if you would like to automatically remove redundant permalinks & duplicated redirects.', 'permalink-manager')
216
  )
217
  ),
218
+ 'partial_disable' => array(
219
+ 'type' => 'checkbox',
220
+ 'label' => __('Exclude content types', 'permalink-manager'),
221
+ 'choices' => $content_types,
222
+ 'description' => __('Permalink Manager will ignore and not filter the custom permalinks of all selected above post types & taxonomies.', 'permalink-manager')
223
+ ),
224
+ 'ignore_drafts' => array(
225
+ 'type' => 'single_checkbox',
226
+ 'label' => __('Exclude drafts', 'permalink-manager'),
227
+ 'description' => __('If enabled, the custom permalinks for post drafts will not be saved.', 'permalink-manager')
228
+ ),
229
  )
230
  )
231
  ));
languages/permalink-manager-ja.mo CHANGED
Binary file
languages/permalink-manager-ja.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Permalink Manager Lite\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2020-11-23 20:44+0000\n"
6
- "PO-Revision-Date: 2020-11-23 20:45+0000\n"
7
  "Last-Translator: admin\n"
8
  "Language-Team: Japanese\n"
9
  "Language: ja\n"
@@ -14,446 +14,341 @@ msgstr ""
14
  "X-Generator: Loco https://localise.biz/\n"
15
  "X-Loco-Version: 2.4.4; wp-5.5.3"
16
 
17
- #: permalink-manager.php:207
18
- #, php-format
19
  msgid ""
20
- "Get access to extra features: full taxonomy and WooCommerce support, "
21
- "possibility to use custom fields inside the permalinks and more!<br />"
22
- "<strong>Buy Permalink Manager Pro <a href=\"%s\" target=\"_blank\">here</a> "
23
- "and save %s using \"%s\" coupon code!</strong> Valid until %s!"
24
  msgstr ""
25
- "様々な機能へアクセス:タクソノミーとWooCommerceへのフルサポート、パーマリンク内のカスタムフィールドの使用など、盛り沢山!<br />"
26
- "<strong>パーマリンク マネージャー Proの購入は<a href=\"%s\" target=\"_blank\">コチラ</a>! %s "
27
- "の割引 「%s」をご利用下さい。 </strong> %s まで!"
28
 
29
- #: includes/core/permalink-manager-third-parties.php:292
30
  msgid "\"Custom Permalinks\" URIs were imported!"
31
  msgstr "「カスタム パーマリンク」URIは、インポートされました!"
32
 
33
- #: includes/core/permalink-manager-third-parties.php:295
34
- msgid "No \"Custom Permalinks\" URIs were imported!"
35
- msgstr "「カスタム パーマリンク」 URIはインポートされませんでした!"
36
-
37
- #: includes/core/permalink-manager-third-parties.php:681
38
- #: includes/core/permalink-manager-gutenberg.php:26
39
- #: includes/core/permalink-manager-admin-functions.php:111
40
- #: includes/core/permalink-manager-admin-functions.php:111
41
- #: includes/core/permalink-manager-admin-functions.php:737
42
- #: includes/core/permalink-manager-admin-functions.php:818
43
- #: includes/core/permalink-manager-admin-functions.php:823
44
- #: includes/core/permalink-manager-admin-functions.php:824
45
- msgid "Permalink Manager"
46
- msgstr "Permalink Manager"
47
-
48
- #: includes/core/permalink-manager-third-parties.php:685
49
- #: includes/core/permalink-manager-uri-functions-tax.php:482
50
- #: includes/views/permalink-manager-tools.php:70
51
- msgid "Custom URI"
52
- msgstr "カスタム URI"
53
 
54
- #: includes/core/permalink-manager-third-parties.php:686
55
  #, php-format
56
- msgid ""
57
- "If empty, a default permalink based on your current <a href=\"%s\" "
58
- "target=\"_blank\">permastructure settings</a> will be used."
59
- msgstr ""
60
- "空の場合、現在の<a href=\"%s\" target=\"_blank\">パーマ構造 設定</a>"
61
- "に基づいたデフォルトのパーマリンクが適用されます。"
62
-
63
- #: includes/core/permalink-manager-uri-functions-tax.php:483
64
- msgid "Clear/leave the field empty to use the default permalink."
65
- msgstr "デフォルトのパーマリンクを使用するため、フィールドを空のままにする / クリアする"
66
-
67
- #: includes/core/permalink-manager-uri-functions-tax.php:515
68
- #: includes/core/permalink-manager-admin-functions.php:741
69
- #: includes/core/permalink-manager-admin-functions.php:841
70
- #: includes/core/permalink-manager-uri-functions-post.php:687
71
- msgid "Current URI"
72
- msgstr "現在のURI"
73
-
74
- #: includes/core/permalink-manager-admin-functions.php:135
75
- msgid "Are you sure? This action cannot be undone!"
76
- msgstr "本当によろしいですか?この操作は、元に戻せません!"
77
 
78
- #: includes/core/permalink-manager-admin-functions.php:156
79
- msgid "URI Editor"
80
- msgstr "URIエディター"
 
81
 
82
- #: includes/core/permalink-manager-admin-functions.php:157
83
- #: includes/views/permalink-manager-settings.php:14
84
- msgid "Settings"
85
- msgstr "設定"
86
 
87
- #: includes/core/permalink-manager-admin-functions.php:169
88
- msgid "Documentation"
89
- msgstr "ドキュメント"
90
 
91
- #: includes/core/permalink-manager-admin-functions.php:173
92
- msgid "Buy Permalink Manager Pro"
93
- msgstr "Permalink Manager Proを購入"
94
 
95
- #: includes/core/permalink-manager-admin-functions.php:280
96
- msgid "Select all"
97
- msgstr "全てを選択する"
98
 
99
- #: includes/core/permalink-manager-admin-functions.php:281
100
- msgid "Unselect all"
101
- msgstr "選択を全て解除する"
102
 
103
- #: includes/core/permalink-manager-admin-functions.php:396
104
- msgid "Permastructure translations"
105
- msgstr "パーマ構造 翻訳"
 
106
 
107
- #: includes/core/permalink-manager-admin-functions.php:397
 
108
  msgid ""
109
- "If you would like to translate the permastructures and set-up different "
110
- "permalink structure per language, please fill in the fields below. Otherwise "
111
- "the permastructure set for default language (see field above) will be "
112
- "applied."
113
  msgstr ""
114
- "パーマ構造を翻訳し、言語ごとに異なるパーマリンク構造を設定する場合は、以下のフィールドに入力して下さい。 それ以外は、デフォルト言語のパーマ構造 "
115
- "セット(上記のフィールドを参照)が適用されます。"
116
-
117
- #: includes/core/permalink-manager-admin-functions.php:414
118
- msgid "Default permastructure"
119
- msgstr "デフォルト パーマ構造"
120
-
121
- #: includes/core/permalink-manager-admin-functions.php:415
122
- msgid "Restore default permastructure"
123
- msgstr "デフォルトのパーマ構造を復元する"
124
-
125
- #: includes/core/permalink-manager-admin-functions.php:421
126
- #: includes/core/permalink-manager-actions.php:409
127
- #: includes/core/permalink-manager-actions.php:413
128
- msgid "Permastructure settings"
129
- msgstr "パーマ構造 設定"
130
-
131
- #: includes/core/permalink-manager-admin-functions.php:422
132
- msgid "Do not automatically append the slug"
133
- msgstr "スラッグを自動的に追加しない"
134
-
135
- #: includes/core/permalink-manager-admin-functions.php:430
136
- msgid "Show additional settings"
137
- msgstr "追加設定を表示する"
138
-
139
- #: includes/core/permalink-manager-admin-functions.php:577
140
- msgid "Donate"
141
- msgstr "寄付"
142
-
143
- #: includes/core/permalink-manager-admin-functions.php:578
144
- msgid "by Maciej Bis"
145
- msgstr "by Maciej Bis"
146
-
147
- #: includes/core/permalink-manager-admin-functions.php:590
148
- msgid "Upgrade to PRO"
149
- msgstr "Pro版にアップグレード"
150
-
151
- #: includes/core/permalink-manager-admin-functions.php:657
152
- #: includes/core/permalink-manager-admin-functions.php:684
153
- msgid "Title"
154
- msgstr "タイトル"
155
-
156
- #: includes/core/permalink-manager-admin-functions.php:659
157
- #: includes/core/permalink-manager-admin-functions.php:686
158
- msgid "Old Slug"
159
- msgstr "古いスラッグ"
160
-
161
- #: includes/core/permalink-manager-admin-functions.php:660
162
- #: includes/core/permalink-manager-admin-functions.php:687
163
- msgid "New Slug"
164
- msgstr "新しいスラッグ"
165
-
166
- #: includes/core/permalink-manager-admin-functions.php:662
167
- #: includes/core/permalink-manager-admin-functions.php:689
168
- msgid "Old URI"
169
- msgstr "古いURI"
170
-
171
- #: includes/core/permalink-manager-admin-functions.php:663
172
- #: includes/core/permalink-manager-admin-functions.php:690
173
- msgid "New URI"
174
- msgstr "新しいURI"
175
-
176
- #: includes/core/permalink-manager-admin-functions.php:684
177
- msgid "Show more details"
178
- msgstr "さらなる詳細を表示する"
179
-
180
- #: includes/core/permalink-manager-admin-functions.php:697
181
- msgid "List of updated items"
182
- msgstr "更新済みのアイテムのリスト"
183
 
184
- #: includes/core/permalink-manager-admin-functions.php:710
185
  #, php-format
186
  msgid "<strong class=\"updated_count\">%d</strong> slug was updated!"
187
  msgid_plural "<strong class=\"updated_count\">%d</strong> slugs were updated!"
188
  msgstr[0] "<strong class=\"updated_count\">%d</strong> スラッグは、更新されました!"
189
  msgstr[1] ""
190
 
191
- #: includes/core/permalink-manager-admin-functions.php:711
192
- #, php-format
193
- msgid "<a %s>Click here</a> to go to the list of updated slugs"
194
- msgstr "更新されたスラッグのリストは、<a %s>ここをクリック</a> "
 
 
195
 
196
- #: includes/core/permalink-manager-admin-functions.php:715
 
 
 
 
 
 
 
 
197
  #: includes/core/permalink-manager-actions.php:115
198
  msgid "<strong>No slugs</strong> were updated!"
199
  msgstr "スラッグは、更新されませんでした。"
200
 
201
- #: includes/core/permalink-manager-admin-functions.php:804
202
- #: includes/core/permalink-manager-admin-functions.php:807
203
- msgid "Yes"
204
- msgstr "はい"
205
-
206
- #: includes/core/permalink-manager-admin-functions.php:804
207
- #: includes/core/permalink-manager-admin-functions.php:808
208
- msgid "No"
209
- msgstr "いいえ"
210
-
211
- #: includes/core/permalink-manager-admin-functions.php:806
212
- #, php-format
213
- msgid "Use global settings [%s]"
214
- msgstr "グローバル設定を使用する [%s]"
215
-
216
- #: includes/core/permalink-manager-admin-functions.php:809
217
- msgid "No (ignore this URI in bulk tools)"
218
- msgstr "いいえ(一括ツールでは、このURIを無視します。)"
219
-
220
- #: includes/core/permalink-manager-admin-functions.php:823
221
- msgid "Close: "
222
- msgstr "閉じる:"
223
-
224
- #: includes/core/permalink-manager-admin-functions.php:835
225
- msgid "The custom URI cannot be edited on frontpage."
226
- msgstr "カスタムURIは、フロントページでは編集不可です。"
227
-
228
- #: includes/core/permalink-manager-admin-functions.php:842
229
  msgid ""
230
- "If custom URI is not defined, a default URI will be set (see below). The "
231
- "custom URI can be edited only if 'Auto-update the URI' feature is not "
232
- "enabled."
233
  msgstr ""
234
- "カスタムURIが定義されていない場合、デフォルトのURIが設定されます。(以下を参照)カスタムURIは、「URIの自動更新」機能が有効になっていない場合のみ編集できます。"
235
-
236
- #: includes/core/permalink-manager-admin-functions.php:851
237
- msgid "Native slug"
238
- msgstr "ネイティブ スラッグ"
239
 
240
- #: includes/core/permalink-manager-admin-functions.php:852
241
  msgid ""
242
- "The native slug is by default automatically used in native permalinks (when "
243
- "Permalink Manager is disabled)."
244
  msgstr ""
245
- "ネイティブ スラッグは、(Permalink Managerが無効になっている場合)デフォルトでは自動的にネイティブパーマリンクが使用されます。"
246
-
247
- #: includes/core/permalink-manager-admin-functions.php:862
248
- msgid "Auto-update the URI"
249
- msgstr "URIの自動更新"
250
 
251
- #: includes/core/permalink-manager-admin-functions.php:863
252
  msgid ""
253
- "If enabled, the 'Current URI' field will be automatically changed to "
254
- "'Default URI' (displayed below) after the post is saved or updated."
255
- msgstr "有効にすると、「現在のURI」項目は投稿が更新又は保存された後に、(下記に表示された)「デフォルトURI」に自動的に変更されます。"
256
-
257
- #: includes/core/permalink-manager-admin-functions.php:871
258
- msgid "Default URI"
259
- msgstr "デフォルト URI"
260
-
261
- #: includes/core/permalink-manager-admin-functions.php:872
262
- msgid "Restore Default URI"
263
- msgstr "デフォルトのURIを復元する"
264
-
265
- #: includes/core/permalink-manager-admin-functions.php:882
266
- msgid "Automatic redirect for native URI enabled:"
267
- msgstr "ネイティブURIの自動リダイレクトを有効にする:"
268
 
269
- #: includes/core/permalink-manager-admin-functions.php:893
270
- #, php-format
271
  msgid ""
272
- "<span><strong>Need more functionalities and dedicated support?</strong> Buy "
273
- "Permalink Manager Pro and apply <a href=\"https://permalinkmanager.pro/buy-"
274
- "permalink-manager-pro/\">PMLITE coupon code</a> to get 10% off.</a></span>"
275
  msgstr ""
276
- "<span><strong>さらなる機能と専用サポートが必要ですか?</strong>Permalink Manager "
277
- "Proを購入して10%割引の<a href=\"https://permalinkmanager.pro/buy-permalink-manager-"
278
- "pro/\">PMLITEクーポンコード</a>を適用してください。</a></span>"
279
 
280
- #: includes/core/permalink-manager-admin-functions.php:904
281
- msgid "Save permalink"
282
- msgstr "パーマリンクを保存する"
 
 
 
 
283
 
284
- #: includes/core/permalink-manager-admin-functions.php:931
285
- msgid "Manage redirects"
286
- msgstr "リダイレクトを管理"
 
 
 
 
287
 
288
- #: includes/core/permalink-manager-admin-functions.php:1049
289
  #, php-format
290
  msgid ""
291
- "This functionality is available only in <a href=\"%s\" target=\"_blank\">"
292
- "Permalink Manager Pro</a>."
293
- msgstr "この機能は、Permalink Manager Proのみ利用可能です。"
 
 
294
 
295
- #: includes/core/permalink-manager-pro-functions.php:126
296
- #, php-format
297
  msgid ""
298
- "Please paste the licence key to access all Permalink Manager Pro updates & "
299
- "features <a href=\"%s\" target=\"_blank\">on this page</a>."
300
  msgstr ""
301
- "<a href=\"%s\" target=\"_blank\">コチラのページ</a>にて、ライセンスキーを設定して全てのPermalink "
302
- "Manager Pro のアップデート&機能をご利用下さい。"
303
 
304
- #: includes/core/permalink-manager-pro-functions.php:131
305
- msgid "Your Permalink Manager Pro licence key is invalid!"
306
- msgstr "あなたのライセンスキーは、無効です!"
 
 
307
 
308
- #: includes/core/permalink-manager-pro-functions.php:136
309
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  msgid ""
311
- "Your Permalink Manager Pro licence key expired! To restore access to plugin "
312
- "updates & technical support please go to <a href=\"%s\" target=\"_blank\">"
313
- "this page</a>."
314
- msgstr ""
315
- "あなたのライセンスキーは有効期限が切れました!プラグインのアップデートのアクセスやテクニカルサポートを受けたい場合は、<a href=\"%s\" "
316
- "target=\"_blank\">コチラのページ</a>にアクセスして、復元して下さい。"
317
 
318
- #: includes/core/permalink-manager-pro-functions.php:141
319
- msgid "You own a lifetime licence key."
320
- msgstr "あなたは、永久ライセンスキーをお持ちです。"
321
 
322
- #: includes/core/permalink-manager-pro-functions.php:146
323
  #, php-format
324
  msgid ""
325
- "Your licence key is valid until %s.<br />To prolong it please go to <a "
326
- "href=\"%s\" target=\"_blank\">this page</a> for more information."
 
327
  msgstr ""
328
- "あなたのライセンスキーは、%s まで有効です。<br />延長するには、<a href=\"%s\" target=\"_blank\">"
329
- "コチラのページ</a>にアクセスして詳細を確認して下さい。"
330
 
331
- #: includes/core/permalink-manager-pro-functions.php:151
 
 
 
 
332
  msgid ""
333
- "Expiration date could not be downloaded at this moment. Please try again in "
334
- "a few minutes."
335
- msgstr "現在、有効期限の情報をダウンロードできない可能性があります。数分後に、再度お試し下さい。"
 
 
 
 
336
 
337
- #: includes/core/permalink-manager-pro-functions.php:184
338
  msgid "Arabic"
339
  msgstr "アラビア語"
340
 
341
- #: includes/core/permalink-manager-pro-functions.php:185
342
- msgid "Chinese"
343
- msgstr "中国語"
344
 
345
- #: includes/core/permalink-manager-pro-functions.php:186
346
- msgid "Danish"
347
- msgstr "デンマーク語"
348
 
349
- #: includes/core/permalink-manager-pro-functions.php:187
350
- msgid "Dutch"
351
- msgstr "オランダ語"
352
 
353
- #: includes/core/permalink-manager-pro-functions.php:188
354
- msgid "English"
355
- msgstr "英語"
356
 
357
- #: includes/core/permalink-manager-pro-functions.php:189
358
- msgid "Finnish"
359
- msgstr "フィンランド語"
360
 
361
- #: includes/core/permalink-manager-pro-functions.php:190
362
- msgid "French"
363
- msgstr "フランス語"
364
 
365
- #: includes/core/permalink-manager-pro-functions.php:191
366
- msgid "German"
367
- msgstr "ドイツ語"
368
 
369
- #: includes/core/permalink-manager-pro-functions.php:192
370
- msgid "Hebrew"
371
- msgstr "ヘブライ語"
372
 
373
- #: includes/core/permalink-manager-pro-functions.php:193
374
- msgid "Hindi"
375
- msgstr "ヒンディー語"
376
 
377
- #: includes/core/permalink-manager-pro-functions.php:194
378
- msgid "Italian"
379
- msgstr "イタリア語"
380
 
381
- #: includes/core/permalink-manager-pro-functions.php:195
382
- msgid "Japanese"
383
- msgstr "日本語"
384
 
385
- #: includes/core/permalink-manager-pro-functions.php:196
386
- msgid "Korean"
387
- msgstr "韓国語"
388
 
389
- #: includes/core/permalink-manager-pro-functions.php:197
390
- msgid "Norwegian"
391
- msgstr "ノルウェー語"
392
 
393
- #: includes/core/permalink-manager-pro-functions.php:198
394
- msgid "Persian"
395
- msgstr "ペルシア語"
396
 
397
- #: includes/core/permalink-manager-pro-functions.php:199
398
- msgid "Polish"
399
- msgstr "ポーランド語"
400
 
401
- #: includes/core/permalink-manager-pro-functions.php:200
402
- msgid "Portuguese"
403
- msgstr "ポルトガル語"
404
 
405
- #: includes/core/permalink-manager-pro-functions.php:201
406
- msgid "Russian"
407
- msgstr "ロシア語"
408
 
409
- #: includes/core/permalink-manager-pro-functions.php:202
410
- msgid "Spanish"
411
- msgstr "スペイン語"
412
 
413
- #: includes/core/permalink-manager-pro-functions.php:203
414
- msgid "Swedish"
415
- msgstr "スウェーデン語"
416
 
417
- #: includes/core/permalink-manager-pro-functions.php:204
418
- msgid "Turkish"
419
- msgstr "トルコ語"
420
 
421
- #: includes/core/permalink-manager-pro-functions.php:486
422
- msgid "Coupon Link"
423
- msgstr "クーポンリンク"
424
 
425
- #: includes/core/permalink-manager-pro-functions.php:507
426
- msgid "Coupon URI"
427
- msgstr "クーポンURI"
428
 
429
- #: includes/core/permalink-manager-pro-functions.php:508
430
- msgid ""
431
- "The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
432
- "blackfriday</strong> are equivalent."
433
- msgstr ""
434
- "URIは、大文字・小文字は区別しません。例:<strong>BLACKFRIDAY</strong> と<strong>"
435
- "blackfriday</strong>は、同じです。"
 
 
 
 
436
 
437
- #: includes/core/permalink-manager-pro-functions.php:519
438
  msgid "Coupon Full URL"
439
  msgstr "クーポン フル URL"
440
 
441
- #: includes/core/permalink-manager-actions.php:105
442
- msgid "The settings are saved!"
443
- msgstr "設定は、保存されました!"
444
 
445
- #: includes/core/permalink-manager-actions.php:377
446
- #, php-format
447
- msgid "%d Custom URIs and %d Custom Redirects were removed!"
448
- msgstr "%d カスタムURIと、%d カスタム リダイレクトは削除されました。"
449
 
450
- #: includes/core/permalink-manager-actions.php:379
451
- msgid "No Custom URIs or Custom Redirects were removed!"
452
- msgstr "カスタムURIもしくはカスタム リダイレクトは、削除されませんでした!"
 
 
 
453
 
454
- #: includes/core/permalink-manager-actions.php:391
455
- msgid "You are not allowed to remove Permalink Manager data!"
456
- msgstr "Permalink Manager データを削除できません!"
 
457
 
458
  #: includes/core/permalink-manager-actions.php:397
459
  msgid "Custom permalinks"
@@ -463,324 +358,329 @@ msgstr "カスタム パーマリンク"
463
  msgid "Custom redirects"
464
  msgstr "カスタム リダイレクト"
465
 
466
- #: includes/core/permalink-manager-actions.php:405
467
- msgid "External redirects"
468
- msgstr "外部のリダイレクト"
 
 
469
 
470
- #: includes/core/permalink-manager-actions.php:424
471
- #, php-format
472
- msgid "%s were removed!"
473
- msgstr "%s は削除されました!"
474
 
475
- #: includes/core/permalink-manager-actions.php:565
476
- #, php-format
477
- msgid "URI \"%s\" was removed successfully!"
478
- msgstr "「%s」のURIは、無事削除されました!"
479
 
480
- #: includes/core/permalink-manager-actions.php:573
481
- msgid "Broken redirects were removed successfully!"
482
- msgstr "リンク切れリダイレクトは、無事削除されました!"
483
 
484
- #: includes/core/permalink-manager-actions.php:577
485
- msgid "URI and/or custom redirects does not exist or were already removed!"
486
- msgstr "URIもしくはカスタムリダイレクトは、実在しないか既に削除されています!"
487
 
488
- #: includes/core/permalink-manager-actions.php:597
489
- msgid "The redirect was removed successfully!"
490
- msgstr "リダイレクトは、無事削除されました!"
491
 
492
- #: includes/core/permalink-manager-actions.php:627
493
- msgid "URI is already in use, please select another one!"
494
- msgstr "URIは既に使用済みです。他をお選び下さい。"
495
 
496
- #: includes/core/permalink-manager-actions.php:659
497
- msgid "Sitemaps were updated!"
498
- msgstr "サイトマップは、更新されました!"
499
 
500
- #: includes/views/permalink-manager-permastructs.php:15
501
- msgid "Permastructures"
502
- msgstr "パーマ構造"
503
 
504
- #: includes/views/permalink-manager-permastructs.php:31
505
- #: includes/views/permalink-manager-tools.php:162
506
- #: includes/views/permalink-manager-tools.php:239
507
- msgid "Post types"
508
- msgstr "投稿タイプ"
509
 
510
- #: includes/views/permalink-manager-permastructs.php:36
511
- #: includes/views/permalink-manager-tools.php:163
512
- #: includes/views/permalink-manager-tools.php:240
513
- msgid "Taxonomies"
514
- msgstr "タクソノミー"
515
 
516
- #: includes/views/permalink-manager-permastructs.php:46
517
- msgid "WooCommerce"
518
- msgstr "WooCommerce"
519
 
520
- #: includes/views/permalink-manager-permastructs.php:75
521
- #: includes/views/permalink-manager-pro-addons.php:190
522
- #: includes/views/permalink-manager-pro-addons.php:223
523
- msgid "Instructions"
524
- msgstr "手順"
525
 
526
- #: includes/views/permalink-manager-permastructs.php:76
527
- #, php-format
 
 
 
528
  msgid ""
529
- "The current permastructures settings will be applied <strong>only to the new "
530
- "posts & terms</strong>. To apply the <strong>new permastructures to existing "
531
- "posts and terms</strong>, please regenerate the custom permalinks <a "
532
- "href=\"%s\">here</a>."
533
- msgstr ""
534
- "現在のパーマ構造の設定は、<strong>新規投稿とタームにのみ</strong>適用されます。<strong>"
535
- "既存の投稿とタームに新規のパーマ構造</strong>を適用するには、<a href=\"%s\">コチラ</a>"
536
- "にてカスタムパーマリンクを再生成して下さい。"
537
 
538
- #: includes/views/permalink-manager-permastructs.php:78
539
- msgid "Permastructure tags"
540
- msgstr "パーマ構造 タグ"
 
 
541
 
542
- #: includes/views/permalink-manager-permastructs.php:79
543
- #, php-format
544
- msgid ""
545
- "All allowed <a href=\"%s\" target=\"_blank\">permastructure tags</a> are "
546
- "listed below. Please note that some of them can be used only for particular "
547
- "post types or taxonomies."
548
- msgstr ""
549
- "以下は、全て使用可能な<a href=\"%s\" target=\"_blank\">パーマ構造 タグ</a>"
550
- "です。いくつかのタグは、特定の投稿タイプやタクソノミーでのみ使用可能ですので、ご注意下さい。"
551
 
552
- #: includes/views/permalink-manager-permastructs.php:82
553
- msgid "Save permastructures"
554
- msgstr "パーマ構造を保存する"
555
 
556
- #: includes/views/permalink-manager-uri-editor-post.php:55
557
- msgid "Post title"
558
- msgstr "投稿タイトル"
559
 
560
- #: includes/views/permalink-manager-uri-editor-post.php:56
561
- #: includes/views/permalink-manager-uri-editor-tax.php:52
562
- msgid "Full URI & Permalink"
563
- msgstr "全ての URIとパーマリンク"
564
 
565
- #: includes/views/permalink-manager-uri-editor-post.php:89
566
- msgid "Inherit (Attachment)"
567
- msgstr "継承(添付)"
 
 
568
 
569
- #: includes/views/permalink-manager-uri-editor-post.php:106
570
- #: includes/views/permalink-manager-uri-editor-tax.php:95
571
- msgid "Slug"
572
- msgstr "スラッグ"
573
 
574
- #: includes/views/permalink-manager-uri-editor-post.php:107
575
- msgid "Post status"
576
- msgstr "投稿状態"
577
 
578
- #: includes/views/permalink-manager-uri-editor-post.php:112
579
- #: includes/views/permalink-manager-uri-editor-tax.php:100
580
- #: includes/views/permalink-manager-uri-editor-tax.php:100
581
- msgid "Edit"
582
- msgstr "編集"
583
 
584
- #: includes/views/permalink-manager-uri-editor-post.php:113
585
- #: includes/views/permalink-manager-uri-editor-tax.php:101
586
- #: includes/views/permalink-manager-uri-editor-tax.php:101
587
- msgid "View"
588
- msgstr "見る"
589
 
590
- #: includes/views/permalink-manager-uri-editor-post.php:141
591
- #: includes/views/permalink-manager-uri-editor-tax.php:138
592
- msgid "Save all the URIs below"
593
- msgstr "以下の全てのURIを保存する"
 
594
 
595
- #: includes/views/permalink-manager-uri-editor-post.php:142
596
- #: includes/views/permalink-manager-uri-editor-tax.php:139
597
- msgid "Save all the URIs above"
598
- msgstr "上記の全てのURIを保存する"
599
 
600
- #: includes/views/permalink-manager-uri-editor-post.php:150
601
- #: includes/views/permalink-manager-uri-editor-tax.php:147
602
- msgid "Search"
603
- msgstr "検索"
604
 
605
- #: includes/views/permalink-manager-uri-editor-post.php:166
606
- msgid "All dates"
607
- msgstr "全日付"
608
 
609
- #: includes/views/permalink-manager-uri-editor-post.php:175
610
  msgid "Filter"
611
  msgstr "フィルター"
612
 
613
- #: includes/views/permalink-manager-pro-addons.php:101
614
- msgid "Support"
615
- msgstr "サポート"
616
 
617
- #: includes/views/permalink-manager-pro-addons.php:128
618
- msgid "Licence"
619
- msgstr "ライセンス"
620
 
621
- #: includes/views/permalink-manager-pro-addons.php:134
622
- msgid "Licence key"
623
- msgstr "ライセンスキー"
624
 
625
- #: includes/views/permalink-manager-pro-addons.php:135
626
- msgid "Check the expiration date."
627
- msgstr "有効期限を確認する"
628
 
629
- #: includes/views/permalink-manager-pro-addons.php:159
630
- msgid "-- Use predefined words list --"
631
- msgstr "-- 定義済みの単語リストを使用する --"
632
 
633
- #: includes/views/permalink-manager-pro-addons.php:162
634
- msgid "Remove all words"
635
- msgstr "全ての単語を削除する"
636
 
637
- #: includes/views/permalink-manager-pro-addons.php:164
638
- msgid "Add the words from the list"
639
- msgstr "リストから単語を追加する"
640
 
641
- #: includes/views/permalink-manager-pro-addons.php:172
642
- msgid "Enable \"stop words\""
643
- msgstr "「使用禁止の単語」を有効にする"
644
 
645
- #: includes/views/permalink-manager-pro-addons.php:178
646
- msgid "\"Stop words\" list"
647
- msgstr "「使用禁止の単語」リスト"
648
 
649
- #: includes/views/permalink-manager-pro-addons.php:182
650
- msgid "Type comma to separate the words."
651
- msgstr "単語の区切りにカンマを入力下さい。"
 
652
 
653
- #: includes/views/permalink-manager-pro-addons.php:191
654
- msgid ""
655
- "If enabled, all selected \"stop words\" will be automatically removed from "
656
- "default URIs."
657
- msgstr "有効にすると、選択された全ての「使用禁止の単語」はデフォルトのURIから、自動的に削除されます。"
658
 
659
- #: includes/views/permalink-manager-pro-addons.php:192
 
 
 
 
 
660
  msgid ""
661
- "Each of the words can be removed and any new words can be added to the list. "
662
- "You can also use a predefined list (available in 21 languages)."
663
- msgstr "各単語は、リストへ追加/削除できます。また、定義済みのリスト(21の言語)も使用可能です。"
 
 
 
 
 
664
 
665
- #: includes/views/permalink-manager-pro-addons.php:194
666
- msgid "Save"
667
- msgstr "保存する"
668
 
669
- #: includes/views/permalink-manager-pro-addons.php:214
670
- #: includes/views/permalink-manager-tools.php:34
671
- msgid "Custom Permalinks"
672
- msgstr "カスタム パーマリンク"
673
 
674
- #: includes/views/permalink-manager-pro-addons.php:215
675
- msgid "Deactivate after import"
676
- msgstr "インポート後、非アクティブにする"
677
 
678
- #: includes/views/permalink-manager-pro-addons.php:218
679
- msgid ""
680
- "If selected, \"Custom Permalinks\" plugin will be deactivated after its "
681
- "custom URIs are imported."
682
- msgstr "選択すると、カスタムURIのインポート後、「カスタムパーマリンク」プラグインが無効になります。"
683
 
684
- #: includes/views/permalink-manager-pro-addons.php:224
 
 
 
 
685
  msgid ""
686
- "Please note that \"Custom Permalinks\" (if activated) may break the behavior "
687
- "of this plugin."
688
- msgstr "「カスタム パーマリンク」(有効にしている場合)により、本プラグインの動作が損なわれる場合があります。"
 
 
689
 
690
- #: includes/views/permalink-manager-pro-addons.php:225
691
  msgid ""
692
- "Therefore, it is recommended to disable \"Custom Permalink\" and import old "
693
- "permalinks before using Permalink Manager Pro."
694
  msgstr ""
695
- "したがって、「カスタム パーマリンク」を無効にして、Permalink Manager Proを使用する前の古いパーマリンクのインポートを推奨します。"
696
 
697
- #: includes/views/permalink-manager-pro-addons.php:230
698
  #, php-format
699
- msgid "Import %d URIs"
700
- msgstr "%d URIをインポートする"
 
 
 
 
701
 
702
- #: includes/views/permalink-manager-pro-addons.php:235
703
- msgid "No custom URIs to import"
704
- msgstr "インポートするカスタムURIはありません"
 
 
705
 
706
- #: includes/views/permalink-manager-pro-addons.php:248
707
- msgid "Technical support"
708
- msgstr "技術的サポート"
 
 
709
 
710
- #: includes/views/permalink-manager-pro-addons.php:249
711
- #, php-format
712
  msgid ""
713
- "To find the answers on frequently asked questions and information about how "
714
- "to deal with the most common issues please go to the <strong>Knowledge "
715
- "Base</strong> using <a target=\"_blank\" href=\"%s\">this link</a>."
716
  msgstr ""
717
- "よくある質問と一般的な問題に対する対処方法についての情報は、 <a target=\"_blank\" href=\"%s\">コチラ</a>"
718
- "の<strong>Knowledge Base</strong> をご利用下さい。(英語のみ)"
719
 
720
- #: includes/views/permalink-manager-pro-addons.php:250
 
 
 
 
 
721
  msgid ""
722
- "If you still did not find the answer to your question, please send us your "
723
- "question or a detailed description of your problem/issue to <a href=\"mailto:"
724
- "support@permalinkmanager.pro\">support@permalinkmanager.pro</a>."
725
  msgstr ""
726
- "ご質問に対して答えが見つからない場合は、問題の詳細又はご質問を<a href=\"mailto:support@permalinkmanager."
727
- "pro\">support@permalinkmanager.pro</a>までお送り下さい。(英語のみ)"
728
 
729
- #: includes/views/permalink-manager-pro-addons.php:251
730
  msgid ""
731
- "To reduce the response time, please attach your licence key and if possible "
732
- "also: URL address of your website and screenshots explaining the issue."
733
  msgstr ""
734
- "ご返答までの時間を短縮するため、ライセンスキーを添付し、可能であればWebサイトのURLと問題箇所のスクリーンショットもお送り下さい。(英語のみ)"
735
-
736
- #: includes/views/permalink-manager-pro-addons.php:253
737
- msgid "Suggestions/feedback"
738
- msgstr "ご意見 / フィードバック"
739
 
740
- #: includes/views/permalink-manager-pro-addons.php:254
741
  msgid ""
742
- "If you would like to suggest a new functionality or leave us feedback, we "
743
- "are open to all new ideas and would be grateful for all your comments!"
744
- msgstr "新たな機能の提案やフィードバックをお送り下さい。あらゆる新しいアイデアは大歓迎であり、あなたのコメントをお送り頂ければ幸いです。"
745
 
746
- #: includes/views/permalink-manager-pro-addons.php:255
747
  msgid ""
748
- " Please send your remarks to <a href=\"mailto:contact@permalinkmanager.pro\">"
749
- "contact@permalinkmanager.pro</a>."
750
- msgstr ""
751
- "<a href=\"mailto:contact@permalinkmanager.pro\">contact@permalinkmanager."
752
- "pro</a>まで、ご意見をお送り下さい。"
753
 
754
- #: includes/views/permalink-manager-pro-addons.php:270
755
- msgid "Extra redirects (aliases)"
756
- msgstr "追加のリダイレクト(エイリアス)"
757
 
758
- #: includes/views/permalink-manager-pro-addons.php:271
759
  msgid ""
760
- "All URIs specified below will redirect the visitors to the custom URI "
761
- "defined above in \"Current URI\" field."
762
- msgstr "以下で指定された全てのURIは、訪問者を上記の「現在のURI」フィールドで定義されたカスタムURIにリダイレクトします。"
763
-
764
- #: includes/views/permalink-manager-pro-addons.php:277
765
- msgid "sample/custom-uri"
766
- msgstr "sample/custom-uri"
767
 
768
- #: includes/views/permalink-manager-pro-addons.php:294
769
- msgid "Add new redirect"
770
- msgstr "新しいリダイレクトを追加する"
 
 
 
 
 
 
771
 
772
- #: includes/views/permalink-manager-pro-addons.php:299
773
- #, php-format
774
  msgid ""
775
- "<strong>Please use URIs only!</strong><br />For instance, to set-up a "
776
- "redirect for <code>%s/old-uri</code> please use <code>old-uri</code>."
 
777
  msgstr ""
778
- "<strong>URIのみご利用下さい!</strong><br />例えば、<code>%s/old-uri</code> "
779
- "のリダイレクトを設定する場合は、<code>old-uri</code> をお使い下さい。"
780
 
781
- #: includes/views/permalink-manager-pro-addons.php:308
782
- msgid "Redirect this page to external URL"
783
- msgstr "このページを外部URLにリダイレクトする"
 
 
784
 
785
  #: includes/views/permalink-manager-pro-addons.php:309
786
  msgid ""
@@ -788,546 +688,616 @@ msgid ""
788
  "the URL specified below."
789
  msgstr "空白でない場合、このページにアクセスしようと試みた訪問者は、下記のURLにリダイレクトされます。"
790
 
791
- #: includes/views/permalink-manager-pro-addons.php:313
792
- msgid "http://another-website.com/final-target-url"
793
- msgstr "http://another-website.com/final-target-url"
 
 
794
 
795
- #: includes/views/permalink-manager-pro-addons.php:317
796
  msgid ""
797
- "<strong>Please use full URLs!</strong><br />For instance, <code>http:"
798
- "//another-website.com/final-target-url</code>."
 
799
  msgstr ""
800
- "<strong>全てのURLをお使い下さい!</strong><br />例:<code>http://another-website."
801
- "com/final-target-url</code>."
802
-
803
- #: includes/views/permalink-manager-uri-editor.php:28
804
- msgid "URI editor"
805
- msgstr "URIエディター"
806
-
807
- #: includes/views/permalink-manager-uri-editor.php:83
808
- msgid "Apply"
809
- msgstr "適用"
810
-
811
- #: includes/views/permalink-manager-uri-editor.php:89
812
- msgid "Per page"
813
- msgstr "ページ毎"
814
-
815
- #: includes/views/permalink-manager-uri-editor.php:94
816
- msgid "Post statuses"
817
- msgstr "投稿状態"
818
-
819
- #: includes/views/permalink-manager-uri-editor-tax.php:51
820
- msgid "Term title"
821
- msgstr "ターム タイトル"
822
-
823
- #: includes/views/permalink-manager-uri-editor-tax.php:53
824
- msgid "Count"
825
- msgstr "カウント"
826
-
827
- #: includes/views/permalink-manager-settings.php:33
828
- msgid "General settings"
829
- msgstr "一般設定"
830
-
831
- #: includes/views/permalink-manager-settings.php:39
832
- msgid "Auto-update permalinks"
833
- msgstr "パーマリンクの自動更新"
834
 
835
- #: includes/views/permalink-manager-settings.php:42
836
  msgid ""
837
- "<strong>Permalink Manager can automatically update the custom permalink "
838
- "after post or term is saved/updated.</strong>"
839
- msgstr ""
840
- "<strong>Permalink Managerは、投稿またはタームが保存・更新された後、カスタム "
841
- "パーマリンクを自動的に更新できます。</strong>"
842
 
843
- #: includes/views/permalink-manager-settings.php:43
844
  msgid ""
845
- "If enabled, Permalink Manager will always force the default custom permalink "
846
- "format (based on current <strong>Permastructure</strong> settings)."
 
 
847
  msgstr ""
848
- "有効にすると、Permalink Managerは常にデフォルトのカスタム パーマリンク形式を強制します。(現在の<strong>"
849
- "パーマ構造</strong>設定に基づく)"
850
 
851
- #: includes/views/permalink-manager-settings.php:48
852
- msgid "Slugs mode"
853
- msgstr "スラッグ モード"
 
854
 
855
- #: includes/views/permalink-manager-settings.php:50
856
- msgid "Use native slugs"
857
- msgstr "ネイティブ スラッグを使用する"
 
858
 
859
- #: includes/views/permalink-manager-settings.php:50
860
- msgid "Use actual titles as slugs"
861
- msgstr "スラッグとして実際のタイトルを使用する"
862
 
863
  #: includes/views/permalink-manager-settings.php:50
864
  msgid "Inherit parents' slugs"
865
  msgstr "親のスラッグを継承する"
866
 
867
- #: includes/views/permalink-manager-settings.php:52
868
- msgid ""
869
- "<strong>Permalink Manager can use either native slugs or actual titles for "
870
- "custom permalinks.</strong>"
871
- msgstr ""
872
- "<strong>Permalink Managerでは、カスタム パーマリンクにネイティブ スラッグまたは実際のタイトルを使用できます。</strong>"
873
 
874
- #: includes/views/permalink-manager-settings.php:53
875
- msgid ""
876
- "The native slug is generated from the initial title after the post or term "
877
- "is published."
878
- msgstr "ネイティブ スラッグは、投稿またはタームが公開された後、最初のタイトルから生成されます。"
879
 
880
- #: includes/views/permalink-manager-settings.php:54
881
- msgid ""
882
- "Use this field if you would like Permalink Manager to use the actual titles "
883
- "instead of native slugs."
884
- msgstr "Permalink Managerで、ネイティブ スラッグの代わりに実際のタイトルを使用する場合は、このフィールドを使用します。"
885
 
886
- #: includes/views/permalink-manager-settings.php:59
887
- msgid "Trailing slashes"
888
- msgstr "末尾のスラッシュ"
889
 
890
- #: includes/views/permalink-manager-settings.php:61
891
- msgid "Use default settings"
892
- msgstr "デフォルトの設定を使用する"
893
 
894
- #: includes/views/permalink-manager-settings.php:61
895
- msgid "Add trailing slashes"
896
- msgstr "末尾のスラッシュを追加する"
897
 
898
- #: includes/views/permalink-manager-settings.php:61
899
- msgid "Remove trailing slashes"
900
- msgstr "末尾のスラッシュを削除する"
901
 
902
- #: includes/views/permalink-manager-settings.php:62
903
- msgid ""
904
- "This option can be used to alter the native settings and control if trailing "
905
- "slash should be added or removed from the end of posts & terms permalinks."
906
- msgstr ""
907
- "このオプションは、ネイティブの設定を変更し、末尾のスラッシュを投稿・タームのパーマリンクの末尾に、追加・削除するかを制御するために使用できます。"
908
 
909
- #: includes/views/permalink-manager-settings.php:64
910
- msgid ""
911
- "<strong>You can use this feature to either add or remove the slases from end "
912
- "of WordPress permalinks.</strong>"
913
- msgstr "<strong>この機能で、WordPressパーマリンクの末尾にスラッシュを追加または削除できます。</strong>"
914
 
915
- #: includes/views/permalink-manager-settings.php:65
916
- msgid ""
917
- "Please use \"<a href=\"#sslwww_redirect\">Trailing slashes redirect</a>\" "
918
- "field if you would like to force the settings with redirect."
919
- msgstr ""
920
- "リダイレクトで設定を強制したい場合は、「<a href=\"#sslwww_redirect\">末尾のスラッシュリダイレクト</a>」 "
921
- "フィールドをお使い下さい。"
922
 
923
- #: includes/views/permalink-manager-settings.php:70
924
- msgid "Canonical redirect"
925
- msgstr "正規リダイレクト"
926
 
927
- #: includes/views/permalink-manager-settings.php:73
928
- msgid ""
929
- "<strong>Canonical redirect allows WordPress to \"correct\" the requested URL "
930
- "and redirect visitor to the canonical permalink.</strong>"
931
- msgstr ""
932
- "<strong>"
933
- "正規リダイレクトにより、WordPressは要求されたURLを「修正」し、訪問者を正規パーマリンクにリダイレクトできます。</strong>"
934
 
935
- #: includes/views/permalink-manager-settings.php:74
936
- msgid ""
937
- "This feature will be also used to redirect (old) original permalinks to (new)"
938
- " custom permalinks set with Permalink Manager."
939
- msgstr ""
940
- "この機能は、(古い)オリジナルのパーマリンクをPermalink Managerで設定された(新しい)カスタム "
941
- "パーマリンクにリダイレクトするために使用されます。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
 
943
  #: includes/views/permalink-manager-settings.php:87
944
  msgid "Old slug redirect"
945
  msgstr "古いスラッグ リダイレクト"
946
 
947
- #: includes/views/permalink-manager-settings.php:90
 
 
 
 
 
 
948
  msgid ""
949
- "<strong>Old slug redirect is used by WordPress to provide a fallback for old "
950
- "version of slugs after they are changed.</strong>"
 
951
  msgstr ""
952
- "<strong>古いスラッグ "
953
- "リダイレクトは、WordPressが古いバージョンのスラッグを変更した後の代替を提供するために使用されます。</strong>"
954
 
955
- #: includes/views/permalink-manager-settings.php:91
956
- msgid ""
957
- "If enabled, the visitors trying to access the URL with the old slug will be "
958
- "redirected to the canonical permalink."
959
- msgstr "有効にすると、古いスラッグでURLにアクセスした訪問者を、正規パーマリンクにリダイレクトします。"
960
 
961
- #: includes/views/permalink-manager-settings.php:97
962
- msgid "Enhanced redirect"
963
- msgstr "拡張 リダイレクト"
964
 
965
- #: includes/views/permalink-manager-settings.php:103
966
- msgid "Redirect mode"
967
- msgstr "リダイレクト モード"
 
 
 
 
 
 
 
968
 
969
- #: includes/views/permalink-manager-settings.php:105
970
- msgid "Disable (Permalink Manager redirect functions)"
971
- msgstr "無効(Permalink Manager リダイレクト 機能)"
972
 
973
- #: includes/views/permalink-manager-settings.php:105
974
- msgid "301 redirect"
975
- msgstr "301 リダイレクト"
 
 
976
 
977
- #: includes/views/permalink-manager-settings.php:105
978
- msgid "302 redirect"
979
- msgstr "302 リダイレクト"
 
 
980
 
981
- #: includes/views/permalink-manager-settings.php:107
982
- msgid ""
983
- "<strong>Permalink Manager includes a set of hooks that allow to extend the "
984
- "redirect functions used natively by WordPress to avoid 404 errors.</strong>"
985
- msgstr ""
986
- "<strong>Permalink "
987
- "Managerには、404エラー回避のためにWordPressが従来使用するリダイレクト機能を拡張できる一連のフックが含まれています。</strong>"
988
 
989
- #: includes/views/permalink-manager-settings.php:108
990
- msgid ""
991
- "You can disable this feature if you do not want Permalink Manager to trigger "
992
- "any additional redirect functions at all."
993
- msgstr "Permalink Managerに、追加のリダイレクト機能を一切トリガーさせないようにする場合は、この機能を無効にします。"
994
 
995
- #: includes/views/permalink-manager-settings.php:113
996
- msgid "Old custom permalinks redirect"
997
- msgstr "古いカスタム パーマリンク リダイレクト"
998
 
999
- #: includes/views/permalink-manager-settings.php:118
 
 
 
 
 
 
 
 
1000
  msgid ""
1001
- "<strong>Permalink Manager can automatically set-up extra redirects after the "
1002
- "custom permalink is changed.</strong>"
1003
- msgstr ""
1004
- "<strong>Permalink Managerは、カスタム パーマリンクの変更後、自動的に追加のリダイレクトを設定できます。</strong>"
1005
 
1006
- #: includes/views/permalink-manager-settings.php:119
 
1007
  msgid ""
1008
- "If enabled, Permalink Manage will add redirect for earlier version of custom "
1009
- "permalink after you change it (eg. with URI Editor or Regenerate/reset tool)."
1010
  msgstr ""
1011
- "有効にすると、Permalink Managerは、変更後(例:URIエディターまたは再生成・リセットツールを使用)に、以前のバージョンのカスタム "
1012
- "パーマリンクのリダイレクトを追加します。"
1013
 
1014
- #: includes/views/permalink-manager-settings.php:120
1015
  msgid ""
1016
- "You can disable this feature if you use another plugin for redirects, eg. "
1017
- "Yoast SEO Premium or Redirection."
1018
- msgstr "Yoast SEO プレミアムやその他のリダイレクトプラグインを使用している場合は、この機能を無効にできます。"
 
 
1019
 
1020
- #: includes/views/permalink-manager-settings.php:125
1021
- msgid "Force HTTPS/WWW"
1022
- msgstr "HTTPS/WWW 強制"
1023
 
1024
- #: includes/views/permalink-manager-settings.php:128
1025
- msgid ""
1026
- "<strong>You can use Permalink Manager to force SSL or \"www\" prefix in "
1027
- "WordPress permalinks.</strong>"
1028
- msgstr ""
1029
- "<strong>Permalink "
1030
- "Managerを使って、WordPressのパーマリンク内にSSLもしくはwwwの接頭辞を強制的に付与できます。</strong>"
1031
 
1032
- #: includes/views/permalink-manager-settings.php:129
1033
- msgid "Please disable it if you encounter any redirect loop issues."
1034
- msgstr "リダイレクトのループ問題が発生した場合は、このオプションを無効にして下さい。"
1035
 
1036
- #: includes/views/permalink-manager-settings.php:134
1037
- msgid "Trailing slashes redirect"
1038
- msgstr "末尾のスラッシュリダイレクト"
1039
 
1040
- #: includes/views/permalink-manager-settings.php:137
1041
- msgid ""
1042
- "<strong>Permalink Manager can force the trailing slashes settings in the "
1043
- "custom permalinks with redirect.</strong>"
1044
- msgstr ""
1045
- "<strong>Permalink Managerは、リダイレクトのあるカスタム パーマリンクの末尾のスラッシュ設定を強制できます。</strong>"
1046
 
1047
- #: includes/views/permalink-manager-settings.php:143
1048
- msgid "Third party plugins"
1049
- msgstr "サードパーティー プラグイン"
 
 
 
1050
 
1051
- #: includes/views/permalink-manager-settings.php:149
1052
- msgid "WPML/Polylang language mismatch"
1053
- msgstr "WPML / Polylang 言語 不一致"
1054
 
1055
- #: includes/views/permalink-manager-settings.php:152
1056
- msgid ""
1057
- "If enabled, the plugin will load the adjacent translation of post when the "
1058
- "custom permalink is detected, but the language code in the URL does not "
1059
- "match the language code assigned to the post/term."
1060
- msgstr ""
1061
- "有効にすると、本プラグインはカスタムパーマリンクを検出した際、投稿に用いた言語に近い翻訳を読み込みますが、投稿やタームに割当られた言語コードとURL内言語コードと一致しない場合は読み込みません。"
1062
 
1063
- #: includes/views/permalink-manager-settings.php:156
1064
- msgid "WP All Import support"
1065
- msgstr "WP All Import サポート"
1066
 
1067
- #: includes/views/permalink-manager-settings.php:159
1068
- msgid ""
1069
- "If enabled, the custom permalinks will not be saved for the posts imported "
1070
- "with WP All Import plugin."
1071
- msgstr ""
1072
 
1073
- #: includes/views/permalink-manager-settings.php:163
1074
- msgid "Ultimate Member support"
1075
- msgstr ""
1076
 
1077
- #: includes/views/permalink-manager-settings.php:166
1078
- msgid ""
1079
- "If enabled, Permalink Manager will detect the additional Ultimate Member "
1080
- "pages (eg. \"account\" sections)."
1081
- msgstr ""
1082
 
1083
- #: includes/views/permalink-manager-settings.php:170
1084
- msgid "Breadcrumbs support"
1085
- msgstr "パンくずリスト サポート"
1086
 
1087
- #: includes/views/permalink-manager-settings.php:172
1088
- msgid ""
1089
- "If enabled, the HTML breadcrumbs will be filtered by Permalink Manager to "
1090
- "mimic the current URL structure.<br />Works with: <strong>WooCommerce, Yoast "
1091
- "SEO, RankMath and SEOPress</strong> breadcrumbs."
1092
- msgstr ""
1093
 
1094
- #: includes/views/permalink-manager-settings.php:176
1095
- msgid "Excluded content types"
1096
- msgstr "除外する投稿タイプ"
1097
 
1098
- #: includes/views/permalink-manager-settings.php:178
1099
- msgid ""
1100
- "Permalink Manager will ignore and not filter the custom permalinks of all "
1101
- "selected above post types & taxonomies."
1102
- msgstr "Permalink Managerは、上記で選択した全ての投稿タイプとタクソノミーのカスタム パーマリンクを無視し、フィルタリングしません。"
1103
 
1104
- #: includes/views/permalink-manager-settings.php:183
1105
- msgid "Advanced settings"
1106
- msgstr "詳細設定"
1107
 
1108
- #: includes/views/permalink-manager-settings.php:189
1109
- msgid "Show \"Native slug\" field"
1110
- msgstr "「ネイティブ スラッグ」フィールドを表示する"
1111
 
1112
- #: includes/views/permalink-manager-settings.php:191
1113
- msgid ""
1114
- "If enabled, it would be possible to edit the native slug via URI Editor on "
1115
- "single post/term edit page."
1116
- msgstr "有効にすると、それぞれの投稿やタームの編集ページ上で、URIエディター経由にてネイティブ スラッグを編集できます。"
1117
 
1118
- #: includes/views/permalink-manager-settings.php:195
1119
- msgid "Force 404 on non-existing pagination pages"
1120
- msgstr "実在しないページネーションのページに404を強制表示する"
1121
 
1122
- #: includes/views/permalink-manager-settings.php:197
1123
- msgid ""
1124
- "If enabled, the non-existing pagination pages (for single posts) will return "
1125
- "404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
1126
- "any problems with pagination pages or use custom pagination system.</strong>"
1127
- msgstr ""
1128
- "有効にすると、実在しないページネーションのページ(単一投稿用)に対して、404( \"Not Found\")エラーを返します。<br />"
1129
- "<strong>ページネーションのページ、もしくは独自のページネーション "
1130
- "システムをご利用で、なんらかの問題が生じた場合は、無効にしてください。</strong>"
1131
 
1132
- #: includes/views/permalink-manager-settings.php:201
1133
- msgid "Strip special characters"
1134
- msgstr "特殊文字を取り除く"
1135
 
1136
- #: includes/views/permalink-manager-settings.php:203
1137
- #: includes/views/permalink-manager-settings.php:210
1138
- msgid "Yes, use native settings"
1139
- msgstr "はい、ネイティブ 設定を使います。"
1140
 
1141
- #: includes/views/permalink-manager-settings.php:203
1142
- msgid "No, keep special characters (.,|_+) in the slugs"
1143
- msgstr "いいえ、スラッグに特殊文字(.,|_+)を保持します。"
1144
 
1145
- #: includes/views/permalink-manager-settings.php:204
1146
- msgid ""
1147
- "If enabled only alphanumeric characters, underscores and dashes will be "
1148
- "allowed for post/term slugs."
1149
- msgstr "英数字のみを有効にすると、投稿とターム スラッグにて下線とダッシュの使用が許可されます。"
1150
 
1151
- #: includes/views/permalink-manager-settings.php:208
1152
- msgid "Convert accented letters"
1153
- msgstr "アクセント付き文字の変換"
1154
 
1155
- #: includes/views/permalink-manager-settings.php:210
1156
- msgid "No, keep accented letters in the slugs"
1157
- msgstr "いいえ、スラッグにアクセント付き文字を保持します。"
 
1158
 
1159
- #: includes/views/permalink-manager-settings.php:211
1160
- msgid ""
1161
- "If enabled, all the accented letters will be replaced with their non-"
1162
- "accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
 
 
 
1163
  msgstr ""
1164
- "有効にすると、全てのアクセント付きの文字が、アクセントなしの文字に置換されます。(例:Å => A, Æ => AE, Ø => O, Ć => C)"
1165
 
1166
- #: includes/views/permalink-manager-settings.php:215
1167
- msgid "URI Editor role capability"
1168
- msgstr "URIエディター 種類と権限"
1169
 
1170
- #: includes/views/permalink-manager-settings.php:216
1171
- msgid "Administrator (edit_theme_options)"
1172
- msgstr "管理者 (edit_theme_options)"
1173
 
1174
- #: includes/views/permalink-manager-settings.php:216
1175
- msgid "Editor (publish_pages)"
1176
- msgstr "編集者 (publish_pages)"
1177
 
1178
- #: includes/views/permalink-manager-settings.php:216
1179
- msgid "Author (publish_posts)"
1180
- msgstr "投稿者 (publish_posts)"
 
1181
 
1182
- #: includes/views/permalink-manager-settings.php:216
1183
- msgid "Contributor (edit_posts)"
1184
- msgstr "寄稿者 (edit_posts)"
1185
 
1186
- #: includes/views/permalink-manager-settings.php:217
1187
- #, php-format
1188
- msgid ""
1189
- "Only the users who have selected capability will be able to access URI "
1190
- "Editor.<br />The list of capabilities <a href=\"%s\" target=\"_blank\">can "
1191
- "be found here</a>."
1192
- msgstr ""
1193
- "権限を持つユーザーのみがURIエディターにアクセスできます。<br />権限のリストは<a href=\"%s\" target=\"_blank\">"
1194
- "コチラ</a>で確認できます。"
1195
 
1196
- #: includes/views/permalink-manager-settings.php:221
1197
- msgid "Automatically fix broken URIs"
1198
- msgstr "壊れたURIを自動的に修正する"
 
1199
 
1200
- #: includes/views/permalink-manager-settings.php:223
1201
- msgid "Disable"
1202
- msgstr "無効"
 
1203
 
1204
- #: includes/views/permalink-manager-settings.php:223
1205
- msgid "Fix URIs individually (during page load)"
1206
- msgstr "個々にURLを修正する(ページ読込時)"
 
1207
 
1208
- #: includes/views/permalink-manager-settings.php:223
1209
- msgid "Bulk fix all URIs (once a day, in the background)"
1210
- msgstr "全てのURIを一括修正する(1日1回、バックグラウンド)"
 
1211
 
1212
- #: includes/views/permalink-manager-settings.php:225
1213
- msgid ""
1214
- "Enable this option if you would like to automatically remove redundant "
1215
- "permalinks & duplicated redirects."
1216
- msgstr "冗長なパーマリンクと重複したリダイレクトを自動的に削除したい場合は、このオプションを有効にします。"
1217
 
1218
- #: includes/views/permalink-manager-settings.php:232
1219
- msgid "Save settings"
1220
- msgstr "設定を保存する"
1221
 
1222
- #: includes/views/permalink-manager-tools.php:15
1223
- msgid "Tools"
1224
- msgstr "ツール"
1225
 
1226
- #: includes/views/permalink-manager-tools.php:18
1227
- msgid "Permalink Duplicates"
1228
- msgstr "重複したパーマリンク"
1229
 
1230
- #: includes/views/permalink-manager-tools.php:22
1231
- msgid "Find & Replace"
1232
- msgstr "検索&置換"
1233
 
1234
- #: includes/views/permalink-manager-tools.php:26
1235
- msgid "Regenerate/Reset"
1236
- msgstr "再作成 / リセット"
 
 
 
 
 
 
 
 
 
1237
 
1238
  #: includes/views/permalink-manager-tools.php:30
1239
  msgid "Stop Words"
1240
  msgstr "使用禁止の単語"
1241
 
1242
- #: includes/views/permalink-manager-tools.php:44
1243
- msgid ""
1244
- "<strong>A MySQL backup is highly recommended before using \"<em>Native "
1245
- "slugs</em>\" mode!</strong>"
1246
- msgstr ""
1247
- "<strong>「<em>ネイティブ スラッグ</em>」モード使用される前に、MY SQLのバックアップを強く推奨します!</strong>"
1248
 
1249
- #: includes/views/permalink-manager-tools.php:54
1250
- msgid "List of duplicated permalinks"
1251
- msgstr "重複したパーマリンクのリスト"
1252
 
1253
- #: includes/views/permalink-manager-tools.php:55
1254
- msgid "Fix custom permalinks & redirects"
1255
- msgstr "カスタム パーマリンク&リダイレクトを修正する"
1256
 
1257
- #: includes/views/permalink-manager-tools.php:70
1258
- msgid "Extra Redirect"
1259
- msgstr "追加のリダイレクト"
1260
 
1261
- #: includes/views/permalink-manager-tools.php:81
1262
- msgid "Edit term"
1263
- msgstr "タームの編集"
 
 
 
1264
 
1265
- #: includes/views/permalink-manager-tools.php:84
1266
- msgid "(Removed term)"
1267
- msgstr "(削除されたターム)"
1268
 
1269
- #: includes/views/permalink-manager-tools.php:85
1270
- #: includes/views/permalink-manager-tools.php:98
1271
- msgid "Remove broken URI"
1272
- msgstr "リンク切れURLを削除する"
1273
 
1274
- #: includes/views/permalink-manager-tools.php:94
1275
- msgid "Edit post"
1276
- msgstr "投稿の編集"
 
 
1277
 
1278
- #: includes/views/permalink-manager-tools.php:97
1279
- msgid "(Removed post)"
1280
- msgstr "(削除された投稿)"
 
 
1281
 
1282
- #: includes/views/permalink-manager-tools.php:120
1283
- msgid "Congratulations! No duplicated URIs or Redirects found!"
1284
- msgstr "おめでとうございます!重複したURI・リダイレクトは、見つかりませんでした!"
 
 
 
 
 
 
 
 
1285
 
1286
- #: includes/views/permalink-manager-tools.php:134
1287
- msgid "Find ..."
1288
- msgstr "検索"
1289
 
1290
- #: includes/views/permalink-manager-tools.php:140
1291
- msgid "Replace with ..."
1292
- msgstr "置換"
 
 
 
1293
 
1294
- #: includes/views/permalink-manager-tools.php:146
1295
- #: includes/views/permalink-manager-tools.php:222
1296
- msgid "Mode"
1297
- msgstr "モード"
 
1298
 
1299
- #: includes/views/permalink-manager-tools.php:150
1300
- msgid "Custom URIs"
1301
- msgstr "カスタム URI"
1302
 
1303
- #: includes/views/permalink-manager-tools.php:151
1304
- msgid "Native slugs"
1305
- msgstr "ネイティブ スラッグ"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1306
 
1307
- #: includes/views/permalink-manager-tools.php:155
1308
- #: includes/views/permalink-manager-tools.php:232
1309
- msgid "Select content type"
1310
- msgstr "コンテンツタイプを選択する"
 
 
 
1311
 
1312
- #: includes/views/permalink-manager-tools.php:167
1313
- #: includes/views/permalink-manager-tools.php:244
1314
- msgid "Select post types"
1315
- msgstr "投稿タイプを選択する"
 
 
1316
 
1317
- #: includes/views/permalink-manager-tools.php:176
1318
- #: includes/views/permalink-manager-tools.php:253
1319
- msgid "Select taxonomies"
1320
- msgstr "タクソノミーを選択する"
 
 
1321
 
1322
- #: includes/views/permalink-manager-tools.php:187
1323
- #: includes/views/permalink-manager-tools.php:264
1324
- msgid "Select post statuses"
1325
- msgstr "投稿状態を選択する"
1326
 
1327
- #: includes/views/permalink-manager-tools.php:196
1328
- #: includes/views/permalink-manager-tools.php:273
1329
- msgid "Select IDs"
1330
- msgstr "IDを選択する"
 
 
 
 
 
1331
 
1332
  #: includes/views/permalink-manager-tools.php:200
1333
  #: includes/views/permalink-manager-tools.php:277
@@ -1337,117 +1307,168 @@ msgid ""
1337
  msgstr ""
1338
  "上記のフィルターに絞りこむために、ここに投稿ID(または範囲)を入力してください。例:<strong>1-8, 10, 25</strong>."
1339
 
1340
- #: includes/views/permalink-manager-tools.php:206
1341
- #: includes/views/permalink-manager-tools.php:283
1342
- msgid "Important notices"
1343
- msgstr "重要なお知らせ"
 
 
1344
 
1345
- #: includes/views/permalink-manager-tools.php:209
1346
- msgid "Find and replace"
1347
- msgstr "検索&置換"
1348
 
1349
- #: includes/views/permalink-manager-tools.php:226
1350
- msgid "Regenerate custom permalinks"
1351
- msgstr "カスタム パーマリンクを再生成する"
1352
 
1353
- #: includes/views/permalink-manager-tools.php:227
1354
- msgid "Regenerate native slugs"
1355
- msgstr "ネイティブ スラッグを再生成する"
1356
 
1357
- #: includes/views/permalink-manager-tools.php:228
1358
- msgid "Use original URLs as custom permalinks"
1359
- msgstr "カスタム パーマリンクをオリジナルのURLとして使用する"
1360
 
1361
- #: includes/views/permalink-manager-tools.php:286
1362
- msgid "Regenerate"
1363
- msgstr "再作成"
1364
 
1365
- #: includes/views/permalink-manager-debug.php:14
1366
- msgid "Debug"
1367
- msgstr "デバッグ"
1368
 
1369
- #: includes/views/permalink-manager-debug.php:28
1370
- msgid "Debug data"
1371
- msgstr "デバッグデータ"
1372
 
1373
- #: includes/views/permalink-manager-debug.php:33
1374
- msgid "List of the URIs generated by this plugin."
1375
- msgstr "本プラグインで生成されたURIのリスト"
1376
 
1377
- #: includes/views/permalink-manager-debug.php:35
1378
- msgid "Remove all custom permalinks"
1379
- msgstr "全てのカスタム パーマリンクを削除する"
 
1380
 
1381
- #: includes/views/permalink-manager-debug.php:37
1382
- msgid "Array with URIs"
1383
- msgstr "URIでの配列"
1384
 
1385
- #: includes/views/permalink-manager-debug.php:44
1386
- msgid "List of custom redirects set-up by this plugin."
1387
- msgstr "本プラグインによって設定されたカスタム リダイレクトのリスト"
1388
 
1389
- #: includes/views/permalink-manager-debug.php:46
1390
- msgid "Remove all custom redirects"
1391
- msgstr "全てのカスタム リダイレクトを削除する"
1392
 
1393
- #: includes/views/permalink-manager-debug.php:48
1394
- msgid "Array with redirects"
1395
- msgstr "リダイレクトでの配列"
1396
 
1397
- #: includes/views/permalink-manager-debug.php:55
1398
- msgid "List of external redirects set-up by this plugin."
1399
- msgstr "本プラグインにてセットアップされた外部リダイレクトのリスト"
1400
 
1401
- #: includes/views/permalink-manager-debug.php:56
1402
- msgid "Remove all external redirects"
1403
- msgstr "全ての外部リダイレクトを削除する"
1404
 
1405
- #: includes/views/permalink-manager-debug.php:58
1406
- msgid "Array with external redirects"
1407
- msgstr "外部リダイレクトでの配列"
1408
 
1409
- #: includes/views/permalink-manager-debug.php:65
1410
- msgid "List of permastructures set-up by this plugin."
1411
- msgstr "本プラグインにてセットアップしたパーマ構造のリスト"
 
1412
 
1413
- #: includes/views/permalink-manager-debug.php:67
1414
- msgid "Remove all permastructures settings"
1415
- msgstr "全てのパーマ構造 設定を削除する"
1416
 
1417
- #: includes/views/permalink-manager-debug.php:69
1418
- msgid "Array with permastructures"
1419
- msgstr "パーマ構造での配列"
1420
 
1421
- #: includes/views/permalink-manager-debug.php:76
1422
- msgid "List of plugin settings."
1423
- msgstr "プラグイン設定 リスト"
 
 
1424
 
1425
- #: includes/views/permalink-manager-debug.php:78
1426
- msgid "Remove all plugin settings"
1427
- msgstr "全てのプラグイン設定を削除する"
 
 
1428
 
1429
- #: includes/views/permalink-manager-debug.php:80
1430
- msgid "Array with settings used in this plugin."
1431
- msgstr "本プラグイン内で使用中の設定での配列"
1432
 
1433
- #. Name of the plugin
1434
- msgid "Permalink Manager Pro"
1435
- msgstr "Permalink Manager Pro"
1436
 
1437
- #. Description of the plugin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1438
  msgid ""
1439
- "Advanced plugin that allows to set-up custom permalinks (bulk editors "
1440
- "included), slugs and permastructures (WooCommerce compatible)."
1441
- msgstr "有償版では、スラッグやパーマ構造(WooCommerceとの互換性あり)、カスタム パーマリンク(一括編集も含む)の設定が可能です。"
1442
 
1443
- #. URI of the plugin
1444
- msgid "https://permalinkmanager.pro?utm_source=plugin"
1445
- msgstr "https://permalinkmanager.pro?utm_source=plugin"
 
 
 
 
 
 
1446
 
1447
- #. Author of the plugin
1448
- msgid "Maciej Bis"
1449
- msgstr "Maciej Bis"
1450
 
1451
- #. Author URI of the plugin
1452
- msgid "http://maciejbis.net/"
1453
- msgstr "http://maciejbis.net/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  "Project-Id-Version: Permalink Manager Lite\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2020-11-23 20:44+0000\n"
6
+ "PO-Revision-Date: 2021-02-05 17:23+0000\n"
7
  "Last-Translator: admin\n"
8
  "Language-Team: Japanese\n"
9
  "Language: ja\n"
14
  "X-Generator: Loco https://localise.biz/\n"
15
  "X-Loco-Version: 2.4.4; wp-5.5.3"
16
 
17
+ #: includes/views/permalink-manager-pro-addons.php:255
 
18
  msgid ""
19
+ " Please send your remarks to <a href=\"mailto:contact@permalinkmanager.pro\">"
20
+ "contact@permalinkmanager.pro</a>."
 
 
21
  msgstr ""
22
+ "<a href=\"mailto:contact@permalinkmanager.pro\">contact@permalinkmanager."
23
+ "pro</a>まで、ご意見をお送り下さい。"
 
24
 
25
+ #: includes/core/permalink-manager-third-parties.php:299
26
  msgid "\"Custom Permalinks\" URIs were imported!"
27
  msgstr "「カスタム パーマリンク」URIは、インポートされました!"
28
 
29
+ #: includes/views/permalink-manager-pro-addons.php:178
30
+ msgid "\"Stop words\" list"
31
+ msgstr "「使用禁止の単語」リスト"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
+ #: includes/core/permalink-manager-actions.php:377
34
  #, php-format
35
+ msgid "%d Custom URIs and %d Custom Redirects were removed!"
36
+ msgstr "%d カスタムURIと、%d カスタム リダイレクトは削除されました。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
+ #: includes/core/permalink-manager-actions.php:424
39
+ #, php-format
40
+ msgid "%s were removed!"
41
+ msgstr "%s は削除されました!"
42
 
43
+ #: includes/views/permalink-manager-tools.php:97
44
+ msgid "(Removed post)"
45
+ msgstr "(削除された投稿)"
 
46
 
47
+ #: includes/views/permalink-manager-tools.php:84
48
+ msgid "(Removed term)"
49
+ msgstr "(削除されたターム)"
50
 
51
+ #: includes/views/permalink-manager-pro-addons.php:159
52
+ msgid "-- Use predefined words list --"
53
+ msgstr "-- 定義済みの単語リストを使用する --"
54
 
55
+ #: includes/views/permalink-manager-settings.php:105
56
+ msgid "301 redirect"
57
+ msgstr "301 リダイレクト"
58
 
59
+ #: includes/views/permalink-manager-settings.php:105
60
+ msgid "302 redirect"
61
+ msgstr "302 リダイレクト"
62
 
63
+ #: includes/core/permalink-manager-admin-functions.php:717
64
+ #, php-format
65
+ msgid "<a %s>Click here</a> to go to the list of updated slugs"
66
+ msgstr "更新されたスラッグのリストは、<a %s>ここをクリック</a> "
67
 
68
+ #: includes/core/permalink-manager-admin-functions.php:901
69
+ #, php-format
70
  msgid ""
71
+ "<span><strong>Need more functionalities and dedicated support?</strong> Buy "
72
+ "Permalink Manager Pro and apply <a href=\"https://permalinkmanager.pro/buy-"
73
+ "permalink-manager-pro/\">PMLITE coupon code</a> to get 10% off.</a></span>"
 
74
  msgstr ""
75
+ "<span><strong>さらなる機能と専用サポートが必要ですか?</strong>Permalink Manager "
76
+ "Proを購入して10%割引の<a href=\"https://permalinkmanager.pro/buy-permalink-manager-"
77
+ "pro/\">PMLITEクーポンコード</a>を適用してください。</a></span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
+ #: includes/core/permalink-manager-admin-functions.php:716
80
  #, php-format
81
  msgid "<strong class=\"updated_count\">%d</strong> slug was updated!"
82
  msgid_plural "<strong class=\"updated_count\">%d</strong> slugs were updated!"
83
  msgstr[0] "<strong class=\"updated_count\">%d</strong> スラッグは、更新されました!"
84
  msgstr[1] ""
85
 
86
+ #: includes/views/permalink-manager-tools.php:44
87
+ msgid ""
88
+ "<strong>A MySQL backup is highly recommended before using \"<em>Native "
89
+ "slugs</em>\" mode!</strong>"
90
+ msgstr ""
91
+ "<strong>「<em>ネイティブ スラッグ</em>」モード使用される前に、MY SQLのバックアップを強く推奨します!</strong>"
92
 
93
+ #: includes/views/permalink-manager-settings.php:73
94
+ msgid ""
95
+ "<strong>Canonical redirect allows WordPress to \"correct\" the requested URL "
96
+ "and redirect visitor to the canonical permalink.</strong>"
97
+ msgstr ""
98
+ "<strong>"
99
+ "正規リダイレクトにより、WordPressは要求されたURLを「修正」し、訪問者を正規パーマリンクにリダイレクトできます。</strong>"
100
+
101
+ #: includes/core/permalink-manager-admin-functions.php:721
102
  #: includes/core/permalink-manager-actions.php:115
103
  msgid "<strong>No slugs</strong> were updated!"
104
  msgstr "スラッグは、更新されませんでした。"
105
 
106
+ #: includes/views/permalink-manager-settings.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid ""
108
+ "<strong>Old slug redirect is used by WordPress to provide a fallback for old "
109
+ "version of slugs after they are changed.</strong>"
 
110
  msgstr ""
111
+ "<strong>古いスラッグ "
112
+ "リダイレクトは、WordPressが古いバージョンのスラッグを変更した後の代替を提供するために使用されます。</strong>"
 
 
 
113
 
114
+ #: includes/views/permalink-manager-settings.php:42
115
  msgid ""
116
+ "<strong>Permalink Manager can automatically update the custom permalink "
117
+ "after post or term is saved/updated.</strong>"
118
  msgstr ""
119
+ "<strong>Permalink Managerは、投稿またはタームが保存・更新された後、カスタム "
120
+ "パーマリンクを自動的に更新できます。</strong>"
 
 
 
121
 
122
+ #: includes/views/permalink-manager-settings.php:136
123
  msgid ""
124
+ "<strong>Permalink Manager can force the trailing slashes settings in the "
125
+ "custom permalinks with redirect.</strong>"
126
+ msgstr ""
127
+ "<strong>Permalink Managerは、リダイレクトのあるカスタム パーマリンクの末尾のスラッシュ設定を強制できます。</strong>"
 
 
 
 
 
 
 
 
 
 
 
128
 
129
+ #: includes/views/permalink-manager-settings.php:52
 
130
  msgid ""
131
+ "<strong>Permalink Manager can use either native slugs or actual titles for "
132
+ "custom permalinks.</strong>"
 
133
  msgstr ""
134
+ "<strong>Permalink Managerでは、カスタム パーマリンクにネイティブ スラッグまたは実際のタイトルを使用できます。</strong>"
 
 
135
 
136
+ #: includes/views/permalink-manager-settings.php:107
137
+ msgid ""
138
+ "<strong>Permalink Manager includes a set of hooks that allow to extend the "
139
+ "redirect functions used natively by WordPress to avoid 404 errors.</strong>"
140
+ msgstr ""
141
+ "<strong>Permalink "
142
+ "Managerには、404エラー回避のためにWordPressが従来使用するリダイレクト機能を拡張できる一連のフックが含まれています。</strong>"
143
 
144
+ #: includes/views/permalink-manager-pro-addons.php:317
145
+ msgid ""
146
+ "<strong>Please use full URLs!</strong><br />For instance, <code>http:"
147
+ "//another-website.com/final-target-url</code>."
148
+ msgstr ""
149
+ "<strong>全てのURLをお使い下さい!</strong><br />例:<code>http://another-website."
150
+ "com/final-target-url</code>."
151
 
152
+ #: includes/views/permalink-manager-pro-addons.php:299
153
  #, php-format
154
  msgid ""
155
+ "<strong>Please use URIs only!</strong><br />For instance, to set-up a "
156
+ "redirect for <code>%s/old-uri</code> please use <code>old-uri</code>."
157
+ msgstr ""
158
+ "<strong>URIのみご利用下さい!</strong><br />例えば、<code>%s/old-uri</code> "
159
+ "のリダイレクトを設定する場合は、<code>old-uri</code> をお使い下さい。"
160
 
161
+ #: includes/views/permalink-manager-settings.php:127
 
162
  msgid ""
163
+ "<strong>You can use Permalink Manager to force SSL or \"www\" prefix in "
164
+ "WordPress permalinks.</strong>"
165
  msgstr ""
166
+ "<strong>Permalink "
167
+ "Managerを使って、WordPressのパーマリンク内にSSLもしくはwwwの接頭辞を強制的に付与できます。</strong>"
168
 
169
+ #: includes/views/permalink-manager-settings.php:64
170
+ msgid ""
171
+ "<strong>You can use this feature to either add or remove the slases from end "
172
+ "of WordPress permalinks.</strong>"
173
+ msgstr "<strong>この機能で、WordPressパーマリンクの末尾にスラッシュを追加または削除できます。</strong>"
174
 
175
+ #: includes/views/permalink-manager-pro-addons.php:294
176
+ msgid "Add new redirect"
177
+ msgstr "新しいリダイレクトを追加する"
178
+
179
+ #: includes/views/permalink-manager-pro-addons.php:164
180
+ msgid "Add the words from the list"
181
+ msgstr "リストから単語を追加する"
182
+
183
+ #: includes/views/permalink-manager-settings.php:61
184
+ msgid "Add trailing slashes"
185
+ msgstr "末尾のスラッシュを追加する"
186
+
187
+ #: includes/views/permalink-manager-settings.php:206
188
+ msgid "Administrator (edit_theme_options)"
189
+ msgstr "管理者 (edit_theme_options)"
190
+
191
+ #. Description of the plugin
192
  msgid ""
193
+ "Advanced plugin that allows to set-up custom permalinks (bulk editors "
194
+ "included), slugs and permastructures (WooCommerce compatible)."
195
+ msgstr "有償版では、スラッグやパーマ構造(WooCommerceとの互換性あり)、カスタム パーマリンク(一括編集も含む)の設定が可能です。"
 
 
 
196
 
197
+ #: includes/views/permalink-manager-settings.php:176
198
+ msgid "Advanced settings"
199
+ msgstr "詳細設定"
200
 
201
+ #: includes/views/permalink-manager-permastructs.php:79
202
  #, php-format
203
  msgid ""
204
+ "All allowed <a href=\"%s\" target=\"_blank\">permastructure tags</a> are "
205
+ "listed below. Please note that some of them can be used only for particular "
206
+ "post types or taxonomies."
207
  msgstr ""
208
+ "以下は、全て使用可能な<a href=\"%s\" target=\"_blank\">パーマ構造 タグ</a>"
209
+ "です。いくつかのタグは、特定の投稿タイプやタクソノミーでのみ使用可能ですので、ご注意下さい。"
210
 
211
+ #: includes/views/permalink-manager-uri-editor-post.php:174
212
+ msgid "All dates"
213
+ msgstr "全日付"
214
+
215
+ #: includes/views/permalink-manager-pro-addons.php:271
216
  msgid ""
217
+ "All URIs specified below will redirect the visitors to the custom URI "
218
+ "defined above in \"Current URI\" field."
219
+ msgstr "以下で指定された全てのURIは、訪問者を上記の「現在のURI」フィールドで定義されたカスタムURIにリダイレクトします。"
220
+
221
+ #: includes/views/permalink-manager-uri-editor.php:83
222
+ msgid "Apply"
223
+ msgstr "適用"
224
 
225
+ #: includes/core/permalink-manager-pro-functions.php:188
226
  msgid "Arabic"
227
  msgstr "アラビア語"
228
 
229
+ #: includes/core/permalink-manager-admin-functions.php:135
230
+ msgid "Are you sure? This action cannot be undone!"
231
+ msgstr "本当によろしいですか?この操作は、元に戻せません!"
232
 
233
+ #: includes/views/permalink-manager-debug.php:58
234
+ msgid "Array with external redirects"
235
+ msgstr "外部リダイレクトでの配列"
236
 
237
+ #: includes/views/permalink-manager-debug.php:69
238
+ msgid "Array with permastructures"
239
+ msgstr "パーマ構造での配列"
240
 
241
+ #: includes/views/permalink-manager-debug.php:48
242
+ msgid "Array with redirects"
243
+ msgstr "リダイレクトでの配列"
244
 
245
+ #: includes/views/permalink-manager-debug.php:80
246
+ msgid "Array with settings used in this plugin."
247
+ msgstr "本プラグイン内で使用中の設定での配列"
248
 
249
+ #: includes/views/permalink-manager-debug.php:37
250
+ msgid "Array with URIs"
251
+ msgstr "URIでの配列"
252
 
253
+ #: includes/views/permalink-manager-settings.php:206
254
+ msgid "Author (publish_posts)"
255
+ msgstr "投稿者 (publish_posts)"
256
 
257
+ #: includes/core/permalink-manager-admin-functions.php:857
258
+ msgid "Auto-update \"Current URI\""
259
+ msgstr ""
260
 
261
+ #: includes/views/permalink-manager-settings.php:39
262
+ msgid "Auto-update permalinks"
263
+ msgstr "パーマリンクの自動更新"
264
 
265
+ #: includes/core/permalink-manager-admin-functions.php:890
266
+ msgid "Automatic redirect for native URI enabled:"
267
+ msgstr "ネイティブURIの自動リダイレクトを有効にする:"
268
 
269
+ #: includes/views/permalink-manager-settings.php:211
270
+ msgid "Automatically fix broken URIs"
271
+ msgstr "壊れたURIを自動的に修正する"
272
 
273
+ #: includes/views/permalink-manager-settings.php:169
274
+ msgid "Breadcrumbs support"
275
+ msgstr "パンくずリスト サポート"
276
 
277
+ #: includes/core/permalink-manager-actions.php:573
278
+ msgid "Broken redirects were removed successfully!"
279
+ msgstr "リンク切れリダイレクトは、無事削除されました!"
280
 
281
+ #: includes/views/permalink-manager-settings.php:213
282
+ msgid "Bulk fix all URIs (once a day, in the background)"
283
+ msgstr "全てのURIを一括修正する(1日1回、バックグラウンド)"
284
 
285
+ #: includes/core/permalink-manager-admin-functions.php:173
286
+ msgid "Buy Permalink Manager Pro"
287
+ msgstr "Permalink Manager Proを購入"
288
 
289
+ #: includes/core/permalink-manager-admin-functions.php:584
290
+ msgid "by Maciej Bis"
291
+ msgstr "by Maciej Bis"
292
 
293
+ #: includes/views/permalink-manager-settings.php:70
294
+ msgid "Canonical redirect"
295
+ msgstr "正規リダイレクト"
296
 
297
+ #: includes/views/permalink-manager-pro-addons.php:135
298
+ msgid "Check the expiration date."
299
+ msgstr "有効期限を確認する"
300
 
301
+ #: includes/core/permalink-manager-pro-functions.php:189
302
+ msgid "Chinese"
303
+ msgstr "中国語"
304
 
305
+ #: includes/core/permalink-manager-uri-functions-tax.php:489
306
+ msgid "Clear/leave the field empty to use the default permalink."
307
+ msgstr "デフォルトのパーマリンクを使用するため、フィールドを空のままにする / クリアする"
308
 
309
+ #: includes/core/permalink-manager-admin-functions.php:829
310
+ msgid "Close: "
311
+ msgstr "閉じる:"
312
 
313
+ #: includes/views/permalink-manager-tools.php:120
314
+ msgid "Congratulations! No duplicated URIs or Redirects found!"
315
+ msgstr "おめでとうございます!重複したURI・リダイレクトは、見つかりませんでした!"
316
 
317
+ #: includes/views/permalink-manager-settings.php:206
318
+ msgid "Contributor (edit_posts)"
319
+ msgstr "寄稿者 (edit_posts)"
320
+
321
+ #: includes/views/permalink-manager-settings.php:198
322
+ msgid "Convert accented letters"
323
+ msgstr "アクセント付き文字の変換"
324
+
325
+ #: includes/views/permalink-manager-uri-editor-tax.php:53
326
+ msgid "Count"
327
+ msgstr "カウント"
328
 
329
+ #: includes/core/permalink-manager-pro-functions.php:524
330
  msgid "Coupon Full URL"
331
  msgstr "クーポン フル URL"
332
 
333
+ #: includes/core/permalink-manager-pro-functions.php:491
334
+ msgid "Coupon Link"
335
+ msgstr "クーポンリンク"
336
 
337
+ #: includes/core/permalink-manager-pro-functions.php:512
338
+ msgid "Coupon URI"
339
+ msgstr "クーポンURI"
 
340
 
341
+ #: includes/core/permalink-manager-uri-functions-tax.php:521
342
+ #: includes/core/permalink-manager-admin-functions.php:747
343
+ #: includes/core/permalink-manager-admin-functions.php:848
344
+ #: includes/core/permalink-manager-uri-functions-post.php:690
345
+ msgid "Current URI"
346
+ msgstr "現在のURI"
347
 
348
+ #: includes/views/permalink-manager-pro-addons.php:214
349
+ #: includes/views/permalink-manager-tools.php:34
350
+ msgid "Custom Permalinks"
351
+ msgstr "カスタム パーマリンク"
352
 
353
  #: includes/core/permalink-manager-actions.php:397
354
  msgid "Custom permalinks"
358
  msgid "Custom redirects"
359
  msgstr "カスタム リダイレクト"
360
 
361
+ #: includes/core/permalink-manager-third-parties.php:698
362
+ #: includes/core/permalink-manager-uri-functions-tax.php:488
363
+ #: includes/views/permalink-manager-tools.php:70
364
+ msgid "Custom URI"
365
+ msgstr "カスタム URI"
366
 
367
+ #: includes/views/permalink-manager-tools.php:150
368
+ msgid "Custom URIs"
369
+ msgstr "カスタム URI"
 
370
 
371
+ #: includes/core/permalink-manager-pro-functions.php:190
372
+ msgid "Danish"
373
+ msgstr "デンマーク語"
 
374
 
375
+ #: includes/views/permalink-manager-pro-addons.php:215
376
+ msgid "Deactivate after import"
377
+ msgstr "インポート後、非アクティブにする"
378
 
379
+ #: includes/views/permalink-manager-debug.php:14
380
+ msgid "Debug"
381
+ msgstr "デバッグ"
382
 
383
+ #: includes/views/permalink-manager-debug.php:28
384
+ msgid "Debug data"
385
+ msgstr "デバッグデータ"
386
 
387
+ #: includes/core/permalink-manager-admin-functions.php:419
388
+ msgid "Default permastructure"
389
+ msgstr "デフォルト パーマ構造"
390
 
391
+ #: includes/core/permalink-manager-admin-functions.php:879
392
+ msgid "Default URI"
393
+ msgstr "デフォルト URI"
394
 
395
+ #: includes/views/permalink-manager-settings.php:213
396
+ msgid "Disable"
397
+ msgstr "無効"
398
 
399
+ #: includes/views/permalink-manager-settings.php:105
400
+ msgid "Disable (Permalink Manager redirect functions)"
401
+ msgstr "無効(Permalink Manager リダイレクト 機能)"
 
 
402
 
403
+ #: includes/core/permalink-manager-admin-functions.php:427
404
+ msgid "Do not automatically append the slug"
405
+ msgstr "スラッグを自動的に追加しない"
 
 
406
 
407
+ #: includes/core/permalink-manager-admin-functions.php:169
408
+ msgid "Documentation"
409
+ msgstr "ドキュメント"
410
 
411
+ #: includes/core/permalink-manager-admin-functions.php:583
412
+ msgid "Donate"
413
+ msgstr "寄付"
 
 
414
 
415
+ #: includes/core/permalink-manager-pro-functions.php:191
416
+ msgid "Dutch"
417
+ msgstr "オランダ語"
418
+
419
+ #: includes/views/permalink-manager-pro-addons.php:192
420
  msgid ""
421
+ "Each of the words can be removed and any new words can be added to the list. "
422
+ "You can also use a predefined list (available in 21 languages)."
423
+ msgstr "各単語は、リストへ追加/削除できます。また、定義済みのリスト(21の言語)も使用可能です。"
 
 
 
 
 
424
 
425
+ #: includes/views/permalink-manager-uri-editor-post.php:120
426
+ #: includes/views/permalink-manager-uri-editor-tax.php:100
427
+ #: includes/views/permalink-manager-uri-editor-tax.php:100
428
+ msgid "Edit"
429
+ msgstr "編集"
430
 
431
+ #: includes/views/permalink-manager-tools.php:94
432
+ msgid "Edit post"
433
+ msgstr "投稿の編集"
 
 
 
 
 
 
434
 
435
+ #: includes/views/permalink-manager-tools.php:81
436
+ msgid "Edit term"
437
+ msgstr "タームの編集"
438
 
439
+ #: includes/views/permalink-manager-settings.php:206
440
+ msgid "Editor (publish_pages)"
441
+ msgstr "編集者 (publish_pages)"
442
 
443
+ #: includes/views/permalink-manager-pro-addons.php:172
444
+ msgid "Enable \"stop words\""
445
+ msgstr "「使用禁止の単語」を有効にする"
 
446
 
447
+ #: includes/views/permalink-manager-settings.php:215
448
+ msgid ""
449
+ "Enable this option if you would like to automatically remove redundant "
450
+ "permalinks & duplicated redirects."
451
+ msgstr "冗長なパーマリンクと重複したリダイレクトを自動的に削除したい場合は、このオプションを有効にします。"
452
 
453
+ #: includes/core/permalink-manager-pro-functions.php:192
454
+ msgid "English"
455
+ msgstr "英語"
 
456
 
457
+ #: includes/views/permalink-manager-settings.php:97
458
+ msgid "Enhanced redirect"
459
+ msgstr "拡張 リダイレクト"
460
 
461
+ #: includes/views/permalink-manager-settings.php:220
462
+ #, fuzzy
463
+ #| msgid "Excluded content types"
464
+ msgid "Exclude content types"
465
+ msgstr "除外する投稿タイプ"
466
 
467
+ #: includes/views/permalink-manager-settings.php:226
468
+ msgid "Exclude drafts"
469
+ msgstr ""
 
 
470
 
471
+ #: includes/core/permalink-manager-pro-functions.php:151
472
+ msgid ""
473
+ "Expiration date could not be downloaded at this moment. Please try again in "
474
+ "a few minutes."
475
+ msgstr "現在、有効期限の情報をダウンロードできない可能性があります。数分後に、再度お試し下さい。"
476
 
477
+ #: includes/core/permalink-manager-actions.php:405
478
+ msgid "External redirects"
479
+ msgstr "外部のリダイレクト"
 
480
 
481
+ #: includes/views/permalink-manager-tools.php:70
482
+ msgid "Extra Redirect"
483
+ msgstr "追加のリダイレクト"
 
484
 
485
+ #: includes/views/permalink-manager-pro-addons.php:270
486
+ msgid "Extra redirects (aliases)"
487
+ msgstr "追加のリダイレクト(エイリアス)"
488
 
489
+ #: includes/views/permalink-manager-uri-editor-post.php:183
490
  msgid "Filter"
491
  msgstr "フィルター"
492
 
493
+ #: includes/views/permalink-manager-tools.php:22
494
+ msgid "Find & Replace"
495
+ msgstr "検索&置換"
496
 
497
+ #: includes/views/permalink-manager-tools.php:134
498
+ msgid "Find ..."
499
+ msgstr "検索"
500
 
501
+ #: includes/views/permalink-manager-tools.php:209
502
+ msgid "Find and replace"
503
+ msgstr "検索&置換"
504
 
505
+ #: includes/core/permalink-manager-pro-functions.php:193
506
+ msgid "Finnish"
507
+ msgstr "フィンランド語"
508
 
509
+ #: includes/views/permalink-manager-tools.php:55
510
+ msgid "Fix custom permalinks & redirects"
511
+ msgstr "カスタム パーマリンク&リダイレクトを修正する"
512
 
513
+ #: includes/views/permalink-manager-settings.php:213
514
+ msgid "Fix URIs individually (during page load)"
515
+ msgstr "個々にURLを修正する(ページ読込時)"
516
 
517
+ #: includes/views/permalink-manager-settings.php:186
518
+ msgid "Force 404 on non-existing pagination pages"
519
+ msgstr "実在しないページネーションのページに404を強制表示する"
520
 
521
+ #: includes/views/permalink-manager-settings.php:124
522
+ msgid "Force HTTPS/WWW"
523
+ msgstr "HTTPS/WWW 強制"
524
 
525
+ #: includes/core/permalink-manager-pro-functions.php:194
526
+ msgid "French"
527
+ msgstr "フランス語"
528
 
529
+ #: includes/views/permalink-manager-uri-editor-post.php:56
530
+ #: includes/views/permalink-manager-uri-editor-tax.php:52
531
+ msgid "Full URI & Permalink"
532
+ msgstr "全ての URIとパーマリンク"
533
 
534
+ #: includes/views/permalink-manager-settings.php:33
535
+ msgid "General settings"
536
+ msgstr "一般設定"
 
 
537
 
538
+ #: includes/core/permalink-manager-pro-functions.php:195
539
+ msgid "German"
540
+ msgstr "ドイツ語"
541
+
542
+ #: permalink-manager.php:209
543
+ #, php-format
544
  msgid ""
545
+ "Get access to extra features: full taxonomy and WooCommerce support, "
546
+ "possibility to use custom fields inside the permalinks and more!<br />"
547
+ "<strong>Buy Permalink Manager Pro <a href=\"%s\" target=\"_blank\">here</a> "
548
+ "and save %s using \"%s\" coupon code!</strong> Valid until %s!"
549
+ msgstr ""
550
+ "様々な機能へアクセス:タクソノミーとWooCommerceへのフルサポート、パーマリンク内のカスタムフィールドの使用など、盛り沢山!<br />"
551
+ "<strong>パーマリンク マネージャー Proの購入は<a href=\"%s\" target=\"_blank\">コチラ</a>! %s "
552
+ "の割引 「%s」をご利用下さい。 </strong> %s まで!"
553
 
554
+ #: includes/core/permalink-manager-pro-functions.php:196
555
+ msgid "Hebrew"
556
+ msgstr "ヘブライ語"
557
 
558
+ #: includes/core/permalink-manager-pro-functions.php:197
559
+ msgid "Hindi"
560
+ msgstr "ヒンディー語"
 
561
 
562
+ #: includes/views/permalink-manager-pro-addons.php:313
563
+ msgid "http://another-website.com/final-target-url"
564
+ msgstr "http://another-website.com/final-target-url"
565
 
566
+ #. Author URI of the plugin
567
+ msgid "http://maciejbis.net/"
568
+ msgstr "http://maciejbis.net/"
 
 
569
 
570
+ #. URI of the plugin
571
+ msgid "https://permalinkmanager.pro?utm_source=plugin"
572
+ msgstr "https://permalinkmanager.pro?utm_source=plugin"
573
+
574
+ #: includes/core/permalink-manager-admin-functions.php:849
575
  msgid ""
576
+ "If custom URI is not defined, a default URI will be set (see below). The "
577
+ "custom URI can be edited only if 'Auto-update the URI' feature is not "
578
+ "enabled."
579
+ msgstr ""
580
+ "カスタムURIが定義されていない場合、デフォルトのURIが設定されます。(以下を参照)カスタムURIは、「URIの自動更新」機能が有効になっていない場合のみ編集できます。"
581
 
582
+ #: includes/views/permalink-manager-settings.php:158
583
  msgid ""
584
+ "If disabled, the custom permalinks <strong>will not be saved</strong> for "
585
+ "the posts imported with WP All Import plugin."
586
  msgstr ""
 
587
 
588
+ #: includes/core/permalink-manager-third-parties.php:699
589
  #, php-format
590
+ msgid ""
591
+ "If empty, a default permalink based on your current <a href=\"%s\" "
592
+ "target=\"_blank\">permastructure settings</a> will be used."
593
+ msgstr ""
594
+ "空の場合、現在の<a href=\"%s\" target=\"_blank\">パーマ構造 設定</a>"
595
+ "に基づいたデフォルトのパーマリンクが適用されます。"
596
 
597
+ #: includes/views/permalink-manager-settings.php:194
598
+ msgid ""
599
+ "If enabled only alphanumeric characters, underscores and dashes will be "
600
+ "allowed for post/term slugs."
601
+ msgstr "英数字のみを有効にすると、投稿とターム スラッグにて下線とダッシュの使用が許可されます。"
602
 
603
+ #: includes/views/permalink-manager-pro-addons.php:191
604
+ msgid ""
605
+ "If enabled, all selected \"stop words\" will be automatically removed from "
606
+ "default URIs."
607
+ msgstr "有効にすると、選択された全ての「使用禁止の単語」はデフォルトのURIから、自動的に削除されます。"
608
 
609
+ #: includes/views/permalink-manager-settings.php:201
 
610
  msgid ""
611
+ "If enabled, all the accented letters will be replaced with their non-"
612
+ "accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
 
613
  msgstr ""
614
+ "有効にすると、全てのアクセント付きの文字が、アクセントなしの文字に置換されます。(例:Å => A, Æ => AE, Ø => O, Ć => C)"
 
615
 
616
+ #: includes/views/permalink-manager-settings.php:118
617
+ #, fuzzy
618
+ #| msgid ""
619
+ #| "If enabled, Permalink Manage will add redirect for earlier version of "
620
+ #| "custom permalink after you change it (eg. with URI Editor or "
621
+ #| "Regenerate/reset tool)."
622
  msgid ""
623
+ "If enabled, Permalink Manage will save the \"extra redirect\" for earlier "
624
+ "version of custom permalink after you change it (eg. with URI Editor or "
625
+ "Regenerate/reset tool)."
626
  msgstr ""
627
+ "有効にすると、Permalink Managerは、変更後(例:URIエディターまたは再生成・リセットツールを使用)に、以前のバージョンのカスタム "
628
+ "パーマリンクのリダイレクトを追加します。"
629
 
630
+ #: includes/views/permalink-manager-settings.php:43
631
  msgid ""
632
+ "If enabled, Permalink Manager will always force the default custom permalink "
633
+ "format (based on current <strong>Permastructure</strong> settings)."
634
  msgstr ""
635
+ "有効にすると、Permalink Managerは常にデフォルトのカスタム パーマリンク形式を強制します。(現在の<strong>"
636
+ "パーマ構造</strong>設定に基づく)"
 
 
 
637
 
638
+ #: includes/views/permalink-manager-settings.php:165
639
  msgid ""
640
+ "If enabled, Permalink Manager will detect the additional Ultimate Member "
641
+ "pages (eg. \"account\" sections)."
642
+ msgstr ""
643
 
644
+ #: includes/core/permalink-manager-admin-functions.php:858
645
  msgid ""
646
+ "If enabled, the 'Current URI' field will be automatically changed to "
647
+ "'Default URI' (displayed below) after the post is saved or updated."
648
+ msgstr "有効にすると、「現在のURI」項目は投稿が更新又は保存された後に、(下記に表示された)「デフォルトURI」に自動的に変更されます。"
 
 
649
 
650
+ #: includes/views/permalink-manager-settings.php:227
651
+ msgid "If enabled, the custom permalinks for post drafts will not be saved."
652
+ msgstr ""
653
 
654
+ #: includes/views/permalink-manager-settings.php:171
655
  msgid ""
656
+ "If enabled, the HTML breadcrumbs will be filtered by Permalink Manager to "
657
+ "mimic the current URL structure.<br />Works with: <strong>WooCommerce, Yoast "
658
+ "SEO, RankMath and SEOPress</strong> breadcrumbs."
659
+ msgstr ""
 
 
 
660
 
661
+ #: includes/views/permalink-manager-settings.php:187
662
+ msgid ""
663
+ "If enabled, the non-existing pagination pages (for single posts) will return "
664
+ "404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
665
+ "any problems with pagination pages or use custom pagination system.</strong>"
666
+ msgstr ""
667
+ "有効にすると、実在しないページネーションのページ(単一投稿用)に対して、404( \"Not Found\")エラーを返します。<br />"
668
+ "<strong>ページネーションのページ、もしくは独自のページネーション "
669
+ "システムをご利用で、なんらかの問題が生じた場合は、無効にしてください。</strong>"
670
 
671
+ #: includes/views/permalink-manager-settings.php:151
 
672
  msgid ""
673
+ "If enabled, the plugin will load the adjacent translation of post when the "
674
+ "custom permalink is detected, but the language code in the URL does not "
675
+ "match the language code assigned to the post/term."
676
  msgstr ""
677
+ "有効にすると、本プラグインはカスタムパーマリンクを検出した際、投稿に用いた言語に近い翻訳を読み込みますが、投稿やタームに割当られた言語コードとURL内言語コードと一致しない場合は読み込みません。"
 
678
 
679
+ #: includes/views/permalink-manager-settings.php:91
680
+ msgid ""
681
+ "If enabled, the visitors trying to access the URL with the old slug will be "
682
+ "redirected to the canonical permalink."
683
+ msgstr "有効にすると、古いスラッグでURLにアクセスした訪問者を、正規パーマリンクにリダイレクトします。"
684
 
685
  #: includes/views/permalink-manager-pro-addons.php:309
686
  msgid ""
688
  "the URL specified below."
689
  msgstr "空白でない場合、このページにアクセスしようと試みた訪問者は、下記のURLにリダイレクトされます。"
690
 
691
+ #: includes/views/permalink-manager-pro-addons.php:218
692
+ msgid ""
693
+ "If selected, \"Custom Permalinks\" plugin will be deactivated after its "
694
+ "custom URIs are imported."
695
+ msgstr "選択すると、カスタムURIのインポート後、「カスタムパーマリンク」プラグインが無効になります。"
696
 
697
+ #: includes/views/permalink-manager-pro-addons.php:250
698
  msgid ""
699
+ "If you still did not find the answer to your question, please send us your "
700
+ "question or a detailed description of your problem/issue to <a href=\"mailto:"
701
+ "support@permalinkmanager.pro\">support@permalinkmanager.pro</a>."
702
  msgstr ""
703
+ "ご質問に対して答えが見つからない場合は、問題の詳細又はご質問を<a href=\"mailto:support@permalinkmanager."
704
+ "pro\">support@permalinkmanager.pro</a>までお送り下さい。(英語のみ)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
705
 
706
+ #: includes/views/permalink-manager-pro-addons.php:254
707
  msgid ""
708
+ "If you would like to suggest a new functionality or leave us feedback, we "
709
+ "are open to all new ideas and would be grateful for all your comments!"
710
+ msgstr "新たな機能の提案やフィードバックをお送り下さい。あらゆる新しいアイデアは大歓迎であり、あなたのコメントをお送り頂ければ幸いです。"
 
 
711
 
712
+ #: includes/core/permalink-manager-admin-functions.php:402
713
  msgid ""
714
+ "If you would like to translate the permastructures and set-up different "
715
+ "permalink structure per language, please fill in the fields below. Otherwise "
716
+ "the permastructure set for default language (see field above) will be "
717
+ "applied."
718
  msgstr ""
719
+ "パーマ構造を翻訳し、言語ごとに異なるパーマリンク構造を設定する場合は、以下のフィールドに入力して下さい。 それ以外は、デフォルト言語のパーマ構造 "
720
+ "セット(上記のフィールドを参照)が適用されます。"
721
 
722
+ #: includes/views/permalink-manager-pro-addons.php:230
723
+ #, php-format
724
+ msgid "Import %d URIs"
725
+ msgstr "%d URIをインポートする"
726
 
727
+ #: includes/views/permalink-manager-tools.php:206
728
+ #: includes/views/permalink-manager-tools.php:283
729
+ msgid "Important notices"
730
+ msgstr "重要なお知らせ"
731
 
732
+ #: includes/views/permalink-manager-uri-editor-post.php:89
733
+ msgid "Inherit (Attachment)"
734
+ msgstr "継承(添付)"
735
 
736
  #: includes/views/permalink-manager-settings.php:50
737
  msgid "Inherit parents' slugs"
738
  msgstr "親のスラッグを継承する"
739
 
740
+ #: includes/views/permalink-manager-permastructs.php:75
741
+ #: includes/views/permalink-manager-pro-addons.php:190
742
+ #: includes/views/permalink-manager-pro-addons.php:223
743
+ msgid "Instructions"
744
+ msgstr "手順"
 
745
 
746
+ #: includes/core/permalink-manager-pro-functions.php:198
747
+ msgid "Italian"
748
+ msgstr "イタリア語"
 
 
749
 
750
+ #: includes/core/permalink-manager-pro-functions.php:199
751
+ msgid "Japanese"
752
+ msgstr "日本語"
 
 
753
 
754
+ #: includes/core/permalink-manager-pro-functions.php:200
755
+ msgid "Korean"
756
+ msgstr "韓国語"
757
 
758
+ #: includes/views/permalink-manager-pro-addons.php:128
759
+ msgid "Licence"
760
+ msgstr "ライセンス"
761
 
762
+ #: includes/views/permalink-manager-pro-addons.php:134
763
+ msgid "Licence key"
764
+ msgstr "ライセンスキー"
765
 
766
+ #: includes/views/permalink-manager-debug.php:44
767
+ msgid "List of custom redirects set-up by this plugin."
768
+ msgstr "本プラグインによって設定されたカスタム リダイレクトのリスト"
769
 
770
+ #: includes/views/permalink-manager-tools.php:54
771
+ msgid "List of duplicated permalinks"
772
+ msgstr "重複したパーマリンクのリスト"
 
 
 
773
 
774
+ #: includes/views/permalink-manager-debug.php:55
775
+ msgid "List of external redirects set-up by this plugin."
776
+ msgstr "本プラグインにてセットアップされた外部リダイレクトのリスト"
 
 
777
 
778
+ #: includes/views/permalink-manager-debug.php:65
779
+ msgid "List of permastructures set-up by this plugin."
780
+ msgstr "本プラグインにてセットアップしたパーマ構造のリスト"
 
 
 
 
781
 
782
+ #: includes/views/permalink-manager-debug.php:76
783
+ msgid "List of plugin settings."
784
+ msgstr "プラグイン設定 リスト"
785
 
786
+ #: includes/views/permalink-manager-debug.php:33
787
+ msgid "List of the URIs generated by this plugin."
788
+ msgstr "本プラグインで生成されたURIのリスト"
 
 
 
 
789
 
790
+ #: includes/core/permalink-manager-admin-functions.php:703
791
+ msgid "List of updated items"
792
+ msgstr "更新済みのアイテムのリスト"
793
+
794
+ #. Author of the plugin
795
+ msgid "Maciej Bis"
796
+ msgstr "Maciej Bis"
797
+
798
+ #: includes/core/permalink-manager-admin-functions.php:939
799
+ msgid "Manage redirects"
800
+ msgstr "リダイレクトを管理"
801
+
802
+ #: includes/views/permalink-manager-tools.php:146
803
+ #: includes/views/permalink-manager-tools.php:222
804
+ msgid "Mode"
805
+ msgstr "モード"
806
+
807
+ #: includes/core/permalink-manager-admin-functions.php:869
808
+ msgid "Native slug"
809
+ msgstr "ネイティブ スラッグ"
810
+
811
+ #: includes/views/permalink-manager-tools.php:151
812
+ msgid "Native slugs"
813
+ msgstr "ネイティブ スラッグ"
814
+
815
+ #: includes/core/permalink-manager-admin-functions.php:666
816
+ #: includes/core/permalink-manager-admin-functions.php:693
817
+ msgid "New Slug"
818
+ msgstr "新しいスラッグ"
819
+
820
+ #: includes/core/permalink-manager-admin-functions.php:669
821
+ #: includes/core/permalink-manager-admin-functions.php:696
822
+ msgid "New URI"
823
+ msgstr "新しいURI"
824
+
825
+ #: includes/core/permalink-manager-admin-functions.php:810
826
+ #: includes/core/permalink-manager-admin-functions.php:814
827
+ msgid "No"
828
+ msgstr "いいえ"
829
+
830
+ #: includes/core/permalink-manager-third-parties.php:302
831
+ msgid "No \"Custom Permalinks\" URIs were imported!"
832
+ msgstr "「カスタム パーマリンク」 URIはインポートされませんでした!"
833
+
834
+ #: includes/core/permalink-manager-admin-functions.php:815
835
+ msgid "No (ignore this URI in bulk tools)"
836
+ msgstr "いいえ(一括ツールでは、このURIを無視します。)"
837
+
838
+ #: includes/core/permalink-manager-actions.php:379
839
+ msgid "No Custom URIs or Custom Redirects were removed!"
840
+ msgstr "カスタムURIもしくはカスタム リダイレクトは、削除されませんでした!"
841
+
842
+ #: includes/views/permalink-manager-pro-addons.php:235
843
+ msgid "No custom URIs to import"
844
+ msgstr "インポートするカスタムURIはありません"
845
+
846
+ #: includes/views/permalink-manager-settings.php:200
847
+ msgid "No, keep accented letters in the slugs"
848
+ msgstr "いいえ、スラッグにアクセント付き文字を保持します。"
849
+
850
+ #: includes/views/permalink-manager-settings.php:193
851
+ msgid "No, keep special characters (.,|_+) in the slugs"
852
+ msgstr "いいえ、スラッグに特殊文字(.,|_+)を保持します。"
853
+
854
+ #: includes/core/permalink-manager-pro-functions.php:201
855
+ msgid "Norwegian"
856
+ msgstr "ノルウェー語"
857
+
858
+ #: includes/core/permalink-manager-admin-functions.php:665
859
+ #: includes/core/permalink-manager-admin-functions.php:692
860
+ msgid "Old Slug"
861
+ msgstr "古いスラッグ"
862
 
863
  #: includes/views/permalink-manager-settings.php:87
864
  msgid "Old slug redirect"
865
  msgstr "古いスラッグ リダイレクト"
866
 
867
+ #: includes/core/permalink-manager-admin-functions.php:668
868
+ #: includes/core/permalink-manager-admin-functions.php:695
869
+ msgid "Old URI"
870
+ msgstr "古いURI"
871
+
872
+ #: includes/views/permalink-manager-settings.php:207
873
+ #, php-format
874
  msgid ""
875
+ "Only the users who have selected capability will be able to access URI "
876
+ "Editor.<br />The list of capabilities <a href=\"%s\" target=\"_blank\">can "
877
+ "be found here</a>."
878
  msgstr ""
879
+ "権限を持つユーザーのみがURIエディターにアクセスできます。<br />権限のリストは<a href=\"%s\" target=\"_blank\">"
880
+ "コチラ</a>で確認できます。"
881
 
882
+ #: includes/views/permalink-manager-uri-editor.php:89
883
+ msgid "Per page"
884
+ msgstr "ページ毎"
 
 
885
 
886
+ #: includes/views/permalink-manager-tools.php:18
887
+ msgid "Permalink Duplicates"
888
+ msgstr "重複したパーマリンク"
889
 
890
+ #: includes/core/permalink-manager-third-parties.php:694
891
+ #: includes/core/permalink-manager-gutenberg.php:29
892
+ #: includes/core/permalink-manager-admin-functions.php:111
893
+ #: includes/core/permalink-manager-admin-functions.php:111
894
+ #: includes/core/permalink-manager-admin-functions.php:743
895
+ #: includes/core/permalink-manager-admin-functions.php:824
896
+ #: includes/core/permalink-manager-admin-functions.php:829
897
+ #: includes/core/permalink-manager-admin-functions.php:830
898
+ msgid "Permalink Manager"
899
+ msgstr "Permalink Manager"
900
 
901
+ #. Name of the plugin
902
+ msgid "Permalink Manager Pro"
903
+ msgstr "Permalink Manager Pro"
904
 
905
+ #: includes/views/permalink-manager-settings.php:222
906
+ msgid ""
907
+ "Permalink Manager will ignore and not filter the custom permalinks of all "
908
+ "selected above post types & taxonomies."
909
+ msgstr "Permalink Managerは、上記で選択した全ての投稿タイプとタクソノミーのカスタム パーマリンクを無視し、フィルタリングしません。"
910
 
911
+ #: includes/core/permalink-manager-admin-functions.php:426
912
+ #: includes/core/permalink-manager-actions.php:409
913
+ #: includes/core/permalink-manager-actions.php:413
914
+ msgid "Permastructure settings"
915
+ msgstr "パーマ構造 設定"
916
 
917
+ #: includes/views/permalink-manager-permastructs.php:78
918
+ msgid "Permastructure tags"
919
+ msgstr "パーマ構造 タグ"
 
 
 
 
920
 
921
+ #: includes/core/permalink-manager-admin-functions.php:401
922
+ msgid "Permastructure translations"
923
+ msgstr "パーマ構造 翻訳"
 
 
924
 
925
+ #: includes/views/permalink-manager-permastructs.php:15
926
+ msgid "Permastructures"
927
+ msgstr "パーマ構造"
928
 
929
+ #: includes/core/permalink-manager-pro-functions.php:202
930
+ msgid "Persian"
931
+ msgstr "ペルシア語"
932
+
933
+ #: includes/views/permalink-manager-settings.php:128
934
+ msgid "Please disable it if you encounter any redirect loop issues."
935
+ msgstr "リダイレクトのループ問題が発生した場合は、このオプションを無効にして下さい。"
936
+
937
+ #: includes/views/permalink-manager-pro-addons.php:224
938
  msgid ""
939
+ "Please note that \"Custom Permalinks\" (if activated) may break the behavior "
940
+ "of this plugin."
941
+ msgstr "「カスタム パーマリンク」(有効にしている場合)により、本プラグインの動作が損なわれる場合があります。"
 
942
 
943
+ #: includes/core/permalink-manager-pro-functions.php:126
944
+ #, php-format
945
  msgid ""
946
+ "Please paste the licence key to access all Permalink Manager Pro updates & "
947
+ "features <a href=\"%s\" target=\"_blank\">on this page</a>."
948
  msgstr ""
949
+ "<a href=\"%s\" target=\"_blank\">コチラのページ</a>にて、ライセンスキーを設定して全てのPermalink "
950
+ "Manager Pro のアップデート&機能をご利用下さい。"
951
 
952
+ #: includes/views/permalink-manager-settings.php:65
953
  msgid ""
954
+ "Please use \"<a href=\"#sslwww_redirect\">Trailing slashes redirect</a>\" "
955
+ "field if you would like to force the settings with redirect."
956
+ msgstr ""
957
+ "リダイレクトで設定を強制したい場合は、「<a href=\"#sslwww_redirect\">末尾のスラッシュリダイレクト</a>」 "
958
+ "フィールドをお使い下さい。"
959
 
960
+ #: includes/core/permalink-manager-pro-functions.php:203
961
+ msgid "Polish"
962
+ msgstr "ポーランド語"
963
 
964
+ #: includes/core/permalink-manager-pro-functions.php:204
965
+ msgid "Portuguese"
966
+ msgstr "ポルトガル語"
 
 
 
 
967
 
968
+ #: includes/views/permalink-manager-uri-editor-post.php:115
969
+ msgid "Post status"
970
+ msgstr "投稿状態"
971
 
972
+ #: includes/views/permalink-manager-uri-editor.php:94
973
+ msgid "Post statuses"
974
+ msgstr "投稿状態"
975
 
976
+ #: includes/views/permalink-manager-uri-editor-post.php:55
977
+ msgid "Post title"
978
+ msgstr "投稿タイトル"
 
 
 
979
 
980
+ #: includes/core/permalink-manager-admin-functions.php:262
981
+ #: includes/views/permalink-manager-permastructs.php:31
982
+ #: includes/views/permalink-manager-tools.php:162
983
+ #: includes/views/permalink-manager-tools.php:239
984
+ msgid "Post types"
985
+ msgstr "投稿タイプ"
986
 
987
+ #: includes/views/permalink-manager-settings.php:103
988
+ msgid "Redirect mode"
989
+ msgstr "リダイレクト モード"
990
 
991
+ #: includes/views/permalink-manager-pro-addons.php:308
992
+ msgid "Redirect this page to external URL"
993
+ msgstr "このページを外部URLにリダイレクトする"
 
 
 
 
994
 
995
+ #: includes/views/permalink-manager-tools.php:286
996
+ msgid "Regenerate"
997
+ msgstr "再作成"
998
 
999
+ #: includes/views/permalink-manager-tools.php:226
1000
+ msgid "Regenerate custom permalinks"
1001
+ msgstr "カスタム パーマリンクを再生成する"
 
 
1002
 
1003
+ #: includes/views/permalink-manager-tools.php:227
1004
+ msgid "Regenerate native slugs"
1005
+ msgstr "ネイティブ スラッグを再生成する"
1006
 
1007
+ #: includes/views/permalink-manager-tools.php:26
1008
+ msgid "Regenerate/Reset"
1009
+ msgstr "再作成 / リセット"
 
 
1010
 
1011
+ #: includes/views/permalink-manager-debug.php:35
1012
+ msgid "Remove all custom permalinks"
1013
+ msgstr "全てのカスタム パーマリンクを削除する"
1014
 
1015
+ #: includes/views/permalink-manager-debug.php:46
1016
+ msgid "Remove all custom redirects"
1017
+ msgstr "全てのカスタム リダイレクトを削除する"
 
 
 
1018
 
1019
+ #: includes/views/permalink-manager-debug.php:56
1020
+ msgid "Remove all external redirects"
1021
+ msgstr "全ての外部リダイレクトを削除する"
1022
 
1023
+ #: includes/views/permalink-manager-debug.php:67
1024
+ msgid "Remove all permastructures settings"
1025
+ msgstr "全てのパーマ構造 設定を削除する"
 
 
1026
 
1027
+ #: includes/views/permalink-manager-debug.php:78
1028
+ msgid "Remove all plugin settings"
1029
+ msgstr "全てのプラグイン設定を削除する"
1030
 
1031
+ #: includes/views/permalink-manager-pro-addons.php:162
1032
+ msgid "Remove all words"
1033
+ msgstr "全ての単語を削除する"
1034
 
1035
+ #: includes/views/permalink-manager-tools.php:85
1036
+ #: includes/views/permalink-manager-tools.php:98
1037
+ msgid "Remove broken URI"
1038
+ msgstr "リンク切れURLを削除する"
 
1039
 
1040
+ #: includes/views/permalink-manager-settings.php:61
1041
+ msgid "Remove trailing slashes"
1042
+ msgstr "末尾のスラッシュを削除する"
1043
 
1044
+ #: includes/views/permalink-manager-tools.php:140
1045
+ msgid "Replace with ..."
1046
+ msgstr "置換"
 
 
 
 
 
 
1047
 
1048
+ #: includes/core/permalink-manager-admin-functions.php:420
1049
+ msgid "Restore default permastructure"
1050
+ msgstr "デフォルトのパーマ構造を復元する"
1051
 
1052
+ #: includes/core/permalink-manager-admin-functions.php:880
1053
+ msgid "Restore Default URI"
1054
+ msgstr "デフォルトのURIを復元する"
 
1055
 
1056
+ #: includes/core/permalink-manager-pro-functions.php:205
1057
+ msgid "Russian"
1058
+ msgstr "ロシア語"
1059
 
1060
+ #: includes/views/permalink-manager-pro-addons.php:277
1061
+ msgid "sample/custom-uri"
1062
+ msgstr "sample/custom-uri"
 
 
1063
 
1064
+ #: includes/views/permalink-manager-pro-addons.php:194
1065
+ msgid "Save"
1066
+ msgstr "保存する"
1067
 
1068
+ #: includes/views/permalink-manager-uri-editor-post.php:150
1069
+ #: includes/views/permalink-manager-uri-editor-tax.php:147
1070
+ msgid "Save all the URIs above"
1071
+ msgstr "上記の全てのURIを保存する"
1072
 
1073
+ #: includes/views/permalink-manager-uri-editor-post.php:149
1074
+ #: includes/views/permalink-manager-uri-editor-tax.php:146
1075
+ msgid "Save all the URIs below"
1076
+ msgstr "以下の全てのURIを保存する"
1077
+
1078
+ #: includes/views/permalink-manager-settings.php:113
1079
+ msgid "Save old custom permalinks as redirects"
1080
  msgstr ""
 
1081
 
1082
+ #: includes/core/permalink-manager-admin-functions.php:912
1083
+ msgid "Save permalink"
1084
+ msgstr "パーマリンクを保存する"
1085
 
1086
+ #: includes/views/permalink-manager-permastructs.php:82
1087
+ msgid "Save permastructures"
1088
+ msgstr "パーマ構造を保存する"
1089
 
1090
+ #: includes/views/permalink-manager-settings.php:233
1091
+ msgid "Save settings"
1092
+ msgstr "設定を保存する"
1093
 
1094
+ #: includes/views/permalink-manager-uri-editor-post.php:158
1095
+ #: includes/views/permalink-manager-uri-editor-tax.php:155
1096
+ msgid "Search"
1097
+ msgstr "検索"
1098
 
1099
+ #: includes/core/permalink-manager-admin-functions.php:285
1100
+ msgid "Select all"
1101
+ msgstr "全てを選択する"
1102
 
1103
+ #: includes/views/permalink-manager-tools.php:155
1104
+ #: includes/views/permalink-manager-tools.php:232
1105
+ msgid "Select content type"
1106
+ msgstr "コンテンツタイプを選択する"
 
 
 
 
 
1107
 
1108
+ #: includes/views/permalink-manager-tools.php:196
1109
+ #: includes/views/permalink-manager-tools.php:273
1110
+ msgid "Select IDs"
1111
+ msgstr "IDを選択する"
1112
 
1113
+ #: includes/views/permalink-manager-tools.php:187
1114
+ #: includes/views/permalink-manager-tools.php:264
1115
+ msgid "Select post statuses"
1116
+ msgstr "投稿状態を選択する"
1117
 
1118
+ #: includes/views/permalink-manager-tools.php:167
1119
+ #: includes/views/permalink-manager-tools.php:244
1120
+ msgid "Select post types"
1121
+ msgstr "投稿タイプを選択する"
1122
 
1123
+ #: includes/views/permalink-manager-tools.php:176
1124
+ #: includes/views/permalink-manager-tools.php:253
1125
+ msgid "Select taxonomies"
1126
+ msgstr "タクソノミーを選択する"
1127
 
1128
+ #: includes/core/permalink-manager-admin-functions.php:157
1129
+ #: includes/views/permalink-manager-settings.php:14
1130
+ msgid "Settings"
1131
+ msgstr "設定"
 
1132
 
1133
+ #: includes/views/permalink-manager-settings.php:182
1134
+ msgid "Show \"Native slug\" field in URI Editor"
1135
+ msgstr ""
1136
 
1137
+ #: includes/core/permalink-manager-admin-functions.php:435
1138
+ msgid "Show additional settings"
1139
+ msgstr "追加設定を表示する"
1140
 
1141
+ #: includes/core/permalink-manager-admin-functions.php:690
1142
+ msgid "Show more details"
1143
+ msgstr "さらなる詳細を表示する"
1144
 
1145
+ #: includes/core/permalink-manager-actions.php:659
1146
+ msgid "Sitemaps were updated!"
1147
+ msgstr "サイトマップは、更新されました!"
1148
 
1149
+ #: includes/views/permalink-manager-uri-editor-post.php:114
1150
+ #: includes/views/permalink-manager-uri-editor-tax.php:95
1151
+ msgid "Slug"
1152
+ msgstr "スラッグ"
1153
+
1154
+ #: includes/views/permalink-manager-settings.php:48
1155
+ msgid "Slugs mode"
1156
+ msgstr "スラッグ モード"
1157
+
1158
+ #: includes/core/permalink-manager-pro-functions.php:206
1159
+ msgid "Spanish"
1160
+ msgstr "スペイン語"
1161
 
1162
  #: includes/views/permalink-manager-tools.php:30
1163
  msgid "Stop Words"
1164
  msgstr "使用禁止の単語"
1165
 
1166
+ #: includes/views/permalink-manager-settings.php:191
1167
+ msgid "Strip special characters"
1168
+ msgstr "特殊文字を取り除く"
 
 
 
1169
 
1170
+ #: includes/views/permalink-manager-pro-addons.php:253
1171
+ msgid "Suggestions/feedback"
1172
+ msgstr "ご意見 / フィードバック"
1173
 
1174
+ #: includes/views/permalink-manager-pro-addons.php:101
1175
+ msgid "Support"
1176
+ msgstr "サポート"
1177
 
1178
+ #: includes/core/permalink-manager-pro-functions.php:207
1179
+ msgid "Swedish"
1180
+ msgstr "スウェーデン語"
1181
 
1182
+ #: includes/core/permalink-manager-admin-functions.php:262
1183
+ #: includes/views/permalink-manager-permastructs.php:36
1184
+ #: includes/views/permalink-manager-tools.php:163
1185
+ #: includes/views/permalink-manager-tools.php:240
1186
+ msgid "Taxonomies"
1187
+ msgstr "タクソノミー"
1188
 
1189
+ #: includes/views/permalink-manager-pro-addons.php:248
1190
+ msgid "Technical support"
1191
+ msgstr "技術的サポート"
1192
 
1193
+ #: includes/views/permalink-manager-uri-editor-tax.php:51
1194
+ msgid "Term title"
1195
+ msgstr "ターム タイトル"
 
1196
 
1197
+ #: includes/views/permalink-manager-uri-editor-post.php:101
1198
+ #: includes/views/permalink-manager-uri-editor-tax.php:112
1199
+ msgid ""
1200
+ "The above permalink will be automatically updated and is locked for editing."
1201
+ msgstr ""
1202
 
1203
+ #: includes/core/permalink-manager-admin-functions.php:844
1204
+ msgid ""
1205
+ "The above permalink will be automatically updated to \"Default URI\" and is "
1206
+ "locked for editing."
1207
+ msgstr ""
1208
 
1209
+ #: includes/views/permalink-manager-permastructs.php:76
1210
+ #, php-format
1211
+ msgid ""
1212
+ "The current permastructures settings will be applied <strong>only to the new "
1213
+ "posts & terms</strong>. To apply the <strong>new permastructures to existing "
1214
+ "posts and terms</strong>, please regenerate the custom permalinks <a "
1215
+ "href=\"%s\">here</a>."
1216
+ msgstr ""
1217
+ "現在のパーマ構造の設定は、<strong>新規投稿とタームにのみ</strong>適用されます。<strong>"
1218
+ "既存の投稿とタームに新規のパーマ構造</strong>を適用するには、<a href=\"%s\">コチラ</a>"
1219
+ "にてカスタムパーマリンクを再生成して下さい。"
1220
 
1221
+ #: includes/core/permalink-manager-admin-functions.php:841
1222
+ msgid "The custom URI cannot be edited on frontpage."
1223
+ msgstr "カスタムURIは、フロントページでは編集不可です。"
1224
 
1225
+ #: includes/core/permalink-manager-admin-functions.php:870
1226
+ msgid ""
1227
+ "The native slug is by default automatically used in native permalinks (when "
1228
+ "Permalink Manager is disabled)."
1229
+ msgstr ""
1230
+ "ネイティブ スラッグは、(Permalink Managerが無効になっている場合)デフォルトでは自動的にネイティブパーマリンクが使用されます。"
1231
 
1232
+ #: includes/views/permalink-manager-settings.php:53
1233
+ msgid ""
1234
+ "The native slug is generated from the initial title after the post or term "
1235
+ "is published."
1236
+ msgstr "ネイティブ スラッグは、投稿またはタームが公開された後、最初のタイトルから生成されます。"
1237
 
1238
+ #: includes/core/permalink-manager-actions.php:597
1239
+ msgid "The redirect was removed successfully!"
1240
+ msgstr "リダイレクトは、無事削除されました!"
1241
 
1242
+ #: includes/core/permalink-manager-actions.php:105
1243
+ msgid "The settings are saved!"
1244
+ msgstr "設定は、保存されました!"
1245
+
1246
+ #: includes/core/permalink-manager-pro-functions.php:513
1247
+ msgid ""
1248
+ "The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
1249
+ "blackfriday</strong> are equivalent."
1250
+ msgstr ""
1251
+ "URIは、大文字・小文字は区別しません。例:<strong>BLACKFRIDAY</strong> と<strong>"
1252
+ "blackfriday</strong>は、同じです。"
1253
+
1254
+ #: includes/views/permalink-manager-pro-addons.php:225
1255
+ msgid ""
1256
+ "Therefore, it is recommended to disable \"Custom Permalink\" and import old "
1257
+ "permalinks before using Permalink Manager Pro."
1258
+ msgstr ""
1259
+ "したがって、「カスタム パーマリンク」を無効にして、Permalink Manager Proを使用する前の古いパーマリンクのインポートを推奨します。"
1260
+
1261
+ #: includes/views/permalink-manager-settings.php:142
1262
+ msgid "Third party plugins"
1263
+ msgstr "サードパーティー プラグイン"
1264
 
1265
+ #: includes/views/permalink-manager-settings.php:74
1266
+ msgid ""
1267
+ "This feature will be also used to redirect (old) original permalinks to (new)"
1268
+ " custom permalinks set with Permalink Manager."
1269
+ msgstr ""
1270
+ "この機能は、(古い)オリジナルのパーマリンクをPermalink Managerで設定された(新しい)カスタム "
1271
+ "パーマリンクにリダイレクトするために使用されます。"
1272
 
1273
+ #: includes/core/permalink-manager-admin-functions.php:1057
1274
+ #, php-format
1275
+ msgid ""
1276
+ "This functionality is available only in <a href=\"%s\" target=\"_blank\">"
1277
+ "Permalink Manager Pro</a>."
1278
+ msgstr "この機能は、Permalink Manager Proのみ利用可能です。"
1279
 
1280
+ #: includes/views/permalink-manager-settings.php:62
1281
+ msgid ""
1282
+ "This option can be used to alter the native settings and control if trailing "
1283
+ "slash should be added or removed from the end of posts & terms permalinks."
1284
+ msgstr ""
1285
+ "このオプションは、ネイティブの設定を変更し、末尾のスラッシュを投稿・タームのパーマリンクの末尾に、追加・削除するかを制御するために使用できます。"
1286
 
1287
+ #: includes/core/permalink-manager-admin-functions.php:663
1288
+ #: includes/core/permalink-manager-admin-functions.php:690
1289
+ msgid "Title"
1290
+ msgstr "タイトル"
1291
 
1292
+ #: includes/views/permalink-manager-pro-addons.php:249
1293
+ #, php-format
1294
+ msgid ""
1295
+ "To find the answers on frequently asked questions and information about how "
1296
+ "to deal with the most common issues please go to the <strong>Knowledge "
1297
+ "Base</strong> using <a target=\"_blank\" href=\"%s\">this link</a>."
1298
+ msgstr ""
1299
+ "よくある質問と一般的な問題に対する対処方法についての情報は、 <a target=\"_blank\" href=\"%s\">コチラ</a>"
1300
+ "の<strong>Knowledge Base</strong> をご利用下さい。(英語のみ)"
1301
 
1302
  #: includes/views/permalink-manager-tools.php:200
1303
  #: includes/views/permalink-manager-tools.php:277
1307
  msgstr ""
1308
  "上記のフィルターに絞りこむために、ここに投稿ID(または範囲)を入力してください。例:<strong>1-8, 10, 25</strong>."
1309
 
1310
+ #: includes/views/permalink-manager-pro-addons.php:251
1311
+ msgid ""
1312
+ "To reduce the response time, please attach your licence key and if possible "
1313
+ "also: URL address of your website and screenshots explaining the issue."
1314
+ msgstr ""
1315
+ "ご返答までの時間を短縮するため、ライセンスキーを添付し、可能であればWebサイトのURLと問題箇所のスクリーンショットもお送り下さい。(英語のみ)"
1316
 
1317
+ #: includes/views/permalink-manager-tools.php:15
1318
+ msgid "Tools"
1319
+ msgstr "ツール"
1320
 
1321
+ #: includes/views/permalink-manager-settings.php:59
1322
+ msgid "Trailing slashes"
1323
+ msgstr "末尾のスラッシュ"
1324
 
1325
+ #: includes/views/permalink-manager-settings.php:133
1326
+ msgid "Trailing slashes redirect"
1327
+ msgstr "末尾のスラッシュリダイレクト"
1328
 
1329
+ #: includes/core/permalink-manager-pro-functions.php:208
1330
+ msgid "Turkish"
1331
+ msgstr "トルコ語"
1332
 
1333
+ #: includes/views/permalink-manager-pro-addons.php:182
1334
+ msgid "Type comma to separate the words."
1335
+ msgstr "単語の区切りにカンマを入力下さい。"
1336
 
1337
+ #: includes/views/permalink-manager-settings.php:162
1338
+ msgid "Ultimate Member support"
1339
+ msgstr ""
1340
 
1341
+ #: includes/core/permalink-manager-admin-functions.php:286
1342
+ msgid "Unselect all"
1343
+ msgstr "選択を全て解除する"
1344
 
1345
+ #: includes/core/permalink-manager-admin-functions.php:596
1346
+ msgid "Upgrade to PRO"
1347
+ msgstr "Pro版にアップグレード"
1348
 
1349
+ #: includes/core/permalink-manager-actions.php:565
1350
+ #, php-format
1351
+ msgid "URI \"%s\" was removed successfully!"
1352
+ msgstr "「%s」のURIは、無事削除されました!"
1353
 
1354
+ #: includes/core/permalink-manager-actions.php:577
1355
+ msgid "URI and/or custom redirects does not exist or were already removed!"
1356
+ msgstr "URIもしくはカスタムリダイレクトは、実在しないか既に削除されています!"
1357
 
1358
+ #: includes/core/permalink-manager-admin-functions.php:156
1359
+ msgid "URI Editor"
1360
+ msgstr "URIエディター"
1361
 
1362
+ #: includes/views/permalink-manager-uri-editor.php:28
1363
+ msgid "URI editor"
1364
+ msgstr "URIエディター"
1365
 
1366
+ #: includes/views/permalink-manager-settings.php:205
1367
+ msgid "URI Editor role capability"
1368
+ msgstr "URIエディター 種類と権限"
1369
 
1370
+ #: includes/core/permalink-manager-actions.php:627
1371
+ msgid "URI is already in use, please select another one!"
1372
+ msgstr "URIは既に使用済みです。他をお選び下さい。"
1373
 
1374
+ #: includes/views/permalink-manager-settings.php:50
1375
+ msgid "Use actual titles as slugs"
1376
+ msgstr "スラッグとして実際のタイトルを使用する"
1377
 
1378
+ #: includes/views/permalink-manager-settings.php:61
1379
+ msgid "Use default settings"
1380
+ msgstr "デフォルトの設定を使用する"
1381
 
1382
+ #: includes/core/permalink-manager-admin-functions.php:812
1383
+ #, php-format
1384
+ msgid "Use global settings [%s]"
1385
+ msgstr "グローバル設定を使用する [%s]"
1386
 
1387
+ #: includes/views/permalink-manager-settings.php:50
1388
+ msgid "Use native slugs"
1389
+ msgstr "ネイティブ スラッグを使用する"
1390
 
1391
+ #: includes/views/permalink-manager-tools.php:228
1392
+ msgid "Use original URLs as custom permalinks"
1393
+ msgstr "カスタム パーマリンクをオリジナルのURLとして使用する"
1394
 
1395
+ #: includes/views/permalink-manager-settings.php:54
1396
+ msgid ""
1397
+ "Use this field if you would like Permalink Manager to use the actual titles "
1398
+ "instead of native slugs."
1399
+ msgstr "Permalink Managerで、ネイティブ スラッグの代わりに実際のタイトルを使用する場合は、このフィールドを使用します。"
1400
 
1401
+ #: includes/views/permalink-manager-uri-editor-post.php:121
1402
+ #: includes/views/permalink-manager-uri-editor-tax.php:101
1403
+ #: includes/views/permalink-manager-uri-editor-tax.php:101
1404
+ msgid "View"
1405
+ msgstr "見る"
1406
 
1407
+ #: includes/views/permalink-manager-permastructs.php:46
1408
+ msgid "WooCommerce"
1409
+ msgstr "WooCommerce"
1410
 
1411
+ #: includes/views/permalink-manager-settings.php:155
1412
+ msgid "WP All Import support"
1413
+ msgstr "WP All Import サポート"
1414
 
1415
+ #: includes/views/permalink-manager-settings.php:148
1416
+ msgid "WPML/Polylang language mismatch"
1417
+ msgstr "WPML / Polylang 言語 不一致"
1418
+
1419
+ #: includes/core/permalink-manager-admin-functions.php:810
1420
+ #: includes/core/permalink-manager-admin-functions.php:813
1421
+ msgid "Yes"
1422
+ msgstr "はい"
1423
+
1424
+ #: includes/views/permalink-manager-settings.php:193
1425
+ #: includes/views/permalink-manager-settings.php:200
1426
+ msgid "Yes, use native settings"
1427
+ msgstr "はい、ネイティブ 設定を使います。"
1428
+
1429
+ #: includes/core/permalink-manager-actions.php:391
1430
+ msgid "You are not allowed to remove Permalink Manager data!"
1431
+ msgstr "Permalink Manager データを削除できません!"
1432
+
1433
+ #: includes/views/permalink-manager-settings.php:108
1434
  msgid ""
1435
+ "You can disable this feature if you do not want Permalink Manager to trigger "
1436
+ "any additional redirect functions at all."
1437
+ msgstr "Permalink Managerに、追加のリダイレクト機能を一切トリガーさせないようにする場合は、この機能を無効にします。"
1438
 
1439
+ #: includes/views/permalink-manager-settings.php:119
1440
+ #, fuzzy
1441
+ #| msgid ""
1442
+ #| "You can disable this feature if you use another plugin for redirects, eg. "
1443
+ #| "Yoast SEO Premium or Redirection."
1444
+ msgid ""
1445
+ "You can disable this feature if you would like to use another plugin for "
1446
+ "redirects, eg. Yoast SEO Premium or Redirection."
1447
+ msgstr "Yoast SEO プレミアムやその他のリダイレクトプラグインを使用している場合は、この機能を無効にできます。"
1448
 
1449
+ #: includes/core/permalink-manager-pro-functions.php:141
1450
+ msgid "You own a lifetime licence key."
1451
+ msgstr "あなたは、永久ライセンスキーをお持ちです。"
1452
 
1453
+ #: includes/core/permalink-manager-pro-functions.php:146
1454
+ #, php-format
1455
+ msgid ""
1456
+ "Your licence key is valid until %s.<br />To prolong it please go to <a "
1457
+ "href=\"%s\" target=\"_blank\">this page</a> for more information."
1458
+ msgstr ""
1459
+ "あなたのライセンスキーは、%s まで有効です。<br />延長するには、<a href=\"%s\" target=\"_blank\">"
1460
+ "コチラのページ</a>にアクセスして詳細を確認して下さい。"
1461
+
1462
+ #: includes/core/permalink-manager-pro-functions.php:136
1463
+ #, php-format
1464
+ msgid ""
1465
+ "Your Permalink Manager Pro licence key expired! To restore access to plugin "
1466
+ "updates & technical support please go to <a href=\"%s\" target=\"_blank\">"
1467
+ "this page</a>."
1468
+ msgstr ""
1469
+ "あなたのライセンスキーは有効期限が切れました!プラグインのアップデートのアクセスやテクニカルサポートを受けたい場合は、<a href=\"%s\" "
1470
+ "target=\"_blank\">コチラのページ</a>にアクセスして、復元して下さい。"
1471
+
1472
+ #: includes/core/permalink-manager-pro-functions.php:131
1473
+ msgid "Your Permalink Manager Pro licence key is invalid!"
1474
+ msgstr "あなたのライセンスキーは、無効です!"
languages/permalink-manager.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: PACKAGE VERSION\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2020-11-23 20:44+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -14,522 +14,490 @@ msgstr ""
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/"
16
 
17
- #: permalink-manager.php:207
18
- #, php-format
19
  msgid ""
20
- "Get access to extra features: full taxonomy and WooCommerce support, "
21
- "possibility to use custom fields inside the permalinks and more!<br />"
22
- "<strong>Buy Permalink Manager Pro <a href=\"%s\" target=\"_blank\">here</a> "
23
- "and save %s using \"%s\" coupon code!</strong> Valid until %s!"
24
  msgstr ""
25
 
26
- #: includes/core/permalink-manager-third-parties.php:292
27
  msgid "\"Custom Permalinks\" URIs were imported!"
28
  msgstr ""
29
 
30
- #: includes/core/permalink-manager-third-parties.php:295
31
- msgid "No \"Custom Permalinks\" URIs were imported!"
32
  msgstr ""
33
 
34
- #: includes/core/permalink-manager-third-parties.php:681
35
- #: includes/core/permalink-manager-gutenberg.php:26
36
- #: includes/core/permalink-manager-admin-functions.php:111
37
- #: includes/core/permalink-manager-admin-functions.php:111
38
- #: includes/core/permalink-manager-admin-functions.php:737
39
- #: includes/core/permalink-manager-admin-functions.php:818
40
- #: includes/core/permalink-manager-admin-functions.php:823
41
- #: includes/core/permalink-manager-admin-functions.php:824
42
- msgid "Permalink Manager"
43
  msgstr ""
44
 
45
- #: includes/core/permalink-manager-third-parties.php:685
46
- #: includes/core/permalink-manager-uri-functions-tax.php:482
47
- #: includes/views/permalink-manager-tools.php:70
48
- msgid "Custom URI"
49
  msgstr ""
50
 
51
- #: includes/core/permalink-manager-third-parties.php:686
52
- #, php-format
53
- msgid ""
54
- "If empty, a default permalink based on your current <a href=\"%s\" "
55
- "target=\"_blank\">permastructure settings</a> will be used."
56
  msgstr ""
57
 
58
- #: includes/core/permalink-manager-uri-functions-tax.php:483
59
- msgid "Clear/leave the field empty to use the default permalink."
60
  msgstr ""
61
 
62
- #: includes/core/permalink-manager-uri-functions-tax.php:515
63
- #: includes/core/permalink-manager-admin-functions.php:741
64
- #: includes/core/permalink-manager-admin-functions.php:841
65
- #: includes/core/permalink-manager-uri-functions-post.php:687
66
- msgid "Current URI"
67
  msgstr ""
68
 
69
- #: includes/core/permalink-manager-admin-functions.php:135
70
- msgid "Are you sure? This action cannot be undone!"
71
  msgstr ""
72
 
73
- #: includes/core/permalink-manager-admin-functions.php:156
74
- msgid "URI Editor"
75
  msgstr ""
76
 
77
- #: includes/core/permalink-manager-admin-functions.php:157
78
- #: includes/views/permalink-manager-settings.php:14
79
- msgid "Settings"
80
  msgstr ""
81
 
82
- #: includes/core/permalink-manager-admin-functions.php:169
83
- msgid "Documentation"
 
 
 
 
84
  msgstr ""
85
 
86
- #: includes/core/permalink-manager-admin-functions.php:173
87
- msgid "Buy Permalink Manager Pro"
 
 
 
 
 
 
 
 
 
88
  msgstr ""
89
 
90
- #: includes/core/permalink-manager-admin-functions.php:280
91
- msgid "Select all"
 
 
92
  msgstr ""
93
 
94
- #: includes/core/permalink-manager-admin-functions.php:281
95
- msgid "Unselect all"
 
96
  msgstr ""
97
 
98
- #: includes/core/permalink-manager-admin-functions.php:396
99
- msgid "Permastructure translations"
 
 
100
  msgstr ""
101
 
102
- #: includes/core/permalink-manager-admin-functions.php:397
103
  msgid ""
104
- "If you would like to translate the permastructures and set-up different "
105
- "permalink structure per language, please fill in the fields below. Otherwise "
106
- "the permastructure set for default language (see field above) will be "
107
- "applied."
108
  msgstr ""
109
 
110
- #: includes/core/permalink-manager-admin-functions.php:414
111
- msgid "Default permastructure"
 
 
112
  msgstr ""
113
 
114
- #: includes/core/permalink-manager-admin-functions.php:415
115
- msgid "Restore default permastructure"
 
 
116
  msgstr ""
117
 
118
- #: includes/core/permalink-manager-admin-functions.php:421
119
- #: includes/core/permalink-manager-actions.php:409
120
- #: includes/core/permalink-manager-actions.php:413
121
- msgid "Permastructure settings"
122
  msgstr ""
123
 
124
- #: includes/core/permalink-manager-admin-functions.php:422
125
- msgid "Do not automatically append the slug"
 
 
126
  msgstr ""
127
 
128
- #: includes/core/permalink-manager-admin-functions.php:430
129
- msgid "Show additional settings"
 
 
 
130
  msgstr ""
131
 
132
- #: includes/core/permalink-manager-admin-functions.php:577
133
- msgid "Donate"
 
 
134
  msgstr ""
135
 
136
- #: includes/core/permalink-manager-admin-functions.php:578
137
- msgid "by Maciej Bis"
 
 
138
  msgstr ""
139
 
140
- #: includes/core/permalink-manager-admin-functions.php:590
141
- msgid "Upgrade to PRO"
142
  msgstr ""
143
 
144
- #: includes/core/permalink-manager-admin-functions.php:657
145
- #: includes/core/permalink-manager-admin-functions.php:684
146
- msgid "Title"
147
  msgstr ""
148
 
149
- #: includes/core/permalink-manager-admin-functions.php:659
150
- #: includes/core/permalink-manager-admin-functions.php:686
151
- msgid "Old Slug"
152
  msgstr ""
153
 
154
- #: includes/core/permalink-manager-admin-functions.php:660
155
- #: includes/core/permalink-manager-admin-functions.php:687
156
- msgid "New Slug"
157
  msgstr ""
158
 
159
- #: includes/core/permalink-manager-admin-functions.php:662
160
- #: includes/core/permalink-manager-admin-functions.php:689
161
- msgid "Old URI"
 
162
  msgstr ""
163
 
164
- #: includes/core/permalink-manager-admin-functions.php:663
165
- #: includes/core/permalink-manager-admin-functions.php:690
166
- msgid "New URI"
167
  msgstr ""
168
 
169
- #: includes/core/permalink-manager-admin-functions.php:684
170
- msgid "Show more details"
 
 
 
 
171
  msgstr ""
172
 
173
- #: includes/core/permalink-manager-admin-functions.php:697
174
- msgid "List of updated items"
175
  msgstr ""
176
 
177
- #: includes/core/permalink-manager-admin-functions.php:710
178
- #, php-format
179
- msgid "<strong class=\"updated_count\">%d</strong> slug was updated!"
180
- msgid_plural "<strong class=\"updated_count\">%d</strong> slugs were updated!"
181
- msgstr[0] ""
182
- msgstr[1] ""
183
 
184
- #: includes/core/permalink-manager-admin-functions.php:711
185
- #, php-format
186
- msgid "<a %s>Click here</a> to go to the list of updated slugs"
187
  msgstr ""
188
 
189
- #: includes/core/permalink-manager-admin-functions.php:715
190
- #: includes/core/permalink-manager-actions.php:115
191
- msgid "<strong>No slugs</strong> were updated!"
192
  msgstr ""
193
 
194
- #: includes/core/permalink-manager-admin-functions.php:804
195
- #: includes/core/permalink-manager-admin-functions.php:807
196
- msgid "Yes"
197
  msgstr ""
198
 
199
- #: includes/core/permalink-manager-admin-functions.php:804
200
- #: includes/core/permalink-manager-admin-functions.php:808
201
- msgid "No"
202
  msgstr ""
203
 
204
- #: includes/core/permalink-manager-admin-functions.php:806
205
- #, php-format
206
- msgid "Use global settings [%s]"
207
  msgstr ""
208
 
209
- #: includes/core/permalink-manager-admin-functions.php:809
210
- msgid "No (ignore this URI in bulk tools)"
211
  msgstr ""
212
 
213
- #: includes/core/permalink-manager-admin-functions.php:823
214
- msgid "Close: "
215
  msgstr ""
216
 
217
- #: includes/core/permalink-manager-admin-functions.php:835
218
- msgid "The custom URI cannot be edited on frontpage."
219
  msgstr ""
220
 
221
- #: includes/core/permalink-manager-admin-functions.php:842
222
- msgid ""
223
- "If custom URI is not defined, a default URI will be set (see below). The "
224
- "custom URI can be edited only if 'Auto-update the URI' feature is not "
225
- "enabled."
226
  msgstr ""
227
 
228
- #: includes/core/permalink-manager-admin-functions.php:851
229
- msgid "Native slug"
230
  msgstr ""
231
 
232
- #: includes/core/permalink-manager-admin-functions.php:852
233
- msgid ""
234
- "The native slug is by default automatically used in native permalinks (when "
235
- "Permalink Manager is disabled)."
236
  msgstr ""
237
 
238
- #: includes/core/permalink-manager-admin-functions.php:862
239
- msgid "Auto-update the URI"
240
  msgstr ""
241
 
242
- #: includes/core/permalink-manager-admin-functions.php:863
243
- msgid ""
244
- "If enabled, the 'Current URI' field will be automatically changed to "
245
- "'Default URI' (displayed below) after the post is saved or updated."
246
  msgstr ""
247
 
248
- #: includes/core/permalink-manager-admin-functions.php:871
249
- msgid "Default URI"
250
  msgstr ""
251
 
252
- #: includes/core/permalink-manager-admin-functions.php:872
253
- msgid "Restore Default URI"
254
  msgstr ""
255
 
256
- #: includes/core/permalink-manager-admin-functions.php:882
257
- msgid "Automatic redirect for native URI enabled:"
258
  msgstr ""
259
 
260
- #: includes/core/permalink-manager-admin-functions.php:893
261
- #, php-format
262
- msgid ""
263
- "<span><strong>Need more functionalities and dedicated support?</strong> Buy "
264
- "Permalink Manager Pro and apply <a href=\"https://permalinkmanager.pro/buy-"
265
- "permalink-manager-pro/\">PMLITE coupon code</a> to get 10% off.</a></span>"
266
  msgstr ""
267
 
268
- #: includes/core/permalink-manager-admin-functions.php:904
269
- msgid "Save permalink"
270
  msgstr ""
271
 
272
- #: includes/core/permalink-manager-admin-functions.php:931
273
- msgid "Manage redirects"
274
  msgstr ""
275
 
276
- #: includes/core/permalink-manager-admin-functions.php:1049
277
- #, php-format
278
- msgid ""
279
- "This functionality is available only in <a href=\"%s\" target=\"_blank\">"
280
- "Permalink Manager Pro</a>."
281
  msgstr ""
282
 
283
- #: includes/core/permalink-manager-pro-functions.php:126
284
- #, php-format
285
- msgid ""
286
- "Please paste the licence key to access all Permalink Manager Pro updates & "
287
- "features <a href=\"%s\" target=\"_blank\">on this page</a>."
288
  msgstr ""
289
 
290
- #: includes/core/permalink-manager-pro-functions.php:131
291
- msgid "Your Permalink Manager Pro licence key is invalid!"
292
  msgstr ""
293
 
294
- #: includes/core/permalink-manager-pro-functions.php:136
295
- #, php-format
296
- msgid ""
297
- "Your Permalink Manager Pro licence key expired! To restore access to plugin "
298
- "updates & technical support please go to <a href=\"%s\" target=\"_blank\">"
299
- "this page</a>."
300
  msgstr ""
301
 
302
- #: includes/core/permalink-manager-pro-functions.php:141
303
- msgid "You own a lifetime licence key."
304
  msgstr ""
305
 
306
- #: includes/core/permalink-manager-pro-functions.php:146
307
- #, php-format
308
- msgid ""
309
- "Your licence key is valid until %s.<br />To prolong it please go to <a "
310
- "href=\"%s\" target=\"_blank\">this page</a> for more information."
311
- msgstr ""
312
-
313
- #: includes/core/permalink-manager-pro-functions.php:151
314
- msgid ""
315
- "Expiration date could not be downloaded at this moment. Please try again in "
316
- "a few minutes."
317
  msgstr ""
318
 
319
- #: includes/core/permalink-manager-pro-functions.php:184
320
- msgid "Arabic"
321
  msgstr ""
322
 
323
- #: includes/core/permalink-manager-pro-functions.php:185
324
- msgid "Chinese"
325
  msgstr ""
326
 
327
- #: includes/core/permalink-manager-pro-functions.php:186
328
- msgid "Danish"
329
  msgstr ""
330
 
331
- #: includes/core/permalink-manager-pro-functions.php:187
332
- msgid "Dutch"
333
  msgstr ""
334
 
335
- #: includes/core/permalink-manager-pro-functions.php:188
336
- msgid "English"
337
  msgstr ""
338
 
339
- #: includes/core/permalink-manager-pro-functions.php:189
340
- msgid "Finnish"
 
 
 
341
  msgstr ""
342
 
343
- #: includes/core/permalink-manager-pro-functions.php:190
344
- msgid "French"
 
345
  msgstr ""
346
 
347
- #: includes/core/permalink-manager-pro-functions.php:191
348
- msgid "German"
349
  msgstr ""
350
 
351
- #: includes/core/permalink-manager-pro-functions.php:192
352
- msgid "Hebrew"
353
  msgstr ""
354
 
355
- #: includes/core/permalink-manager-pro-functions.php:193
356
- msgid "Hindi"
 
 
357
  msgstr ""
358
 
359
- #: includes/core/permalink-manager-pro-functions.php:194
360
- msgid "Italian"
361
  msgstr ""
362
 
363
- #: includes/core/permalink-manager-pro-functions.php:195
364
- msgid "Japanese"
365
  msgstr ""
366
 
367
- #: includes/core/permalink-manager-pro-functions.php:196
368
- msgid "Korean"
369
  msgstr ""
370
 
371
- #: includes/core/permalink-manager-pro-functions.php:197
372
- msgid "Norwegian"
373
  msgstr ""
374
 
375
- #: includes/core/permalink-manager-pro-functions.php:198
376
- msgid "Persian"
377
  msgstr ""
378
 
379
- #: includes/core/permalink-manager-pro-functions.php:199
380
- msgid "Polish"
381
  msgstr ""
382
 
383
- #: includes/core/permalink-manager-pro-functions.php:200
384
- msgid "Portuguese"
385
  msgstr ""
386
 
387
- #: includes/core/permalink-manager-pro-functions.php:201
388
- msgid "Russian"
389
  msgstr ""
390
 
391
- #: includes/core/permalink-manager-pro-functions.php:202
392
- msgid "Spanish"
393
  msgstr ""
394
 
395
- #: includes/core/permalink-manager-pro-functions.php:203
396
- msgid "Swedish"
397
  msgstr ""
398
 
399
- #: includes/core/permalink-manager-pro-functions.php:204
400
- msgid "Turkish"
401
  msgstr ""
402
 
403
- #: includes/core/permalink-manager-pro-functions.php:486
404
- msgid "Coupon Link"
405
  msgstr ""
406
 
407
- #: includes/core/permalink-manager-pro-functions.php:507
408
- msgid "Coupon URI"
409
  msgstr ""
410
 
411
- #: includes/core/permalink-manager-pro-functions.php:508
412
  msgid ""
413
- "The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
414
- "blackfriday</strong> are equivalent."
415
- msgstr ""
416
-
417
- #: includes/core/permalink-manager-pro-functions.php:519
418
- msgid "Coupon Full URL"
419
  msgstr ""
420
 
421
- #: includes/core/permalink-manager-actions.php:105
422
- msgid "The settings are saved!"
 
 
423
  msgstr ""
424
 
425
- #: includes/core/permalink-manager-actions.php:377
426
- #, php-format
427
- msgid "%d Custom URIs and %d Custom Redirects were removed!"
428
  msgstr ""
429
 
430
- #: includes/core/permalink-manager-actions.php:379
431
- msgid "No Custom URIs or Custom Redirects were removed!"
432
  msgstr ""
433
 
434
- #: includes/core/permalink-manager-actions.php:391
435
- msgid "You are not allowed to remove Permalink Manager data!"
436
  msgstr ""
437
 
438
- #: includes/core/permalink-manager-actions.php:397
439
- msgid "Custom permalinks"
440
  msgstr ""
441
 
442
- #: includes/core/permalink-manager-actions.php:401
443
- msgid "Custom redirects"
 
 
444
  msgstr ""
445
 
446
- #: includes/core/permalink-manager-actions.php:405
447
- msgid "External redirects"
448
  msgstr ""
449
 
450
- #: includes/core/permalink-manager-actions.php:424
451
- #, php-format
452
- msgid "%s were removed!"
453
  msgstr ""
454
 
455
- #: includes/core/permalink-manager-actions.php:565
456
- #, php-format
457
- msgid "URI \"%s\" was removed successfully!"
458
  msgstr ""
459
 
460
- #: includes/core/permalink-manager-actions.php:573
461
- msgid "Broken redirects were removed successfully!"
462
  msgstr ""
463
 
464
- #: includes/core/permalink-manager-actions.php:577
465
- msgid "URI and/or custom redirects does not exist or were already removed!"
 
 
466
  msgstr ""
467
 
468
- #: includes/core/permalink-manager-actions.php:597
469
- msgid "The redirect was removed successfully!"
470
  msgstr ""
471
 
472
- #: includes/core/permalink-manager-actions.php:627
473
- msgid "URI is already in use, please select another one!"
474
  msgstr ""
475
 
476
- #: includes/core/permalink-manager-actions.php:659
477
- msgid "Sitemaps were updated!"
478
  msgstr ""
479
 
480
- #: includes/views/permalink-manager-permastructs.php:15
481
- msgid "Permastructures"
482
  msgstr ""
483
 
484
- #: includes/views/permalink-manager-permastructs.php:31
485
- #: includes/views/permalink-manager-tools.php:162
486
- #: includes/views/permalink-manager-tools.php:239
487
- msgid "Post types"
488
  msgstr ""
489
 
490
- #: includes/views/permalink-manager-permastructs.php:36
491
- #: includes/views/permalink-manager-tools.php:163
492
- #: includes/views/permalink-manager-tools.php:240
493
- msgid "Taxonomies"
494
  msgstr ""
495
 
496
- #: includes/views/permalink-manager-permastructs.php:46
497
- msgid "WooCommerce"
498
  msgstr ""
499
 
500
- #: includes/views/permalink-manager-permastructs.php:75
501
- #: includes/views/permalink-manager-pro-addons.php:190
502
- #: includes/views/permalink-manager-pro-addons.php:223
503
- msgid "Instructions"
504
  msgstr ""
505
 
506
- #: includes/views/permalink-manager-permastructs.php:76
507
- #, php-format
508
- msgid ""
509
- "The current permastructures settings will be applied <strong>only to the new "
510
- "posts & terms</strong>. To apply the <strong>new permastructures to existing "
511
- "posts and terms</strong>, please regenerate the custom permalinks <a "
512
- "href=\"%s\">here</a>."
513
  msgstr ""
514
 
515
- #: includes/views/permalink-manager-permastructs.php:78
516
- msgid "Permastructure tags"
517
  msgstr ""
518
 
519
- #: includes/views/permalink-manager-permastructs.php:79
520
- #, php-format
521
- msgid ""
522
- "All allowed <a href=\"%s\" target=\"_blank\">permastructure tags</a> are "
523
- "listed below. Please note that some of them can be used only for particular "
524
- "post types or taxonomies."
525
  msgstr ""
526
 
527
- #: includes/views/permalink-manager-permastructs.php:82
528
- msgid "Save permastructures"
529
  msgstr ""
530
 
531
- #: includes/views/permalink-manager-uri-editor-post.php:55
532
- msgid "Post title"
533
  msgstr ""
534
 
535
  #: includes/views/permalink-manager-uri-editor-post.php:56
@@ -537,117 +505,141 @@ msgstr ""
537
  msgid "Full URI & Permalink"
538
  msgstr ""
539
 
540
- #: includes/views/permalink-manager-uri-editor-post.php:89
541
- msgid "Inherit (Attachment)"
542
  msgstr ""
543
 
544
- #: includes/views/permalink-manager-uri-editor-post.php:106
545
- #: includes/views/permalink-manager-uri-editor-tax.php:95
546
- msgid "Slug"
547
  msgstr ""
548
 
549
- #: includes/views/permalink-manager-uri-editor-post.php:107
550
- msgid "Post status"
 
 
 
 
 
551
  msgstr ""
552
 
553
- #: includes/views/permalink-manager-uri-editor-post.php:112
554
- #: includes/views/permalink-manager-uri-editor-tax.php:100
555
- #: includes/views/permalink-manager-uri-editor-tax.php:100
556
- msgid "Edit"
557
  msgstr ""
558
 
559
- #: includes/views/permalink-manager-uri-editor-post.php:113
560
- #: includes/views/permalink-manager-uri-editor-tax.php:101
561
- #: includes/views/permalink-manager-uri-editor-tax.php:101
562
- msgid "View"
563
  msgstr ""
564
 
565
- #: includes/views/permalink-manager-uri-editor-post.php:141
566
- #: includes/views/permalink-manager-uri-editor-tax.php:138
567
- msgid "Save all the URIs below"
568
  msgstr ""
569
 
570
- #: includes/views/permalink-manager-uri-editor-post.php:142
571
- #: includes/views/permalink-manager-uri-editor-tax.php:139
572
- msgid "Save all the URIs above"
573
  msgstr ""
574
 
575
- #: includes/views/permalink-manager-uri-editor-post.php:150
576
- #: includes/views/permalink-manager-uri-editor-tax.php:147
577
- msgid "Search"
578
  msgstr ""
579
 
580
- #: includes/views/permalink-manager-uri-editor-post.php:166
581
- msgid "All dates"
 
 
 
582
  msgstr ""
583
 
584
- #: includes/views/permalink-manager-uri-editor-post.php:175
585
- msgid "Filter"
 
 
586
  msgstr ""
587
 
588
- #: includes/views/permalink-manager-pro-addons.php:101
589
- msgid "Support"
 
 
 
590
  msgstr ""
591
 
592
- #: includes/views/permalink-manager-pro-addons.php:128
593
- msgid "Licence"
594
- msgstr ""
595
-
596
- #: includes/views/permalink-manager-pro-addons.php:134
597
- msgid "Licence key"
598
  msgstr ""
599
 
600
- #: includes/views/permalink-manager-pro-addons.php:135
601
- msgid "Check the expiration date."
 
 
602
  msgstr ""
603
 
604
- #: includes/views/permalink-manager-pro-addons.php:159
605
- msgid "-- Use predefined words list --"
 
 
606
  msgstr ""
607
 
608
- #: includes/views/permalink-manager-pro-addons.php:162
609
- msgid "Remove all words"
 
 
 
610
  msgstr ""
611
 
612
- #: includes/views/permalink-manager-pro-addons.php:164
613
- msgid "Add the words from the list"
 
 
614
  msgstr ""
615
 
616
- #: includes/views/permalink-manager-pro-addons.php:172
617
- msgid "Enable \"stop words\""
 
 
618
  msgstr ""
619
 
620
- #: includes/views/permalink-manager-pro-addons.php:178
621
- msgid "\"Stop words\" list"
 
 
622
  msgstr ""
623
 
624
- #: includes/views/permalink-manager-pro-addons.php:182
625
- msgid "Type comma to separate the words."
626
  msgstr ""
627
 
628
- #: includes/views/permalink-manager-pro-addons.php:191
629
  msgid ""
630
- "If enabled, all selected \"stop words\" will be automatically removed from "
631
- "default URIs."
 
632
  msgstr ""
633
 
634
- #: includes/views/permalink-manager-pro-addons.php:192
635
  msgid ""
636
- "Each of the words can be removed and any new words can be added to the list. "
637
- "You can also use a predefined list (available in 21 languages)."
 
638
  msgstr ""
639
 
640
- #: includes/views/permalink-manager-pro-addons.php:194
641
- msgid "Save"
 
 
 
642
  msgstr ""
643
 
644
- #: includes/views/permalink-manager-pro-addons.php:214
645
- #: includes/views/permalink-manager-tools.php:34
646
- msgid "Custom Permalinks"
 
647
  msgstr ""
648
 
649
- #: includes/views/permalink-manager-pro-addons.php:215
650
- msgid "Deactivate after import"
 
 
651
  msgstr ""
652
 
653
  #: includes/views/permalink-manager-pro-addons.php:218
@@ -656,16 +648,25 @@ msgid ""
656
  "custom URIs are imported."
657
  msgstr ""
658
 
659
- #: includes/views/permalink-manager-pro-addons.php:224
660
  msgid ""
661
- "Please note that \"Custom Permalinks\" (if activated) may break the behavior "
662
- "of this plugin."
 
663
  msgstr ""
664
 
665
- #: includes/views/permalink-manager-pro-addons.php:225
666
  msgid ""
667
- "Therefore, it is recommended to disable \"Custom Permalink\" and import old "
668
- "permalinks before using Permalink Manager Pro."
 
 
 
 
 
 
 
 
669
  msgstr ""
670
 
671
  #: includes/views/permalink-manager-pro-addons.php:230
@@ -673,593 +674,561 @@ msgstr ""
673
  msgid "Import %d URIs"
674
  msgstr ""
675
 
676
- #: includes/views/permalink-manager-pro-addons.php:235
677
- msgid "No custom URIs to import"
678
- msgstr ""
679
-
680
- #: includes/views/permalink-manager-pro-addons.php:248
681
- msgid "Technical support"
682
  msgstr ""
683
 
684
- #: includes/views/permalink-manager-pro-addons.php:249
685
- #, php-format
686
- msgid ""
687
- "To find the answers on frequently asked questions and information about how "
688
- "to deal with the most common issues please go to the <strong>Knowledge "
689
- "Base</strong> using <a target=\"_blank\" href=\"%s\">this link</a>."
690
  msgstr ""
691
 
692
- #: includes/views/permalink-manager-pro-addons.php:250
693
- msgid ""
694
- "If you still did not find the answer to your question, please send us your "
695
- "question or a detailed description of your problem/issue to <a href=\"mailto:"
696
- "support@permalinkmanager.pro\">support@permalinkmanager.pro</a>."
697
  msgstr ""
698
 
699
- #: includes/views/permalink-manager-pro-addons.php:251
700
- msgid ""
701
- "To reduce the response time, please attach your licence key and if possible "
702
- "also: URL address of your website and screenshots explaining the issue."
703
  msgstr ""
704
 
705
- #: includes/views/permalink-manager-pro-addons.php:253
706
- msgid "Suggestions/feedback"
707
  msgstr ""
708
 
709
- #: includes/views/permalink-manager-pro-addons.php:254
710
- msgid ""
711
- "If you would like to suggest a new functionality or leave us feedback, we "
712
- "are open to all new ideas and would be grateful for all your comments!"
713
  msgstr ""
714
 
715
- #: includes/views/permalink-manager-pro-addons.php:255
716
- msgid ""
717
- " Please send your remarks to <a href=\"mailto:contact@permalinkmanager.pro\">"
718
- "contact@permalinkmanager.pro</a>."
719
  msgstr ""
720
 
721
- #: includes/views/permalink-manager-pro-addons.php:270
722
- msgid "Extra redirects (aliases)"
723
  msgstr ""
724
 
725
- #: includes/views/permalink-manager-pro-addons.php:271
726
- msgid ""
727
- "All URIs specified below will redirect the visitors to the custom URI "
728
- "defined above in \"Current URI\" field."
729
  msgstr ""
730
 
731
- #: includes/views/permalink-manager-pro-addons.php:277
732
- msgid "sample/custom-uri"
733
  msgstr ""
734
 
735
- #: includes/views/permalink-manager-pro-addons.php:294
736
- msgid "Add new redirect"
737
  msgstr ""
738
 
739
- #: includes/views/permalink-manager-pro-addons.php:299
740
- #, php-format
741
- msgid ""
742
- "<strong>Please use URIs only!</strong><br />For instance, to set-up a "
743
- "redirect for <code>%s/old-uri</code> please use <code>old-uri</code>."
744
  msgstr ""
745
 
746
- #: includes/views/permalink-manager-pro-addons.php:308
747
- msgid "Redirect this page to external URL"
748
  msgstr ""
749
 
750
- #: includes/views/permalink-manager-pro-addons.php:309
751
- msgid ""
752
- "If not empty, the visitors trying to access this page will be redirected to "
753
- "the URL specified below."
754
  msgstr ""
755
 
756
- #: includes/views/permalink-manager-pro-addons.php:313
757
- msgid "http://another-website.com/final-target-url"
758
  msgstr ""
759
 
760
- #: includes/views/permalink-manager-pro-addons.php:317
761
- msgid ""
762
- "<strong>Please use full URLs!</strong><br />For instance, <code>http:"
763
- "//another-website.com/final-target-url</code>."
764
  msgstr ""
765
 
766
- #: includes/views/permalink-manager-uri-editor.php:28
767
- msgid "URI editor"
768
  msgstr ""
769
 
770
- #: includes/views/permalink-manager-uri-editor.php:83
771
- msgid "Apply"
772
  msgstr ""
773
 
774
- #: includes/views/permalink-manager-uri-editor.php:89
775
- msgid "Per page"
 
776
  msgstr ""
777
 
778
- #: includes/views/permalink-manager-uri-editor.php:94
779
- msgid "Post statuses"
780
  msgstr ""
781
 
782
- #: includes/views/permalink-manager-uri-editor-tax.php:51
783
- msgid "Term title"
784
  msgstr ""
785
 
786
- #: includes/views/permalink-manager-uri-editor-tax.php:53
787
- msgid "Count"
 
788
  msgstr ""
789
 
790
- #: includes/views/permalink-manager-settings.php:33
791
- msgid "General settings"
 
792
  msgstr ""
793
 
794
- #: includes/views/permalink-manager-settings.php:39
795
- msgid "Auto-update permalinks"
 
796
  msgstr ""
797
 
798
- #: includes/views/permalink-manager-settings.php:42
799
- msgid ""
800
- "<strong>Permalink Manager can automatically update the custom permalink "
801
- "after post or term is saved/updated.</strong>"
802
  msgstr ""
803
 
804
- #: includes/views/permalink-manager-settings.php:43
805
- msgid ""
806
- "If enabled, Permalink Manager will always force the default custom permalink "
807
- "format (based on current <strong>Permastructure</strong> settings)."
808
  msgstr ""
809
 
810
- #: includes/views/permalink-manager-settings.php:48
811
- msgid "Slugs mode"
812
  msgstr ""
813
 
814
- #: includes/views/permalink-manager-settings.php:50
815
- msgid "Use native slugs"
816
  msgstr ""
817
 
818
- #: includes/views/permalink-manager-settings.php:50
819
- msgid "Use actual titles as slugs"
820
  msgstr ""
821
 
822
- #: includes/views/permalink-manager-settings.php:50
823
- msgid "Inherit parents' slugs"
824
  msgstr ""
825
 
826
- #: includes/views/permalink-manager-settings.php:52
827
- msgid ""
828
- "<strong>Permalink Manager can use either native slugs or actual titles for "
829
- "custom permalinks.</strong>"
830
  msgstr ""
831
 
832
- #: includes/views/permalink-manager-settings.php:53
833
- msgid ""
834
- "The native slug is generated from the initial title after the post or term "
835
- "is published."
836
  msgstr ""
837
 
838
- #: includes/views/permalink-manager-settings.php:54
839
- msgid ""
840
- "Use this field if you would like Permalink Manager to use the actual titles "
841
- "instead of native slugs."
842
  msgstr ""
843
 
844
- #: includes/views/permalink-manager-settings.php:59
845
- msgid "Trailing slashes"
 
846
  msgstr ""
847
 
848
- #: includes/views/permalink-manager-settings.php:61
849
- msgid "Use default settings"
 
 
 
 
850
  msgstr ""
851
 
852
- #: includes/views/permalink-manager-settings.php:61
853
- msgid "Add trailing slashes"
854
  msgstr ""
855
 
856
- #: includes/views/permalink-manager-settings.php:61
857
- msgid "Remove trailing slashes"
858
  msgstr ""
859
 
860
- #: includes/views/permalink-manager-settings.php:62
861
- msgid ""
862
- "This option can be used to alter the native settings and control if trailing "
863
- "slash should be added or removed from the end of posts & terms permalinks."
 
 
 
 
 
864
  msgstr ""
865
 
866
- #: includes/views/permalink-manager-settings.php:64
867
- msgid ""
868
- "<strong>You can use this feature to either add or remove the slases from end "
869
- "of WordPress permalinks.</strong>"
870
  msgstr ""
871
 
872
- #: includes/views/permalink-manager-settings.php:65
873
  msgid ""
874
- "Please use \"<a href=\"#sslwww_redirect\">Trailing slashes redirect</a>\" "
875
- "field if you would like to force the settings with redirect."
876
  msgstr ""
877
 
878
- #: includes/views/permalink-manager-settings.php:70
879
- msgid "Canonical redirect"
 
 
880
  msgstr ""
881
 
882
- #: includes/views/permalink-manager-settings.php:73
883
- msgid ""
884
- "<strong>Canonical redirect allows WordPress to \"correct\" the requested URL "
885
- "and redirect visitor to the canonical permalink.</strong>"
886
  msgstr ""
887
 
888
- #: includes/views/permalink-manager-settings.php:74
889
- msgid ""
890
- "This feature will be also used to redirect (old) original permalinks to (new)"
891
- " custom permalinks set with Permalink Manager."
892
  msgstr ""
893
 
894
- #: includes/views/permalink-manager-settings.php:87
895
- msgid "Old slug redirect"
896
  msgstr ""
897
 
898
- #: includes/views/permalink-manager-settings.php:90
899
- msgid ""
900
- "<strong>Old slug redirect is used by WordPress to provide a fallback for old "
901
- "version of slugs after they are changed.</strong>"
902
  msgstr ""
903
 
904
- #: includes/views/permalink-manager-settings.php:91
905
- msgid ""
906
- "If enabled, the visitors trying to access the URL with the old slug will be "
907
- "redirected to the canonical permalink."
908
  msgstr ""
909
 
910
- #: includes/views/permalink-manager-settings.php:97
911
- msgid "Enhanced redirect"
 
 
912
  msgstr ""
913
 
914
- #: includes/views/permalink-manager-settings.php:103
915
- msgid "Redirect mode"
 
 
 
916
  msgstr ""
917
 
918
- #: includes/views/permalink-manager-settings.php:105
919
- msgid "Disable (Permalink Manager redirect functions)"
 
 
920
  msgstr ""
921
 
922
- #: includes/views/permalink-manager-settings.php:105
923
- msgid "301 redirect"
924
  msgstr ""
925
 
926
- #: includes/views/permalink-manager-settings.php:105
927
- msgid "302 redirect"
928
  msgstr ""
929
 
930
- #: includes/views/permalink-manager-settings.php:107
931
- msgid ""
932
- "<strong>Permalink Manager includes a set of hooks that allow to extend the "
933
- "redirect functions used natively by WordPress to avoid 404 errors.</strong>"
934
  msgstr ""
935
 
936
- #: includes/views/permalink-manager-settings.php:108
937
- msgid ""
938
- "You can disable this feature if you do not want Permalink Manager to trigger "
939
- "any additional redirect functions at all."
940
  msgstr ""
941
 
942
- #: includes/views/permalink-manager-settings.php:113
943
- msgid "Old custom permalinks redirect"
944
  msgstr ""
945
 
946
- #: includes/views/permalink-manager-settings.php:118
947
- msgid ""
948
- "<strong>Permalink Manager can automatically set-up extra redirects after the "
949
- "custom permalink is changed.</strong>"
 
950
  msgstr ""
951
 
952
- #: includes/views/permalink-manager-settings.php:119
953
- msgid ""
954
- "If enabled, Permalink Manage will add redirect for earlier version of custom "
955
- "permalink after you change it (eg. with URI Editor or Regenerate/reset tool)."
956
  msgstr ""
957
 
958
- #: includes/views/permalink-manager-settings.php:120
959
- msgid ""
960
- "You can disable this feature if you use another plugin for redirects, eg. "
961
- "Yoast SEO Premium or Redirection."
962
  msgstr ""
963
 
964
- #: includes/views/permalink-manager-settings.php:125
965
- msgid "Force HTTPS/WWW"
966
  msgstr ""
967
 
968
- #: includes/views/permalink-manager-settings.php:128
969
- msgid ""
970
- "<strong>You can use Permalink Manager to force SSL or \"www\" prefix in "
971
- "WordPress permalinks.</strong>"
972
  msgstr ""
973
 
974
- #: includes/views/permalink-manager-settings.php:129
975
- msgid "Please disable it if you encounter any redirect loop issues."
976
  msgstr ""
977
 
978
- #: includes/views/permalink-manager-settings.php:134
979
- msgid "Trailing slashes redirect"
980
  msgstr ""
981
 
982
- #: includes/views/permalink-manager-settings.php:137
983
- msgid ""
984
- "<strong>Permalink Manager can force the trailing slashes settings in the "
985
- "custom permalinks with redirect.</strong>"
986
  msgstr ""
987
 
988
- #: includes/views/permalink-manager-settings.php:143
989
- msgid "Third party plugins"
990
  msgstr ""
991
 
992
- #: includes/views/permalink-manager-settings.php:149
993
- msgid "WPML/Polylang language mismatch"
994
  msgstr ""
995
 
996
- #: includes/views/permalink-manager-settings.php:152
997
- msgid ""
998
- "If enabled, the plugin will load the adjacent translation of post when the "
999
- "custom permalink is detected, but the language code in the URL does not "
1000
- "match the language code assigned to the post/term."
1001
  msgstr ""
1002
 
1003
- #: includes/views/permalink-manager-settings.php:156
1004
- msgid "WP All Import support"
1005
  msgstr ""
1006
 
1007
- #: includes/views/permalink-manager-settings.php:159
1008
- msgid ""
1009
- "If enabled, the custom permalinks will not be saved for the posts imported "
1010
- "with WP All Import plugin."
1011
  msgstr ""
1012
 
1013
- #: includes/views/permalink-manager-settings.php:163
1014
- msgid "Ultimate Member support"
 
1015
  msgstr ""
1016
 
1017
- #: includes/views/permalink-manager-settings.php:166
1018
- msgid ""
1019
- "If enabled, Permalink Manager will detect the additional Ultimate Member "
1020
- "pages (eg. \"account\" sections)."
1021
  msgstr ""
1022
 
1023
- #: includes/views/permalink-manager-settings.php:170
1024
- msgid "Breadcrumbs support"
1025
  msgstr ""
1026
 
1027
- #: includes/views/permalink-manager-settings.php:172
1028
- msgid ""
1029
- "If enabled, the HTML breadcrumbs will be filtered by Permalink Manager to "
1030
- "mimic the current URL structure.<br />Works with: <strong>WooCommerce, Yoast "
1031
- "SEO, RankMath and SEOPress</strong> breadcrumbs."
1032
  msgstr ""
1033
 
1034
- #: includes/views/permalink-manager-settings.php:176
1035
- msgid "Excluded content types"
1036
  msgstr ""
1037
 
1038
- #: includes/views/permalink-manager-settings.php:178
1039
- msgid ""
1040
- "Permalink Manager will ignore and not filter the custom permalinks of all "
1041
- "selected above post types & taxonomies."
1042
  msgstr ""
1043
 
1044
- #: includes/views/permalink-manager-settings.php:183
1045
- msgid "Advanced settings"
1046
  msgstr ""
1047
 
1048
- #: includes/views/permalink-manager-settings.php:189
1049
- msgid "Show \"Native slug\" field"
1050
  msgstr ""
1051
 
1052
- #: includes/views/permalink-manager-settings.php:191
1053
- msgid ""
1054
- "If enabled, it would be possible to edit the native slug via URI Editor on "
1055
- "single post/term edit page."
1056
  msgstr ""
1057
 
1058
- #: includes/views/permalink-manager-settings.php:195
1059
- msgid "Force 404 on non-existing pagination pages"
 
1060
  msgstr ""
1061
 
1062
- #: includes/views/permalink-manager-settings.php:197
1063
- msgid ""
1064
- "If enabled, the non-existing pagination pages (for single posts) will return "
1065
- "404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
1066
- "any problems with pagination pages or use custom pagination system.</strong>"
1067
  msgstr ""
1068
 
1069
- #: includes/views/permalink-manager-settings.php:201
1070
- msgid "Strip special characters"
1071
  msgstr ""
1072
 
1073
- #: includes/views/permalink-manager-settings.php:203
1074
- #: includes/views/permalink-manager-settings.php:210
1075
- msgid "Yes, use native settings"
1076
  msgstr ""
1077
 
1078
- #: includes/views/permalink-manager-settings.php:203
1079
- msgid "No, keep special characters (.,|_+) in the slugs"
1080
  msgstr ""
1081
 
1082
- #: includes/views/permalink-manager-settings.php:204
1083
- msgid ""
1084
- "If enabled only alphanumeric characters, underscores and dashes will be "
1085
- "allowed for post/term slugs."
1086
  msgstr ""
1087
 
1088
- #: includes/views/permalink-manager-settings.php:208
1089
- msgid "Convert accented letters"
1090
  msgstr ""
1091
 
1092
- #: includes/views/permalink-manager-settings.php:210
1093
- msgid "No, keep accented letters in the slugs"
 
1094
  msgstr ""
1095
 
1096
- #: includes/views/permalink-manager-settings.php:211
1097
- msgid ""
1098
- "If enabled, all the accented letters will be replaced with their non-"
1099
- "accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
1100
  msgstr ""
1101
 
1102
- #: includes/views/permalink-manager-settings.php:215
1103
- msgid "URI Editor role capability"
 
1104
  msgstr ""
1105
 
1106
- #: includes/views/permalink-manager-settings.php:216
1107
- msgid "Administrator (edit_theme_options)"
 
1108
  msgstr ""
1109
 
1110
- #: includes/views/permalink-manager-settings.php:216
1111
- msgid "Editor (publish_pages)"
 
1112
  msgstr ""
1113
 
1114
- #: includes/views/permalink-manager-settings.php:216
1115
- msgid "Author (publish_posts)"
 
1116
  msgstr ""
1117
 
1118
- #: includes/views/permalink-manager-settings.php:216
1119
- msgid "Contributor (edit_posts)"
1120
  msgstr ""
1121
 
1122
- #: includes/views/permalink-manager-settings.php:217
1123
- #, php-format
1124
- msgid ""
1125
- "Only the users who have selected capability will be able to access URI "
1126
- "Editor.<br />The list of capabilities <a href=\"%s\" target=\"_blank\">can "
1127
- "be found here</a>."
1128
  msgstr ""
1129
 
1130
- #: includes/views/permalink-manager-settings.php:221
1131
- msgid "Automatically fix broken URIs"
1132
  msgstr ""
1133
 
1134
- #: includes/views/permalink-manager-settings.php:223
1135
- msgid "Disable"
1136
  msgstr ""
1137
 
1138
- #: includes/views/permalink-manager-settings.php:223
1139
- msgid "Fix URIs individually (during page load)"
 
1140
  msgstr ""
1141
 
1142
- #: includes/views/permalink-manager-settings.php:223
1143
- msgid "Bulk fix all URIs (once a day, in the background)"
1144
- msgstr ""
1145
-
1146
- #: includes/views/permalink-manager-settings.php:225
1147
- msgid ""
1148
- "Enable this option if you would like to automatically remove redundant "
1149
- "permalinks & duplicated redirects."
1150
- msgstr ""
1151
-
1152
- #: includes/views/permalink-manager-settings.php:232
1153
- msgid "Save settings"
1154
  msgstr ""
1155
 
1156
- #: includes/views/permalink-manager-tools.php:15
1157
- msgid "Tools"
1158
  msgstr ""
1159
 
1160
- #: includes/views/permalink-manager-tools.php:18
1161
- msgid "Permalink Duplicates"
1162
  msgstr ""
1163
 
1164
- #: includes/views/permalink-manager-tools.php:22
1165
- msgid "Find & Replace"
1166
  msgstr ""
1167
 
1168
- #: includes/views/permalink-manager-tools.php:26
1169
- msgid "Regenerate/Reset"
1170
  msgstr ""
1171
 
1172
- #: includes/views/permalink-manager-tools.php:30
1173
- msgid "Stop Words"
1174
  msgstr ""
1175
 
1176
- #: includes/views/permalink-manager-tools.php:44
1177
- msgid ""
1178
- "<strong>A MySQL backup is highly recommended before using \"<em>Native "
1179
- "slugs</em>\" mode!</strong>"
1180
  msgstr ""
1181
 
1182
- #: includes/views/permalink-manager-tools.php:54
1183
- msgid "List of duplicated permalinks"
 
 
 
1184
  msgstr ""
1185
 
1186
- #: includes/views/permalink-manager-tools.php:55
1187
- msgid "Fix custom permalinks & redirects"
1188
  msgstr ""
1189
 
1190
- #: includes/views/permalink-manager-tools.php:70
1191
- msgid "Extra Redirect"
1192
  msgstr ""
1193
 
1194
- #: includes/views/permalink-manager-tools.php:81
1195
- msgid "Edit term"
 
 
1196
  msgstr ""
1197
 
1198
- #: includes/views/permalink-manager-tools.php:84
1199
- msgid "(Removed term)"
 
 
1200
  msgstr ""
1201
 
1202
- #: includes/views/permalink-manager-tools.php:85
1203
- #: includes/views/permalink-manager-tools.php:98
1204
- msgid "Remove broken URI"
 
 
 
 
1205
  msgstr ""
1206
 
1207
- #: includes/views/permalink-manager-tools.php:94
1208
- msgid "Edit post"
1209
  msgstr ""
1210
 
1211
- #: includes/views/permalink-manager-tools.php:97
1212
- msgid "(Removed post)"
 
 
1213
  msgstr ""
1214
 
1215
- #: includes/views/permalink-manager-tools.php:120
1216
- msgid "Congratulations! No duplicated URIs or Redirects found!"
 
 
1217
  msgstr ""
1218
 
1219
- #: includes/views/permalink-manager-tools.php:134
1220
- msgid "Find ..."
1221
  msgstr ""
1222
 
1223
- #: includes/views/permalink-manager-tools.php:140
1224
- msgid "Replace with ..."
1225
  msgstr ""
1226
 
1227
- #: includes/views/permalink-manager-tools.php:146
1228
- #: includes/views/permalink-manager-tools.php:222
1229
- msgid "Mode"
 
1230
  msgstr ""
1231
 
1232
- #: includes/views/permalink-manager-tools.php:150
1233
- msgid "Custom URIs"
 
 
1234
  msgstr ""
1235
 
1236
- #: includes/views/permalink-manager-tools.php:151
1237
- msgid "Native slugs"
1238
  msgstr ""
1239
 
1240
- #: includes/views/permalink-manager-tools.php:155
1241
- #: includes/views/permalink-manager-tools.php:232
1242
- msgid "Select content type"
 
1243
  msgstr ""
1244
 
1245
- #: includes/views/permalink-manager-tools.php:167
1246
- #: includes/views/permalink-manager-tools.php:244
1247
- msgid "Select post types"
 
 
1248
  msgstr ""
1249
 
1250
- #: includes/views/permalink-manager-tools.php:176
1251
- #: includes/views/permalink-manager-tools.php:253
1252
- msgid "Select taxonomies"
 
1253
  msgstr ""
1254
 
1255
- #: includes/views/permalink-manager-tools.php:187
1256
- #: includes/views/permalink-manager-tools.php:264
1257
- msgid "Select post statuses"
1258
  msgstr ""
1259
 
1260
- #: includes/views/permalink-manager-tools.php:196
1261
- #: includes/views/permalink-manager-tools.php:273
1262
- msgid "Select IDs"
 
 
 
1263
  msgstr ""
1264
 
1265
  #: includes/views/permalink-manager-tools.php:200
@@ -1269,117 +1238,159 @@ msgid ""
1269
  "<strong>1-8, 10, 25</strong>."
1270
  msgstr ""
1271
 
1272
- #: includes/views/permalink-manager-tools.php:206
1273
- #: includes/views/permalink-manager-tools.php:283
1274
- msgid "Important notices"
 
1275
  msgstr ""
1276
 
1277
- #: includes/views/permalink-manager-tools.php:209
1278
- msgid "Find and replace"
1279
  msgstr ""
1280
 
1281
- #: includes/views/permalink-manager-tools.php:226
1282
- msgid "Regenerate custom permalinks"
1283
  msgstr ""
1284
 
1285
- #: includes/views/permalink-manager-tools.php:227
1286
- msgid "Regenerate native slugs"
1287
  msgstr ""
1288
 
1289
- #: includes/views/permalink-manager-tools.php:228
1290
- msgid "Use original URLs as custom permalinks"
1291
  msgstr ""
1292
 
1293
- #: includes/views/permalink-manager-tools.php:286
1294
- msgid "Regenerate"
1295
  msgstr ""
1296
 
1297
- #: includes/views/permalink-manager-debug.php:14
1298
- msgid "Debug"
1299
  msgstr ""
1300
 
1301
- #: includes/views/permalink-manager-debug.php:28
1302
- msgid "Debug data"
1303
  msgstr ""
1304
 
1305
- #: includes/views/permalink-manager-debug.php:33
1306
- msgid "List of the URIs generated by this plugin."
1307
  msgstr ""
1308
 
1309
- #: includes/views/permalink-manager-debug.php:35
1310
- msgid "Remove all custom permalinks"
 
1311
  msgstr ""
1312
 
1313
- #: includes/views/permalink-manager-debug.php:37
1314
- msgid "Array with URIs"
1315
  msgstr ""
1316
 
1317
- #: includes/views/permalink-manager-debug.php:44
1318
- msgid "List of custom redirects set-up by this plugin."
1319
  msgstr ""
1320
 
1321
- #: includes/views/permalink-manager-debug.php:46
1322
- msgid "Remove all custom redirects"
1323
  msgstr ""
1324
 
1325
- #: includes/views/permalink-manager-debug.php:48
1326
- msgid "Array with redirects"
1327
  msgstr ""
1328
 
1329
- #: includes/views/permalink-manager-debug.php:55
1330
- msgid "List of external redirects set-up by this plugin."
1331
  msgstr ""
1332
 
1333
- #: includes/views/permalink-manager-debug.php:56
1334
- msgid "Remove all external redirects"
1335
  msgstr ""
1336
 
1337
- #: includes/views/permalink-manager-debug.php:58
1338
- msgid "Array with external redirects"
1339
  msgstr ""
1340
 
1341
- #: includes/views/permalink-manager-debug.php:65
1342
- msgid "List of permastructures set-up by this plugin."
 
1343
  msgstr ""
1344
 
1345
- #: includes/views/permalink-manager-debug.php:67
1346
- msgid "Remove all permastructures settings"
1347
  msgstr ""
1348
 
1349
- #: includes/views/permalink-manager-debug.php:69
1350
- msgid "Array with permastructures"
1351
  msgstr ""
1352
 
1353
- #: includes/views/permalink-manager-debug.php:76
1354
- msgid "List of plugin settings."
 
 
1355
  msgstr ""
1356
 
1357
- #: includes/views/permalink-manager-debug.php:78
1358
- msgid "Remove all plugin settings"
 
 
1359
  msgstr ""
1360
 
1361
- #: includes/views/permalink-manager-debug.php:80
1362
- msgid "Array with settings used in this plugin."
1363
  msgstr ""
1364
 
1365
- #. Name of the plugin
1366
- msgid "Permalink Manager Pro"
1367
  msgstr ""
1368
 
1369
- #. Description of the plugin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1370
  msgid ""
1371
- "Advanced plugin that allows to set-up custom permalinks (bulk editors "
1372
- "included), slugs and permastructures (WooCommerce compatible)."
1373
  msgstr ""
1374
 
1375
- #. URI of the plugin
1376
- msgid "https://permalinkmanager.pro?utm_source=plugin"
 
 
1377
  msgstr ""
1378
 
1379
- #. Author of the plugin
1380
- msgid "Maciej Bis"
1381
  msgstr ""
1382
 
1383
- #. Author URI of the plugin
1384
- msgid "http://maciejbis.net/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1385
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: PACKAGE VERSION\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2021-02-05 17:20+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Loco https://localise.biz/"
16
 
17
+ #: includes/views/permalink-manager-pro-addons.php:255
 
18
  msgid ""
19
+ " Please send your remarks to <a href=\"mailto:contact@permalinkmanager.pro\">"
20
+ "contact@permalinkmanager.pro</a>."
 
 
21
  msgstr ""
22
 
23
+ #: includes/core/permalink-manager-third-parties.php:299
24
  msgid "\"Custom Permalinks\" URIs were imported!"
25
  msgstr ""
26
 
27
+ #: includes/views/permalink-manager-pro-addons.php:178
28
+ msgid "\"Stop words\" list"
29
  msgstr ""
30
 
31
+ #: includes/core/permalink-manager-actions.php:377
32
+ #, php-format
33
+ msgid "%d Custom URIs and %d Custom Redirects were removed!"
 
 
 
 
 
 
34
  msgstr ""
35
 
36
+ #: includes/core/permalink-manager-actions.php:424
37
+ #, php-format
38
+ msgid "%s were removed!"
 
39
  msgstr ""
40
 
41
+ #: includes/views/permalink-manager-tools.php:97
42
+ msgid "(Removed post)"
 
 
 
43
  msgstr ""
44
 
45
+ #: includes/views/permalink-manager-tools.php:84
46
+ msgid "(Removed term)"
47
  msgstr ""
48
 
49
+ #: includes/views/permalink-manager-pro-addons.php:159
50
+ msgid "-- Use predefined words list --"
 
 
 
51
  msgstr ""
52
 
53
+ #: includes/views/permalink-manager-settings.php:105
54
+ msgid "301 redirect"
55
  msgstr ""
56
 
57
+ #: includes/views/permalink-manager-settings.php:105
58
+ msgid "302 redirect"
59
  msgstr ""
60
 
61
+ #: includes/core/permalink-manager-admin-functions.php:717
62
+ #, php-format
63
+ msgid "<a %s>Click here</a> to go to the list of updated slugs"
64
  msgstr ""
65
 
66
+ #: includes/core/permalink-manager-admin-functions.php:901
67
+ #, php-format
68
+ msgid ""
69
+ "<span><strong>Need more functionalities and dedicated support?</strong> Buy "
70
+ "Permalink Manager Pro and apply <a href=\"https://permalinkmanager.pro/buy-"
71
+ "permalink-manager-pro/\">PMLITE coupon code</a> to get 10% off.</a></span>"
72
  msgstr ""
73
 
74
+ #: includes/core/permalink-manager-admin-functions.php:716
75
+ #, php-format
76
+ msgid "<strong class=\"updated_count\">%d</strong> slug was updated!"
77
+ msgid_plural "<strong class=\"updated_count\">%d</strong> slugs were updated!"
78
+ msgstr[0] ""
79
+ msgstr[1] ""
80
+
81
+ #: includes/views/permalink-manager-tools.php:44
82
+ msgid ""
83
+ "<strong>A MySQL backup is highly recommended before using \"<em>Native "
84
+ "slugs</em>\" mode!</strong>"
85
  msgstr ""
86
 
87
+ #: includes/views/permalink-manager-settings.php:73
88
+ msgid ""
89
+ "<strong>Canonical redirect allows WordPress to \"correct\" the requested URL "
90
+ "and redirect visitor to the canonical permalink.</strong>"
91
  msgstr ""
92
 
93
+ #: includes/core/permalink-manager-admin-functions.php:721
94
+ #: includes/core/permalink-manager-actions.php:115
95
+ msgid "<strong>No slugs</strong> were updated!"
96
  msgstr ""
97
 
98
+ #: includes/views/permalink-manager-settings.php:90
99
+ msgid ""
100
+ "<strong>Old slug redirect is used by WordPress to provide a fallback for old "
101
+ "version of slugs after they are changed.</strong>"
102
  msgstr ""
103
 
104
+ #: includes/views/permalink-manager-settings.php:42
105
  msgid ""
106
+ "<strong>Permalink Manager can automatically update the custom permalink "
107
+ "after post or term is saved/updated.</strong>"
 
 
108
  msgstr ""
109
 
110
+ #: includes/views/permalink-manager-settings.php:136
111
+ msgid ""
112
+ "<strong>Permalink Manager can force the trailing slashes settings in the "
113
+ "custom permalinks with redirect.</strong>"
114
  msgstr ""
115
 
116
+ #: includes/views/permalink-manager-settings.php:52
117
+ msgid ""
118
+ "<strong>Permalink Manager can use either native slugs or actual titles for "
119
+ "custom permalinks.</strong>"
120
  msgstr ""
121
 
122
+ #: includes/views/permalink-manager-settings.php:107
123
+ msgid ""
124
+ "<strong>Permalink Manager includes a set of hooks that allow to extend the "
125
+ "redirect functions used natively by WordPress to avoid 404 errors.</strong>"
126
  msgstr ""
127
 
128
+ #: includes/views/permalink-manager-pro-addons.php:317
129
+ msgid ""
130
+ "<strong>Please use full URLs!</strong><br />For instance, <code>http:"
131
+ "//another-website.com/final-target-url</code>."
132
  msgstr ""
133
 
134
+ #: includes/views/permalink-manager-pro-addons.php:299
135
+ #, php-format
136
+ msgid ""
137
+ "<strong>Please use URIs only!</strong><br />For instance, to set-up a "
138
+ "redirect for <code>%s/old-uri</code> please use <code>old-uri</code>."
139
  msgstr ""
140
 
141
+ #: includes/views/permalink-manager-settings.php:127
142
+ msgid ""
143
+ "<strong>You can use Permalink Manager to force SSL or \"www\" prefix in "
144
+ "WordPress permalinks.</strong>"
145
  msgstr ""
146
 
147
+ #: includes/views/permalink-manager-settings.php:64
148
+ msgid ""
149
+ "<strong>You can use this feature to either add or remove the slases from end "
150
+ "of WordPress permalinks.</strong>"
151
  msgstr ""
152
 
153
+ #: includes/views/permalink-manager-pro-addons.php:294
154
+ msgid "Add new redirect"
155
  msgstr ""
156
 
157
+ #: includes/views/permalink-manager-pro-addons.php:164
158
+ msgid "Add the words from the list"
 
159
  msgstr ""
160
 
161
+ #: includes/views/permalink-manager-settings.php:61
162
+ msgid "Add trailing slashes"
 
163
  msgstr ""
164
 
165
+ #: includes/views/permalink-manager-settings.php:206
166
+ msgid "Administrator (edit_theme_options)"
 
167
  msgstr ""
168
 
169
+ #. Description of the plugin
170
+ msgid ""
171
+ "Advanced plugin that allows to set-up custom permalinks (bulk editors "
172
+ "included), slugs and permastructures (WooCommerce compatible)."
173
  msgstr ""
174
 
175
+ #: includes/views/permalink-manager-settings.php:176
176
+ msgid "Advanced settings"
 
177
  msgstr ""
178
 
179
+ #: includes/views/permalink-manager-permastructs.php:79
180
+ #, php-format
181
+ msgid ""
182
+ "All allowed <a href=\"%s\" target=\"_blank\">permastructure tags</a> are "
183
+ "listed below. Please note that some of them can be used only for particular "
184
+ "post types or taxonomies."
185
  msgstr ""
186
 
187
+ #: includes/views/permalink-manager-uri-editor-post.php:174
188
+ msgid "All dates"
189
  msgstr ""
190
 
191
+ #: includes/views/permalink-manager-pro-addons.php:271
192
+ msgid ""
193
+ "All URIs specified below will redirect the visitors to the custom URI "
194
+ "defined above in \"Current URI\" field."
195
+ msgstr ""
 
196
 
197
+ #: includes/views/permalink-manager-uri-editor.php:83
198
+ msgid "Apply"
 
199
  msgstr ""
200
 
201
+ #: includes/core/permalink-manager-pro-functions.php:188
202
+ msgid "Arabic"
 
203
  msgstr ""
204
 
205
+ #: includes/core/permalink-manager-admin-functions.php:135
206
+ msgid "Are you sure? This action cannot be undone!"
 
207
  msgstr ""
208
 
209
+ #: includes/views/permalink-manager-debug.php:58
210
+ msgid "Array with external redirects"
 
211
  msgstr ""
212
 
213
+ #: includes/views/permalink-manager-debug.php:69
214
+ msgid "Array with permastructures"
 
215
  msgstr ""
216
 
217
+ #: includes/views/permalink-manager-debug.php:48
218
+ msgid "Array with redirects"
219
  msgstr ""
220
 
221
+ #: includes/views/permalink-manager-debug.php:80
222
+ msgid "Array with settings used in this plugin."
223
  msgstr ""
224
 
225
+ #: includes/views/permalink-manager-debug.php:37
226
+ msgid "Array with URIs"
227
  msgstr ""
228
 
229
+ #: includes/views/permalink-manager-settings.php:206
230
+ msgid "Author (publish_posts)"
 
 
 
231
  msgstr ""
232
 
233
+ #: includes/core/permalink-manager-admin-functions.php:857
234
+ msgid "Auto-update \"Current URI\""
235
  msgstr ""
236
 
237
+ #: includes/views/permalink-manager-settings.php:39
238
+ msgid "Auto-update permalinks"
 
 
239
  msgstr ""
240
 
241
+ #: includes/core/permalink-manager-admin-functions.php:890
242
+ msgid "Automatic redirect for native URI enabled:"
243
  msgstr ""
244
 
245
+ #: includes/views/permalink-manager-settings.php:211
246
+ msgid "Automatically fix broken URIs"
 
 
247
  msgstr ""
248
 
249
+ #: includes/views/permalink-manager-settings.php:169
250
+ msgid "Breadcrumbs support"
251
  msgstr ""
252
 
253
+ #: includes/core/permalink-manager-actions.php:573
254
+ msgid "Broken redirects were removed successfully!"
255
  msgstr ""
256
 
257
+ #: includes/views/permalink-manager-settings.php:213
258
+ msgid "Bulk fix all URIs (once a day, in the background)"
259
  msgstr ""
260
 
261
+ #: includes/core/permalink-manager-admin-functions.php:173
262
+ msgid "Buy Permalink Manager Pro"
 
 
 
 
263
  msgstr ""
264
 
265
+ #: includes/core/permalink-manager-admin-functions.php:584
266
+ msgid "by Maciej Bis"
267
  msgstr ""
268
 
269
+ #: includes/views/permalink-manager-settings.php:70
270
+ msgid "Canonical redirect"
271
  msgstr ""
272
 
273
+ #: includes/views/permalink-manager-pro-addons.php:135
274
+ msgid "Check the expiration date."
 
 
 
275
  msgstr ""
276
 
277
+ #: includes/core/permalink-manager-pro-functions.php:189
278
+ msgid "Chinese"
 
 
 
279
  msgstr ""
280
 
281
+ #: includes/core/permalink-manager-uri-functions-tax.php:489
282
+ msgid "Clear/leave the field empty to use the default permalink."
283
  msgstr ""
284
 
285
+ #: includes/core/permalink-manager-admin-functions.php:829
286
+ msgid "Close: "
 
 
 
 
287
  msgstr ""
288
 
289
+ #: includes/views/permalink-manager-tools.php:120
290
+ msgid "Congratulations! No duplicated URIs or Redirects found!"
291
  msgstr ""
292
 
293
+ #: includes/views/permalink-manager-settings.php:206
294
+ msgid "Contributor (edit_posts)"
 
 
 
 
 
 
 
 
 
295
  msgstr ""
296
 
297
+ #: includes/views/permalink-manager-settings.php:198
298
+ msgid "Convert accented letters"
299
  msgstr ""
300
 
301
+ #: includes/views/permalink-manager-uri-editor-tax.php:53
302
+ msgid "Count"
303
  msgstr ""
304
 
305
+ #: includes/core/permalink-manager-pro-functions.php:524
306
+ msgid "Coupon Full URL"
307
  msgstr ""
308
 
309
+ #: includes/core/permalink-manager-pro-functions.php:491
310
+ msgid "Coupon Link"
311
  msgstr ""
312
 
313
+ #: includes/core/permalink-manager-pro-functions.php:512
314
+ msgid "Coupon URI"
315
  msgstr ""
316
 
317
+ #: includes/core/permalink-manager-uri-functions-tax.php:521
318
+ #: includes/core/permalink-manager-admin-functions.php:747
319
+ #: includes/core/permalink-manager-admin-functions.php:848
320
+ #: includes/core/permalink-manager-uri-functions-post.php:690
321
+ msgid "Current URI"
322
  msgstr ""
323
 
324
+ #: includes/views/permalink-manager-pro-addons.php:214
325
+ #: includes/views/permalink-manager-tools.php:34
326
+ msgid "Custom Permalinks"
327
  msgstr ""
328
 
329
+ #: includes/core/permalink-manager-actions.php:397
330
+ msgid "Custom permalinks"
331
  msgstr ""
332
 
333
+ #: includes/core/permalink-manager-actions.php:401
334
+ msgid "Custom redirects"
335
  msgstr ""
336
 
337
+ #: includes/core/permalink-manager-third-parties.php:698
338
+ #: includes/core/permalink-manager-uri-functions-tax.php:488
339
+ #: includes/views/permalink-manager-tools.php:70
340
+ msgid "Custom URI"
341
  msgstr ""
342
 
343
+ #: includes/views/permalink-manager-tools.php:150
344
+ msgid "Custom URIs"
345
  msgstr ""
346
 
347
+ #: includes/core/permalink-manager-pro-functions.php:190
348
+ msgid "Danish"
349
  msgstr ""
350
 
351
+ #: includes/views/permalink-manager-pro-addons.php:215
352
+ msgid "Deactivate after import"
353
  msgstr ""
354
 
355
+ #: includes/views/permalink-manager-debug.php:14
356
+ msgid "Debug"
357
  msgstr ""
358
 
359
+ #: includes/views/permalink-manager-debug.php:28
360
+ msgid "Debug data"
361
  msgstr ""
362
 
363
+ #: includes/core/permalink-manager-admin-functions.php:419
364
+ msgid "Default permastructure"
365
  msgstr ""
366
 
367
+ #: includes/core/permalink-manager-admin-functions.php:879
368
+ msgid "Default URI"
369
  msgstr ""
370
 
371
+ #: includes/views/permalink-manager-settings.php:213
372
+ msgid "Disable"
373
  msgstr ""
374
 
375
+ #: includes/views/permalink-manager-settings.php:105
376
+ msgid "Disable (Permalink Manager redirect functions)"
377
  msgstr ""
378
 
379
+ #: includes/core/permalink-manager-admin-functions.php:427
380
+ msgid "Do not automatically append the slug"
381
  msgstr ""
382
 
383
+ #: includes/core/permalink-manager-admin-functions.php:169
384
+ msgid "Documentation"
385
  msgstr ""
386
 
387
+ #: includes/core/permalink-manager-admin-functions.php:583
388
+ msgid "Donate"
389
  msgstr ""
390
 
391
+ #: includes/core/permalink-manager-pro-functions.php:191
392
+ msgid "Dutch"
393
  msgstr ""
394
 
395
+ #: includes/views/permalink-manager-pro-addons.php:192
396
  msgid ""
397
+ "Each of the words can be removed and any new words can be added to the list. "
398
+ "You can also use a predefined list (available in 21 languages)."
 
 
 
 
399
  msgstr ""
400
 
401
+ #: includes/views/permalink-manager-uri-editor-post.php:120
402
+ #: includes/views/permalink-manager-uri-editor-tax.php:100
403
+ #: includes/views/permalink-manager-uri-editor-tax.php:100
404
+ msgid "Edit"
405
  msgstr ""
406
 
407
+ #: includes/views/permalink-manager-tools.php:94
408
+ msgid "Edit post"
 
409
  msgstr ""
410
 
411
+ #: includes/views/permalink-manager-tools.php:81
412
+ msgid "Edit term"
413
  msgstr ""
414
 
415
+ #: includes/views/permalink-manager-settings.php:206
416
+ msgid "Editor (publish_pages)"
417
  msgstr ""
418
 
419
+ #: includes/views/permalink-manager-pro-addons.php:172
420
+ msgid "Enable \"stop words\""
421
  msgstr ""
422
 
423
+ #: includes/views/permalink-manager-settings.php:215
424
+ msgid ""
425
+ "Enable this option if you would like to automatically remove redundant "
426
+ "permalinks & duplicated redirects."
427
  msgstr ""
428
 
429
+ #: includes/core/permalink-manager-pro-functions.php:192
430
+ msgid "English"
431
  msgstr ""
432
 
433
+ #: includes/views/permalink-manager-settings.php:97
434
+ msgid "Enhanced redirect"
 
435
  msgstr ""
436
 
437
+ #: includes/views/permalink-manager-settings.php:220
438
+ msgid "Exclude content types"
 
439
  msgstr ""
440
 
441
+ #: includes/views/permalink-manager-settings.php:226
442
+ msgid "Exclude drafts"
443
  msgstr ""
444
 
445
+ #: includes/core/permalink-manager-pro-functions.php:151
446
+ msgid ""
447
+ "Expiration date could not be downloaded at this moment. Please try again in "
448
+ "a few minutes."
449
  msgstr ""
450
 
451
+ #: includes/core/permalink-manager-actions.php:405
452
+ msgid "External redirects"
453
  msgstr ""
454
 
455
+ #: includes/views/permalink-manager-tools.php:70
456
+ msgid "Extra Redirect"
457
  msgstr ""
458
 
459
+ #: includes/views/permalink-manager-pro-addons.php:270
460
+ msgid "Extra redirects (aliases)"
461
  msgstr ""
462
 
463
+ #: includes/views/permalink-manager-uri-editor-post.php:183
464
+ msgid "Filter"
465
  msgstr ""
466
 
467
+ #: includes/views/permalink-manager-tools.php:22
468
+ msgid "Find & Replace"
 
 
469
  msgstr ""
470
 
471
+ #: includes/views/permalink-manager-tools.php:134
472
+ msgid "Find ..."
 
 
473
  msgstr ""
474
 
475
+ #: includes/views/permalink-manager-tools.php:209
476
+ msgid "Find and replace"
477
  msgstr ""
478
 
479
+ #: includes/core/permalink-manager-pro-functions.php:193
480
+ msgid "Finnish"
 
 
481
  msgstr ""
482
 
483
+ #: includes/views/permalink-manager-tools.php:55
484
+ msgid "Fix custom permalinks & redirects"
 
 
 
 
 
485
  msgstr ""
486
 
487
+ #: includes/views/permalink-manager-settings.php:213
488
+ msgid "Fix URIs individually (during page load)"
489
  msgstr ""
490
 
491
+ #: includes/views/permalink-manager-settings.php:186
492
+ msgid "Force 404 on non-existing pagination pages"
 
 
 
 
493
  msgstr ""
494
 
495
+ #: includes/views/permalink-manager-settings.php:124
496
+ msgid "Force HTTPS/WWW"
497
  msgstr ""
498
 
499
+ #: includes/core/permalink-manager-pro-functions.php:194
500
+ msgid "French"
501
  msgstr ""
502
 
503
  #: includes/views/permalink-manager-uri-editor-post.php:56
505
  msgid "Full URI & Permalink"
506
  msgstr ""
507
 
508
+ #: includes/views/permalink-manager-settings.php:33
509
+ msgid "General settings"
510
  msgstr ""
511
 
512
+ #: includes/core/permalink-manager-pro-functions.php:195
513
+ msgid "German"
 
514
  msgstr ""
515
 
516
+ #: permalink-manager.php:209
517
+ #, php-format
518
+ msgid ""
519
+ "Get access to extra features: full taxonomy and WooCommerce support, "
520
+ "possibility to use custom fields inside the permalinks and more!<br />"
521
+ "<strong>Buy Permalink Manager Pro <a href=\"%s\" target=\"_blank\">here</a> "
522
+ "and save %s using \"%s\" coupon code!</strong> Valid until %s!"
523
  msgstr ""
524
 
525
+ #: includes/core/permalink-manager-pro-functions.php:196
526
+ msgid "Hebrew"
 
 
527
  msgstr ""
528
 
529
+ #: includes/core/permalink-manager-pro-functions.php:197
530
+ msgid "Hindi"
 
 
531
  msgstr ""
532
 
533
+ #: includes/views/permalink-manager-pro-addons.php:313
534
+ msgid "http://another-website.com/final-target-url"
 
535
  msgstr ""
536
 
537
+ #. Author URI of the plugin
538
+ msgid "http://maciejbis.net/"
 
539
  msgstr ""
540
 
541
+ #. URI of the plugin
542
+ msgid "https://permalinkmanager.pro?utm_source=plugin"
 
543
  msgstr ""
544
 
545
+ #: includes/core/permalink-manager-admin-functions.php:849
546
+ msgid ""
547
+ "If custom URI is not defined, a default URI will be set (see below). The "
548
+ "custom URI can be edited only if 'Auto-update the URI' feature is not "
549
+ "enabled."
550
  msgstr ""
551
 
552
+ #: includes/views/permalink-manager-settings.php:158
553
+ msgid ""
554
+ "If disabled, the custom permalinks <strong>will not be saved</strong> for "
555
+ "the posts imported with WP All Import plugin."
556
  msgstr ""
557
 
558
+ #: includes/core/permalink-manager-third-parties.php:699
559
+ #, php-format
560
+ msgid ""
561
+ "If empty, a default permalink based on your current <a href=\"%s\" "
562
+ "target=\"_blank\">permastructure settings</a> will be used."
563
  msgstr ""
564
 
565
+ #: includes/views/permalink-manager-settings.php:194
566
+ msgid ""
567
+ "If enabled only alphanumeric characters, underscores and dashes will be "
568
+ "allowed for post/term slugs."
 
 
569
  msgstr ""
570
 
571
+ #: includes/views/permalink-manager-pro-addons.php:191
572
+ msgid ""
573
+ "If enabled, all selected \"stop words\" will be automatically removed from "
574
+ "default URIs."
575
  msgstr ""
576
 
577
+ #: includes/views/permalink-manager-settings.php:201
578
+ msgid ""
579
+ "If enabled, all the accented letters will be replaced with their non-"
580
+ "accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
581
  msgstr ""
582
 
583
+ #: includes/views/permalink-manager-settings.php:118
584
+ msgid ""
585
+ "If enabled, Permalink Manage will save the \"extra redirect\" for earlier "
586
+ "version of custom permalink after you change it (eg. with URI Editor or "
587
+ "Regenerate/reset tool)."
588
  msgstr ""
589
 
590
+ #: includes/views/permalink-manager-settings.php:43
591
+ msgid ""
592
+ "If enabled, Permalink Manager will always force the default custom permalink "
593
+ "format (based on current <strong>Permastructure</strong> settings)."
594
  msgstr ""
595
 
596
+ #: includes/views/permalink-manager-settings.php:165
597
+ msgid ""
598
+ "If enabled, Permalink Manager will detect the additional Ultimate Member "
599
+ "pages (eg. \"account\" sections)."
600
  msgstr ""
601
 
602
+ #: includes/core/permalink-manager-admin-functions.php:858
603
+ msgid ""
604
+ "If enabled, the 'Current URI' field will be automatically changed to "
605
+ "'Default URI' (displayed below) after the post is saved or updated."
606
  msgstr ""
607
 
608
+ #: includes/views/permalink-manager-settings.php:227
609
+ msgid "If enabled, the custom permalinks for post drafts will not be saved."
610
  msgstr ""
611
 
612
+ #: includes/views/permalink-manager-settings.php:171
613
  msgid ""
614
+ "If enabled, the HTML breadcrumbs will be filtered by Permalink Manager to "
615
+ "mimic the current URL structure.<br />Works with: <strong>WooCommerce, Yoast "
616
+ "SEO, RankMath and SEOPress</strong> breadcrumbs."
617
  msgstr ""
618
 
619
+ #: includes/views/permalink-manager-settings.php:187
620
  msgid ""
621
+ "If enabled, the non-existing pagination pages (for single posts) will return "
622
+ "404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
623
+ "any problems with pagination pages or use custom pagination system.</strong>"
624
  msgstr ""
625
 
626
+ #: includes/views/permalink-manager-settings.php:151
627
+ msgid ""
628
+ "If enabled, the plugin will load the adjacent translation of post when the "
629
+ "custom permalink is detected, but the language code in the URL does not "
630
+ "match the language code assigned to the post/term."
631
  msgstr ""
632
 
633
+ #: includes/views/permalink-manager-settings.php:91
634
+ msgid ""
635
+ "If enabled, the visitors trying to access the URL with the old slug will be "
636
+ "redirected to the canonical permalink."
637
  msgstr ""
638
 
639
+ #: includes/views/permalink-manager-pro-addons.php:309
640
+ msgid ""
641
+ "If not empty, the visitors trying to access this page will be redirected to "
642
+ "the URL specified below."
643
  msgstr ""
644
 
645
  #: includes/views/permalink-manager-pro-addons.php:218
648
  "custom URIs are imported."
649
  msgstr ""
650
 
651
+ #: includes/views/permalink-manager-pro-addons.php:250
652
  msgid ""
653
+ "If you still did not find the answer to your question, please send us your "
654
+ "question or a detailed description of your problem/issue to <a href=\"mailto:"
655
+ "support@permalinkmanager.pro\">support@permalinkmanager.pro</a>."
656
  msgstr ""
657
 
658
+ #: includes/views/permalink-manager-pro-addons.php:254
659
  msgid ""
660
+ "If you would like to suggest a new functionality or leave us feedback, we "
661
+ "are open to all new ideas and would be grateful for all your comments!"
662
+ msgstr ""
663
+
664
+ #: includes/core/permalink-manager-admin-functions.php:402
665
+ msgid ""
666
+ "If you would like to translate the permastructures and set-up different "
667
+ "permalink structure per language, please fill in the fields below. Otherwise "
668
+ "the permastructure set for default language (see field above) will be "
669
+ "applied."
670
  msgstr ""
671
 
672
  #: includes/views/permalink-manager-pro-addons.php:230
674
  msgid "Import %d URIs"
675
  msgstr ""
676
 
677
+ #: includes/views/permalink-manager-tools.php:206
678
+ #: includes/views/permalink-manager-tools.php:283
679
+ msgid "Important notices"
 
 
 
680
  msgstr ""
681
 
682
+ #: includes/views/permalink-manager-uri-editor-post.php:89
683
+ msgid "Inherit (Attachment)"
 
 
 
 
684
  msgstr ""
685
 
686
+ #: includes/views/permalink-manager-settings.php:50
687
+ msgid "Inherit parents' slugs"
 
 
 
688
  msgstr ""
689
 
690
+ #: includes/views/permalink-manager-permastructs.php:75
691
+ #: includes/views/permalink-manager-pro-addons.php:190
692
+ #: includes/views/permalink-manager-pro-addons.php:223
693
+ msgid "Instructions"
694
  msgstr ""
695
 
696
+ #: includes/core/permalink-manager-pro-functions.php:198
697
+ msgid "Italian"
698
  msgstr ""
699
 
700
+ #: includes/core/permalink-manager-pro-functions.php:199
701
+ msgid "Japanese"
 
 
702
  msgstr ""
703
 
704
+ #: includes/core/permalink-manager-pro-functions.php:200
705
+ msgid "Korean"
 
 
706
  msgstr ""
707
 
708
+ #: includes/views/permalink-manager-pro-addons.php:128
709
+ msgid "Licence"
710
  msgstr ""
711
 
712
+ #: includes/views/permalink-manager-pro-addons.php:134
713
+ msgid "Licence key"
 
 
714
  msgstr ""
715
 
716
+ #: includes/views/permalink-manager-debug.php:44
717
+ msgid "List of custom redirects set-up by this plugin."
718
  msgstr ""
719
 
720
+ #: includes/views/permalink-manager-tools.php:54
721
+ msgid "List of duplicated permalinks"
722
  msgstr ""
723
 
724
+ #: includes/views/permalink-manager-debug.php:55
725
+ msgid "List of external redirects set-up by this plugin."
 
 
 
726
  msgstr ""
727
 
728
+ #: includes/views/permalink-manager-debug.php:65
729
+ msgid "List of permastructures set-up by this plugin."
730
  msgstr ""
731
 
732
+ #: includes/views/permalink-manager-debug.php:76
733
+ msgid "List of plugin settings."
 
 
734
  msgstr ""
735
 
736
+ #: includes/views/permalink-manager-debug.php:33
737
+ msgid "List of the URIs generated by this plugin."
738
  msgstr ""
739
 
740
+ #: includes/core/permalink-manager-admin-functions.php:703
741
+ msgid "List of updated items"
 
 
742
  msgstr ""
743
 
744
+ #. Author of the plugin
745
+ msgid "Maciej Bis"
746
  msgstr ""
747
 
748
+ #: includes/core/permalink-manager-admin-functions.php:939
749
+ msgid "Manage redirects"
750
  msgstr ""
751
 
752
+ #: includes/views/permalink-manager-tools.php:146
753
+ #: includes/views/permalink-manager-tools.php:222
754
+ msgid "Mode"
755
  msgstr ""
756
 
757
+ #: includes/core/permalink-manager-admin-functions.php:869
758
+ msgid "Native slug"
759
  msgstr ""
760
 
761
+ #: includes/views/permalink-manager-tools.php:151
762
+ msgid "Native slugs"
763
  msgstr ""
764
 
765
+ #: includes/core/permalink-manager-admin-functions.php:666
766
+ #: includes/core/permalink-manager-admin-functions.php:693
767
+ msgid "New Slug"
768
  msgstr ""
769
 
770
+ #: includes/core/permalink-manager-admin-functions.php:669
771
+ #: includes/core/permalink-manager-admin-functions.php:696
772
+ msgid "New URI"
773
  msgstr ""
774
 
775
+ #: includes/core/permalink-manager-admin-functions.php:810
776
+ #: includes/core/permalink-manager-admin-functions.php:814
777
+ msgid "No"
778
  msgstr ""
779
 
780
+ #: includes/core/permalink-manager-third-parties.php:302
781
+ msgid "No \"Custom Permalinks\" URIs were imported!"
 
 
782
  msgstr ""
783
 
784
+ #: includes/core/permalink-manager-admin-functions.php:815
785
+ msgid "No (ignore this URI in bulk tools)"
 
 
786
  msgstr ""
787
 
788
+ #: includes/core/permalink-manager-actions.php:379
789
+ msgid "No Custom URIs or Custom Redirects were removed!"
790
  msgstr ""
791
 
792
+ #: includes/views/permalink-manager-pro-addons.php:235
793
+ msgid "No custom URIs to import"
794
  msgstr ""
795
 
796
+ #: includes/views/permalink-manager-settings.php:200
797
+ msgid "No, keep accented letters in the slugs"
798
  msgstr ""
799
 
800
+ #: includes/views/permalink-manager-settings.php:193
801
+ msgid "No, keep special characters (.,|_+) in the slugs"
802
  msgstr ""
803
 
804
+ #: includes/core/permalink-manager-pro-functions.php:201
805
+ msgid "Norwegian"
 
 
806
  msgstr ""
807
 
808
+ #: includes/core/permalink-manager-admin-functions.php:665
809
+ #: includes/core/permalink-manager-admin-functions.php:692
810
+ msgid "Old Slug"
 
811
  msgstr ""
812
 
813
+ #: includes/views/permalink-manager-settings.php:87
814
+ msgid "Old slug redirect"
 
 
815
  msgstr ""
816
 
817
+ #: includes/core/permalink-manager-admin-functions.php:668
818
+ #: includes/core/permalink-manager-admin-functions.php:695
819
+ msgid "Old URI"
820
  msgstr ""
821
 
822
+ #: includes/views/permalink-manager-settings.php:207
823
+ #, php-format
824
+ msgid ""
825
+ "Only the users who have selected capability will be able to access URI "
826
+ "Editor.<br />The list of capabilities <a href=\"%s\" target=\"_blank\">can "
827
+ "be found here</a>."
828
  msgstr ""
829
 
830
+ #: includes/views/permalink-manager-uri-editor.php:89
831
+ msgid "Per page"
832
  msgstr ""
833
 
834
+ #: includes/views/permalink-manager-tools.php:18
835
+ msgid "Permalink Duplicates"
836
  msgstr ""
837
 
838
+ #: includes/core/permalink-manager-third-parties.php:694
839
+ #: includes/core/permalink-manager-gutenberg.php:29
840
+ #: includes/core/permalink-manager-admin-functions.php:111
841
+ #: includes/core/permalink-manager-admin-functions.php:111
842
+ #: includes/core/permalink-manager-admin-functions.php:743
843
+ #: includes/core/permalink-manager-admin-functions.php:824
844
+ #: includes/core/permalink-manager-admin-functions.php:829
845
+ #: includes/core/permalink-manager-admin-functions.php:830
846
+ msgid "Permalink Manager"
847
  msgstr ""
848
 
849
+ #. Name of the plugin
850
+ msgid "Permalink Manager Pro"
 
 
851
  msgstr ""
852
 
853
+ #: includes/views/permalink-manager-settings.php:222
854
  msgid ""
855
+ "Permalink Manager will ignore and not filter the custom permalinks of all "
856
+ "selected above post types & taxonomies."
857
  msgstr ""
858
 
859
+ #: includes/core/permalink-manager-admin-functions.php:426
860
+ #: includes/core/permalink-manager-actions.php:409
861
+ #: includes/core/permalink-manager-actions.php:413
862
+ msgid "Permastructure settings"
863
  msgstr ""
864
 
865
+ #: includes/views/permalink-manager-permastructs.php:78
866
+ msgid "Permastructure tags"
 
 
867
  msgstr ""
868
 
869
+ #: includes/core/permalink-manager-admin-functions.php:401
870
+ msgid "Permastructure translations"
 
 
871
  msgstr ""
872
 
873
+ #: includes/views/permalink-manager-permastructs.php:15
874
+ msgid "Permastructures"
875
  msgstr ""
876
 
877
+ #: includes/core/permalink-manager-pro-functions.php:202
878
+ msgid "Persian"
 
 
879
  msgstr ""
880
 
881
+ #: includes/views/permalink-manager-settings.php:128
882
+ msgid "Please disable it if you encounter any redirect loop issues."
 
 
883
  msgstr ""
884
 
885
+ #: includes/views/permalink-manager-pro-addons.php:224
886
+ msgid ""
887
+ "Please note that \"Custom Permalinks\" (if activated) may break the behavior "
888
+ "of this plugin."
889
  msgstr ""
890
 
891
+ #: includes/core/permalink-manager-pro-functions.php:126
892
+ #, php-format
893
+ msgid ""
894
+ "Please paste the licence key to access all Permalink Manager Pro updates & "
895
+ "features <a href=\"%s\" target=\"_blank\">on this page</a>."
896
  msgstr ""
897
 
898
+ #: includes/views/permalink-manager-settings.php:65
899
+ msgid ""
900
+ "Please use \"<a href=\"#sslwww_redirect\">Trailing slashes redirect</a>\" "
901
+ "field if you would like to force the settings with redirect."
902
  msgstr ""
903
 
904
+ #: includes/core/permalink-manager-pro-functions.php:203
905
+ msgid "Polish"
906
  msgstr ""
907
 
908
+ #: includes/core/permalink-manager-pro-functions.php:204
909
+ msgid "Portuguese"
910
  msgstr ""
911
 
912
+ #: includes/views/permalink-manager-uri-editor-post.php:115
913
+ msgid "Post status"
 
 
914
  msgstr ""
915
 
916
+ #: includes/views/permalink-manager-uri-editor.php:94
917
+ msgid "Post statuses"
 
 
918
  msgstr ""
919
 
920
+ #: includes/views/permalink-manager-uri-editor-post.php:55
921
+ msgid "Post title"
922
  msgstr ""
923
 
924
+ #: includes/core/permalink-manager-admin-functions.php:262
925
+ #: includes/views/permalink-manager-permastructs.php:31
926
+ #: includes/views/permalink-manager-tools.php:162
927
+ #: includes/views/permalink-manager-tools.php:239
928
+ msgid "Post types"
929
  msgstr ""
930
 
931
+ #: includes/views/permalink-manager-settings.php:103
932
+ msgid "Redirect mode"
 
 
933
  msgstr ""
934
 
935
+ #: includes/views/permalink-manager-pro-addons.php:308
936
+ msgid "Redirect this page to external URL"
 
 
937
  msgstr ""
938
 
939
+ #: includes/views/permalink-manager-tools.php:286
940
+ msgid "Regenerate"
941
  msgstr ""
942
 
943
+ #: includes/views/permalink-manager-tools.php:226
944
+ msgid "Regenerate custom permalinks"
 
 
945
  msgstr ""
946
 
947
+ #: includes/views/permalink-manager-tools.php:227
948
+ msgid "Regenerate native slugs"
949
  msgstr ""
950
 
951
+ #: includes/views/permalink-manager-tools.php:26
952
+ msgid "Regenerate/Reset"
953
  msgstr ""
954
 
955
+ #: includes/views/permalink-manager-debug.php:35
956
+ msgid "Remove all custom permalinks"
 
 
957
  msgstr ""
958
 
959
+ #: includes/views/permalink-manager-debug.php:46
960
+ msgid "Remove all custom redirects"
961
  msgstr ""
962
 
963
+ #: includes/views/permalink-manager-debug.php:56
964
+ msgid "Remove all external redirects"
965
  msgstr ""
966
 
967
+ #: includes/views/permalink-manager-debug.php:67
968
+ msgid "Remove all permastructures settings"
 
 
 
969
  msgstr ""
970
 
971
+ #: includes/views/permalink-manager-debug.php:78
972
+ msgid "Remove all plugin settings"
973
  msgstr ""
974
 
975
+ #: includes/views/permalink-manager-pro-addons.php:162
976
+ msgid "Remove all words"
 
 
977
  msgstr ""
978
 
979
+ #: includes/views/permalink-manager-tools.php:85
980
+ #: includes/views/permalink-manager-tools.php:98
981
+ msgid "Remove broken URI"
982
  msgstr ""
983
 
984
+ #: includes/views/permalink-manager-settings.php:61
985
+ msgid "Remove trailing slashes"
 
 
986
  msgstr ""
987
 
988
+ #: includes/views/permalink-manager-tools.php:140
989
+ msgid "Replace with ..."
990
  msgstr ""
991
 
992
+ #: includes/core/permalink-manager-admin-functions.php:420
993
+ msgid "Restore default permastructure"
 
 
 
994
  msgstr ""
995
 
996
+ #: includes/core/permalink-manager-admin-functions.php:880
997
+ msgid "Restore Default URI"
998
  msgstr ""
999
 
1000
+ #: includes/core/permalink-manager-pro-functions.php:205
1001
+ msgid "Russian"
 
 
1002
  msgstr ""
1003
 
1004
+ #: includes/views/permalink-manager-pro-addons.php:277
1005
+ msgid "sample/custom-uri"
1006
  msgstr ""
1007
 
1008
+ #: includes/views/permalink-manager-pro-addons.php:194
1009
+ msgid "Save"
1010
  msgstr ""
1011
 
1012
+ #: includes/views/permalink-manager-uri-editor-post.php:150
1013
+ #: includes/views/permalink-manager-uri-editor-tax.php:147
1014
+ msgid "Save all the URIs above"
 
1015
  msgstr ""
1016
 
1017
+ #: includes/views/permalink-manager-uri-editor-post.php:149
1018
+ #: includes/views/permalink-manager-uri-editor-tax.php:146
1019
+ msgid "Save all the URIs below"
1020
  msgstr ""
1021
 
1022
+ #: includes/views/permalink-manager-settings.php:113
1023
+ msgid "Save old custom permalinks as redirects"
 
 
 
1024
  msgstr ""
1025
 
1026
+ #: includes/core/permalink-manager-admin-functions.php:912
1027
+ msgid "Save permalink"
1028
  msgstr ""
1029
 
1030
+ #: includes/views/permalink-manager-permastructs.php:82
1031
+ msgid "Save permastructures"
 
1032
  msgstr ""
1033
 
1034
+ #: includes/views/permalink-manager-settings.php:233
1035
+ msgid "Save settings"
1036
  msgstr ""
1037
 
1038
+ #: includes/views/permalink-manager-uri-editor-post.php:158
1039
+ #: includes/views/permalink-manager-uri-editor-tax.php:155
1040
+ msgid "Search"
 
1041
  msgstr ""
1042
 
1043
+ #: includes/core/permalink-manager-admin-functions.php:285
1044
+ msgid "Select all"
1045
  msgstr ""
1046
 
1047
+ #: includes/views/permalink-manager-tools.php:155
1048
+ #: includes/views/permalink-manager-tools.php:232
1049
+ msgid "Select content type"
1050
  msgstr ""
1051
 
1052
+ #: includes/views/permalink-manager-tools.php:196
1053
+ #: includes/views/permalink-manager-tools.php:273
1054
+ msgid "Select IDs"
 
1055
  msgstr ""
1056
 
1057
+ #: includes/views/permalink-manager-tools.php:187
1058
+ #: includes/views/permalink-manager-tools.php:264
1059
+ msgid "Select post statuses"
1060
  msgstr ""
1061
 
1062
+ #: includes/views/permalink-manager-tools.php:167
1063
+ #: includes/views/permalink-manager-tools.php:244
1064
+ msgid "Select post types"
1065
  msgstr ""
1066
 
1067
+ #: includes/views/permalink-manager-tools.php:176
1068
+ #: includes/views/permalink-manager-tools.php:253
1069
+ msgid "Select taxonomies"
1070
  msgstr ""
1071
 
1072
+ #: includes/core/permalink-manager-admin-functions.php:157
1073
+ #: includes/views/permalink-manager-settings.php:14
1074
+ msgid "Settings"
1075
  msgstr ""
1076
 
1077
+ #: includes/views/permalink-manager-settings.php:182
1078
+ msgid "Show \"Native slug\" field in URI Editor"
1079
  msgstr ""
1080
 
1081
+ #: includes/core/permalink-manager-admin-functions.php:435
1082
+ msgid "Show additional settings"
 
 
 
 
1083
  msgstr ""
1084
 
1085
+ #: includes/core/permalink-manager-admin-functions.php:690
1086
+ msgid "Show more details"
1087
  msgstr ""
1088
 
1089
+ #: includes/core/permalink-manager-actions.php:659
1090
+ msgid "Sitemaps were updated!"
1091
  msgstr ""
1092
 
1093
+ #: includes/views/permalink-manager-uri-editor-post.php:114
1094
+ #: includes/views/permalink-manager-uri-editor-tax.php:95
1095
+ msgid "Slug"
1096
  msgstr ""
1097
 
1098
+ #: includes/views/permalink-manager-settings.php:48
1099
+ msgid "Slugs mode"
 
 
 
 
 
 
 
 
 
 
1100
  msgstr ""
1101
 
1102
+ #: includes/core/permalink-manager-pro-functions.php:206
1103
+ msgid "Spanish"
1104
  msgstr ""
1105
 
1106
+ #: includes/views/permalink-manager-tools.php:30
1107
+ msgid "Stop Words"
1108
  msgstr ""
1109
 
1110
+ #: includes/views/permalink-manager-settings.php:191
1111
+ msgid "Strip special characters"
1112
  msgstr ""
1113
 
1114
+ #: includes/views/permalink-manager-pro-addons.php:253
1115
+ msgid "Suggestions/feedback"
1116
  msgstr ""
1117
 
1118
+ #: includes/views/permalink-manager-pro-addons.php:101
1119
+ msgid "Support"
1120
  msgstr ""
1121
 
1122
+ #: includes/core/permalink-manager-pro-functions.php:207
1123
+ msgid "Swedish"
 
 
1124
  msgstr ""
1125
 
1126
+ #: includes/core/permalink-manager-admin-functions.php:262
1127
+ #: includes/views/permalink-manager-permastructs.php:36
1128
+ #: includes/views/permalink-manager-tools.php:163
1129
+ #: includes/views/permalink-manager-tools.php:240
1130
+ msgid "Taxonomies"
1131
  msgstr ""
1132
 
1133
+ #: includes/views/permalink-manager-pro-addons.php:248
1134
+ msgid "Technical support"
1135
  msgstr ""
1136
 
1137
+ #: includes/views/permalink-manager-uri-editor-tax.php:51
1138
+ msgid "Term title"
1139
  msgstr ""
1140
 
1141
+ #: includes/views/permalink-manager-uri-editor-post.php:101
1142
+ #: includes/views/permalink-manager-uri-editor-tax.php:112
1143
+ msgid ""
1144
+ "The above permalink will be automatically updated and is locked for editing."
1145
  msgstr ""
1146
 
1147
+ #: includes/core/permalink-manager-admin-functions.php:844
1148
+ msgid ""
1149
+ "The above permalink will be automatically updated to \"Default URI\" and is "
1150
+ "locked for editing."
1151
  msgstr ""
1152
 
1153
+ #: includes/views/permalink-manager-permastructs.php:76
1154
+ #, php-format
1155
+ msgid ""
1156
+ "The current permastructures settings will be applied <strong>only to the new "
1157
+ "posts & terms</strong>. To apply the <strong>new permastructures to existing "
1158
+ "posts and terms</strong>, please regenerate the custom permalinks <a "
1159
+ "href=\"%s\">here</a>."
1160
  msgstr ""
1161
 
1162
+ #: includes/core/permalink-manager-admin-functions.php:841
1163
+ msgid "The custom URI cannot be edited on frontpage."
1164
  msgstr ""
1165
 
1166
+ #: includes/core/permalink-manager-admin-functions.php:870
1167
+ msgid ""
1168
+ "The native slug is by default automatically used in native permalinks (when "
1169
+ "Permalink Manager is disabled)."
1170
  msgstr ""
1171
 
1172
+ #: includes/views/permalink-manager-settings.php:53
1173
+ msgid ""
1174
+ "The native slug is generated from the initial title after the post or term "
1175
+ "is published."
1176
  msgstr ""
1177
 
1178
+ #: includes/core/permalink-manager-actions.php:597
1179
+ msgid "The redirect was removed successfully!"
1180
  msgstr ""
1181
 
1182
+ #: includes/core/permalink-manager-actions.php:105
1183
+ msgid "The settings are saved!"
1184
  msgstr ""
1185
 
1186
+ #: includes/core/permalink-manager-pro-functions.php:513
1187
+ msgid ""
1188
+ "The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
1189
+ "blackfriday</strong> are equivalent."
1190
  msgstr ""
1191
 
1192
+ #: includes/views/permalink-manager-pro-addons.php:225
1193
+ msgid ""
1194
+ "Therefore, it is recommended to disable \"Custom Permalink\" and import old "
1195
+ "permalinks before using Permalink Manager Pro."
1196
  msgstr ""
1197
 
1198
+ #: includes/views/permalink-manager-settings.php:142
1199
+ msgid "Third party plugins"
1200
  msgstr ""
1201
 
1202
+ #: includes/views/permalink-manager-settings.php:74
1203
+ msgid ""
1204
+ "This feature will be also used to redirect (old) original permalinks to (new)"
1205
+ " custom permalinks set with Permalink Manager."
1206
  msgstr ""
1207
 
1208
+ #: includes/core/permalink-manager-admin-functions.php:1057
1209
+ #, php-format
1210
+ msgid ""
1211
+ "This functionality is available only in <a href=\"%s\" target=\"_blank\">"
1212
+ "Permalink Manager Pro</a>."
1213
  msgstr ""
1214
 
1215
+ #: includes/views/permalink-manager-settings.php:62
1216
+ msgid ""
1217
+ "This option can be used to alter the native settings and control if trailing "
1218
+ "slash should be added or removed from the end of posts & terms permalinks."
1219
  msgstr ""
1220
 
1221
+ #: includes/core/permalink-manager-admin-functions.php:663
1222
+ #: includes/core/permalink-manager-admin-functions.php:690
1223
+ msgid "Title"
1224
  msgstr ""
1225
 
1226
+ #: includes/views/permalink-manager-pro-addons.php:249
1227
+ #, php-format
1228
+ msgid ""
1229
+ "To find the answers on frequently asked questions and information about how "
1230
+ "to deal with the most common issues please go to the <strong>Knowledge "
1231
+ "Base</strong> using <a target=\"_blank\" href=\"%s\">this link</a>."
1232
  msgstr ""
1233
 
1234
  #: includes/views/permalink-manager-tools.php:200
1238
  "<strong>1-8, 10, 25</strong>."
1239
  msgstr ""
1240
 
1241
+ #: includes/views/permalink-manager-pro-addons.php:251
1242
+ msgid ""
1243
+ "To reduce the response time, please attach your licence key and if possible "
1244
+ "also: URL address of your website and screenshots explaining the issue."
1245
  msgstr ""
1246
 
1247
+ #: includes/views/permalink-manager-tools.php:15
1248
+ msgid "Tools"
1249
  msgstr ""
1250
 
1251
+ #: includes/views/permalink-manager-settings.php:59
1252
+ msgid "Trailing slashes"
1253
  msgstr ""
1254
 
1255
+ #: includes/views/permalink-manager-settings.php:133
1256
+ msgid "Trailing slashes redirect"
1257
  msgstr ""
1258
 
1259
+ #: includes/core/permalink-manager-pro-functions.php:208
1260
+ msgid "Turkish"
1261
  msgstr ""
1262
 
1263
+ #: includes/views/permalink-manager-pro-addons.php:182
1264
+ msgid "Type comma to separate the words."
1265
  msgstr ""
1266
 
1267
+ #: includes/views/permalink-manager-settings.php:162
1268
+ msgid "Ultimate Member support"
1269
  msgstr ""
1270
 
1271
+ #: includes/core/permalink-manager-admin-functions.php:286
1272
+ msgid "Unselect all"
1273
  msgstr ""
1274
 
1275
+ #: includes/core/permalink-manager-admin-functions.php:596
1276
+ msgid "Upgrade to PRO"
1277
  msgstr ""
1278
 
1279
+ #: includes/core/permalink-manager-actions.php:565
1280
+ #, php-format
1281
+ msgid "URI \"%s\" was removed successfully!"
1282
  msgstr ""
1283
 
1284
+ #: includes/core/permalink-manager-actions.php:577
1285
+ msgid "URI and/or custom redirects does not exist or were already removed!"
1286
  msgstr ""
1287
 
1288
+ #: includes/core/permalink-manager-admin-functions.php:156
1289
+ msgid "URI Editor"
1290
  msgstr ""
1291
 
1292
+ #: includes/views/permalink-manager-uri-editor.php:28
1293
+ msgid "URI editor"
1294
  msgstr ""
1295
 
1296
+ #: includes/views/permalink-manager-settings.php:205
1297
+ msgid "URI Editor role capability"
1298
  msgstr ""
1299
 
1300
+ #: includes/core/permalink-manager-actions.php:627
1301
+ msgid "URI is already in use, please select another one!"
1302
  msgstr ""
1303
 
1304
+ #: includes/views/permalink-manager-settings.php:50
1305
+ msgid "Use actual titles as slugs"
1306
  msgstr ""
1307
 
1308
+ #: includes/views/permalink-manager-settings.php:61
1309
+ msgid "Use default settings"
1310
  msgstr ""
1311
 
1312
+ #: includes/core/permalink-manager-admin-functions.php:812
1313
+ #, php-format
1314
+ msgid "Use global settings [%s]"
1315
  msgstr ""
1316
 
1317
+ #: includes/views/permalink-manager-settings.php:50
1318
+ msgid "Use native slugs"
1319
  msgstr ""
1320
 
1321
+ #: includes/views/permalink-manager-tools.php:228
1322
+ msgid "Use original URLs as custom permalinks"
1323
  msgstr ""
1324
 
1325
+ #: includes/views/permalink-manager-settings.php:54
1326
+ msgid ""
1327
+ "Use this field if you would like Permalink Manager to use the actual titles "
1328
+ "instead of native slugs."
1329
  msgstr ""
1330
 
1331
+ #: includes/views/permalink-manager-uri-editor-post.php:121
1332
+ #: includes/views/permalink-manager-uri-editor-tax.php:101
1333
+ #: includes/views/permalink-manager-uri-editor-tax.php:101
1334
+ msgid "View"
1335
  msgstr ""
1336
 
1337
+ #: includes/views/permalink-manager-permastructs.php:46
1338
+ msgid "WooCommerce"
1339
  msgstr ""
1340
 
1341
+ #: includes/views/permalink-manager-settings.php:155
1342
+ msgid "WP All Import support"
1343
  msgstr ""
1344
 
1345
+ #: includes/views/permalink-manager-settings.php:148
1346
+ msgid "WPML/Polylang language mismatch"
1347
+ msgstr ""
1348
+
1349
+ #: includes/core/permalink-manager-admin-functions.php:810
1350
+ #: includes/core/permalink-manager-admin-functions.php:813
1351
+ msgid "Yes"
1352
+ msgstr ""
1353
+
1354
+ #: includes/views/permalink-manager-settings.php:193
1355
+ #: includes/views/permalink-manager-settings.php:200
1356
+ msgid "Yes, use native settings"
1357
+ msgstr ""
1358
+
1359
+ #: includes/core/permalink-manager-actions.php:391
1360
+ msgid "You are not allowed to remove Permalink Manager data!"
1361
+ msgstr ""
1362
+
1363
+ #: includes/views/permalink-manager-settings.php:108
1364
  msgid ""
1365
+ "You can disable this feature if you do not want Permalink Manager to trigger "
1366
+ "any additional redirect functions at all."
1367
  msgstr ""
1368
 
1369
+ #: includes/views/permalink-manager-settings.php:119
1370
+ msgid ""
1371
+ "You can disable this feature if you would like to use another plugin for "
1372
+ "redirects, eg. Yoast SEO Premium or Redirection."
1373
  msgstr ""
1374
 
1375
+ #: includes/core/permalink-manager-pro-functions.php:141
1376
+ msgid "You own a lifetime licence key."
1377
  msgstr ""
1378
 
1379
+ #: includes/core/permalink-manager-pro-functions.php:146
1380
+ #, php-format
1381
+ msgid ""
1382
+ "Your licence key is valid until %s.<br />To prolong it please go to <a "
1383
+ "href=\"%s\" target=\"_blank\">this page</a> for more information."
1384
+ msgstr ""
1385
+
1386
+ #: includes/core/permalink-manager-pro-functions.php:136
1387
+ #, php-format
1388
+ msgid ""
1389
+ "Your Permalink Manager Pro licence key expired! To restore access to plugin "
1390
+ "updates & technical support please go to <a href=\"%s\" target=\"_blank\">"
1391
+ "this page</a>."
1392
+ msgstr ""
1393
+
1394
+ #: includes/core/permalink-manager-pro-functions.php:131
1395
+ msgid "Your Permalink Manager Pro licence key is invalid!"
1396
  msgstr ""
out/permalink-manager-admin.css CHANGED
@@ -67,6 +67,8 @@
67
  #permalink-manager .checkboxes{margin-left:-15px;margin-right:15px;overflow:hidden;display:block}
68
  #permalink-manager .checkboxes > label{display:inline-block;width:33%;float:left;padding:0 15px;box-sizing:border-box;padding-bottom:5px;overflow:hidden}
69
  #permalink-manager .checkboxes > label:nth-of-type(3n+1){clear:both}
 
 
70
  #permalink-manager .field-description{font-size:12px}
71
  #permalink-manager .appended-row td{padding-left:0;padding-right:0}
72
  #permalink-manager #tools{margin:0 -15px;padding:0 15px 15px}
67
  #permalink-manager .checkboxes{margin-left:-15px;margin-right:15px;overflow:hidden;display:block}
68
  #permalink-manager .checkboxes > label{display:inline-block;width:33%;float:left;padding:0 15px;box-sizing:border-box;padding-bottom:5px;overflow:hidden}
69
  #permalink-manager .checkboxes > label:nth-of-type(3n+1){clear:both}
70
+ #permalink-manager .checkboxes > p{font-weight:bold;margin-left:15px;display:block;clear:both;margin-bottom:5px}
71
+ #permalink-manager .checkboxes > label + p{padding-top:15px}
72
  #permalink-manager .field-description{font-size:12px}
73
  #permalink-manager .appended-row td{padding-left:0;padding-right:0}
74
  #permalink-manager #tools{margin:0 -15px;padding:0 15px 15px}
out/permalink-manager-admin.js CHANGED
@@ -167,7 +167,7 @@ jQuery(document).ready(function() {
167
  type: 'POST',
168
  async: true,
169
  data: {
170
- action: 'detect_duplicates',
171
  custom_uris: all_custom_uris_values
172
  },
173
  success: function(data) {
@@ -572,8 +572,6 @@ jQuery(document).ready(function() {
572
  custom_uri_field.attr('readonly', 'readonly');
573
  }
574
 
575
- console.log(auto_update);
576
-
577
  // Set the element ID
578
  jQuery('#edit-' + post_id).find('.permalink-manager-edit-uri-element-id').val(post_id);
579
  }
167
  type: 'POST',
168
  async: true,
169
  data: {
170
+ action: 'pm_detect_duplicates',
171
  custom_uris: all_custom_uris_values
172
  },
173
  success: function(data) {
572
  custom_uri_field.attr('readonly', 'readonly');
573
  }
574
 
 
 
575
  // Set the element ID
576
  jQuery('#edit-' + post_id).find('.permalink-manager-edit-uri-element-id').val(post_id);
577
  }
out/permalink-manager-gutenberg.js ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*var el = wp.element.createElement;
2
+ var registerPlugin = wp.plugins.registerPlugin;
3
+ var Text = wp.components.Text;
4
+ var PluginDocumentSettingPanel = wp.editPost.PluginDocumentSettingPanel;
5
+
6
+ function PermalinkManagerURIEditor() {
7
+ const post_ID = wp.data.select("core/editor").getCurrentPostId();
8
+
9
+ return el(
10
+ PluginDocumentSettingPanel,
11
+ {
12
+ className: 'pm-urieditor',
13
+ title: 'Permalink Manager',
14
+ id: 'permalink-manager'
15
+ },
16
+ el( 'div',
17
+ { id: 'permalink-manager' },
18
+ el( 'div',
19
+ { className: 'inside' },
20
+ '-'
21
+ )
22
+ )
23
+ );
24
+ }
25
+
26
+ registerPlugin( 'pm-urieditor', {
27
+ icon: 'admin-links',
28
+ render: PermalinkManagerURIEditor
29
+ } );*/
permalink-manager.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Permalink Manager Lite
5
  * Plugin URI: https://permalinkmanager.pro?utm_source=plugin
6
  * Description: Advanced plugin that allows to set-up custom permalinks (bulk editors included), slugs and permastructures (WooCommerce compatible).
7
- * Version: 2.2.9.4
8
  * Author: Maciej Bis
9
  * Author URI: http://maciejbis.net/
10
  * License: GPL-2.0+
@@ -25,7 +25,7 @@ if(!class_exists('Permalink_Manager_Class')) {
25
  // Define the directories used to load plugin files.
26
  define( 'PERMALINK_MANAGER_PLUGIN_NAME', 'Permalink Manager' );
27
  define( 'PERMALINK_MANAGER_PLUGIN_SLUG', 'permalink-manager' );
28
- define( 'PERMALINK_MANAGER_VERSION', '2.2.9.3' );
29
  define( 'PERMALINK_MANAGER_FILE', __FILE__ );
30
  define( 'PERMALINK_MANAGER_DIR', untrailingslashit(dirname(__FILE__)) );
31
  define( 'PERMALINK_MANAGER_BASENAME', plugin_basename(__FILE__));
@@ -58,6 +58,7 @@ if(!class_exists('Permalink_Manager_Class')) {
58
  $classes = array(
59
  'core' => array(
60
  'helper-functions' => 'Permalink_Manager_Helper_Functions',
 
61
  'uri-functions-post' => 'Permalink_Manager_URI_Functions_Post',
62
  'uri-functions-tax' => 'Permalink_Manager_URI_Functions_Tax',
63
  'admin-functions' => 'Permalink_Manager_Admin_Functions',
@@ -180,6 +181,7 @@ if(!class_exists('Permalink_Manager_Class')) {
180
  'post_types' => array('attachment', 'tribe_events')
181
  ),
182
  'deep_detect' => 1,
 
183
  'edit_uris_cap' => 'publish_posts',
184
  ),
185
  'licence' => array()
4
  * Plugin Name: Permalink Manager Lite
5
  * Plugin URI: https://permalinkmanager.pro?utm_source=plugin
6
  * Description: Advanced plugin that allows to set-up custom permalinks (bulk editors included), slugs and permastructures (WooCommerce compatible).
7
+ * Version: 2.2.9.6
8
  * Author: Maciej Bis
9
  * Author URI: http://maciejbis.net/
10
  * License: GPL-2.0+
25
  // Define the directories used to load plugin files.
26
  define( 'PERMALINK_MANAGER_PLUGIN_NAME', 'Permalink Manager' );
27
  define( 'PERMALINK_MANAGER_PLUGIN_SLUG', 'permalink-manager' );
28
+ define( 'PERMALINK_MANAGER_VERSION', '2.2.9.6' );
29
  define( 'PERMALINK_MANAGER_FILE', __FILE__ );
30
  define( 'PERMALINK_MANAGER_DIR', untrailingslashit(dirname(__FILE__)) );
31
  define( 'PERMALINK_MANAGER_BASENAME', plugin_basename(__FILE__));
58
  $classes = array(
59
  'core' => array(
60
  'helper-functions' => 'Permalink_Manager_Helper_Functions',
61
+ 'uri-functions' => 'Permalink_Manager_URI_Functions',
62
  'uri-functions-post' => 'Permalink_Manager_URI_Functions_Post',
63
  'uri-functions-tax' => 'Permalink_Manager_URI_Functions_Tax',
64
  'admin-functions' => 'Permalink_Manager_Admin_Functions',
181
  'post_types' => array('attachment', 'tribe_events')
182
  ),
183
  'deep_detect' => 1,
184
+ 'ignore_drafts' => 0,
185
  'edit_uris_cap' => 'publish_posts',
186
  ),
187
  'licence' => array()