Version Description
(October 10, 2022) = * Fix - The URLs with duplicated slashes (eg. example.com/sample-page////) are now handled correctly and forwarded to the canonical URL. * Fix - The redirect problem was resolved with WPForo versions after 2.0.1 * Dev - Improved compatibility with the WP All Import plugin functions * Dev - Improved compatibility with Polylang plugin * Dev - Better support for ACF Relationship fields * Dev - The plugin no longer (by default) supports custom post types & taxonomies that do not have the "query_var" and "rewrite" properties set * Enhancement - In "Exclude drafts" mode, the URI Editor field in the "Quick Edit" section becomes "read-only" for the "Draft" posts.
Download this release
Release Info
Developer | mbis |
Plugin | Permalink Manager Lite |
Version | 2.2.20 |
Comparing to | |
See all releases |
Code changes from version 2.2.19.3 to 2.2.20
- README.txt +11 -2
- includes/core/permalink-manager-core-functions.php +1 -1
- includes/core/permalink-manager-gutenberg.php +5 -0
- includes/core/permalink-manager-helper-functions.php +3 -8
- includes/core/permalink-manager-language-plugins.php +24 -6
- includes/core/permalink-manager-third-parties.php +31 -5
- includes/core/permalink-manager-uri-functions-post.php +12 -4
- includes/views/permalink-manager-settings.php +7 -2
- languages/permalink-manager-ja.mo +0 -0
- languages/permalink-manager-ja.po +181 -167
- languages/permalink-manager.pot +100 -86
- out/permalink-manager-admin.js +2 -2
- permalink-manager.php +5 -4
README.txt
CHANGED
@@ -6,8 +6,8 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
6 |
Tags: permalinks, custom permalinks, permalink, woocommerce permalinks, url editor
|
7 |
Requires at least: 4.4.0
|
8 |
Requires PHP: 5.4
|
9 |
-
Tested up to: 6.0.
|
10 |
-
Stable tag: 2.2.
|
11 |
|
12 |
Permalink Manager lets you customize the complete URL addresses of your posts, pages, custom post types, terms, and WooCommerce links with ease without touching any core files.
|
13 |
|
@@ -93,6 +93,15 @@ It is because Permalink Manager overwrites one of the core Wordpress functionali
|
|
93 |
|
94 |
== Changelog ==
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
= 2.2.19.3 (August 11, 2022) =
|
97 |
* Dev - New filter added - 'permalink_manager_pre_sanitize_title'
|
98 |
* Fix - The old slugs are saved in the '_wp_old_slug' meta key even if the native slugs are changed in the URI Editor in the Gutenberg mode.
|
6 |
Tags: permalinks, custom permalinks, permalink, woocommerce permalinks, url editor
|
7 |
Requires at least: 4.4.0
|
8 |
Requires PHP: 5.4
|
9 |
+
Tested up to: 6.0.3
|
10 |
+
Stable tag: 2.2.20
|
11 |
|
12 |
Permalink Manager lets you customize the complete URL addresses of your posts, pages, custom post types, terms, and WooCommerce links with ease without touching any core files.
|
13 |
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 2.2.20 (October 10, 2022) =
|
97 |
+
* Fix - The URLs with duplicated slashes (eg. example.com/sample-page////) are now handled correctly and forwarded to the canonical URL.
|
98 |
+
* Fix - The redirect problem was resolved with WPForo versions after 2.0.1
|
99 |
+
* Dev - Improved compatibility with the WP All Import plugin functions
|
100 |
+
* Dev - Improved compatibility with Polylang plugin
|
101 |
+
* Dev - Better support for ACF Relationship fields
|
102 |
+
* Dev - The plugin no longer (by default) supports custom post types & taxonomies that do not have the "query_var" and "rewrite" properties set
|
103 |
+
* Enhancement - In "Exclude drafts" mode, the URI Editor field in the "Quick Edit" section becomes "read-only" for the "Draft" posts.
|
104 |
+
|
105 |
= 2.2.19.3 (August 11, 2022) =
|
106 |
* Dev - New filter added - 'permalink_manager_pre_sanitize_title'
|
107 |
* Fix - The old slugs are saved in the '_wp_old_slug' meta key even if the native slugs are changed in the URI Editor in the Gutenberg mode.
|
includes/core/permalink-manager-core-functions.php
CHANGED
@@ -714,7 +714,7 @@ class Permalink_Manager_Core_Functions extends Permalink_Manager_Class {
|
|
714 |
/**
|
715 |
* 3. Prevent redirect loop
|
716 |
*/
|
717 |
-
if(!empty($correct_permalink) && is_string($correct_permalink) && !empty($wp->request) && !empty($redirect_type) && $redirect_type
|
718 |
$current_uri = trim($wp->request, "/");
|
719 |
$redirect_uri = trim(parse_url($correct_permalink, PHP_URL_PATH), "/");
|
720 |
|
714 |
/**
|
715 |
* 3. Prevent redirect loop
|
716 |
*/
|
717 |
+
if(!empty($correct_permalink) && is_string($correct_permalink) && !empty($wp->request) && !empty($redirect_type) && !in_array($redirect_type, array('slash_redirect', 'duplicated_slash_redirect'))) {
|
718 |
$current_uri = trim($wp->request, "/");
|
719 |
$redirect_uri = trim(parse_url($correct_permalink, PHP_URL_PATH), "/");
|
720 |
|
includes/core/permalink-manager-gutenberg.php
CHANGED
@@ -25,6 +25,11 @@ class Permalink_Manager_Gutenberg extends Permalink_Manager_Class {
|
|
25 |
return;
|
26 |
}
|
27 |
|
|
|
|
|
|
|
|
|
|
|
28 |
// Check if the post is excluded
|
29 |
if(!empty($post->ID) && Permalink_Manager_Helper_Functions::is_post_excluded($post)) {
|
30 |
return;
|
25 |
return;
|
26 |
}
|
27 |
|
28 |
+
// Check the user capabilities
|
29 |
+
if(Permalink_Manager_Admin_Functions::current_user_can_edit_uris() === false) {
|
30 |
+
return;
|
31 |
+
}
|
32 |
+
|
33 |
// Check if the post is excluded
|
34 |
if(!empty($post->ID) && Permalink_Manager_Helper_Functions::is_post_excluded($post)) {
|
35 |
return;
|
includes/core/permalink-manager-helper-functions.php
CHANGED
@@ -134,7 +134,7 @@ class Permalink_Manager_Helper_Functions extends Permalink_Manager_Class {
|
|
134 |
|
135 |
// A. Inherit the custom permalink from the term
|
136 |
if($mode == 1) {
|
137 |
-
$term_slug = $permalink_manager_uris["tax-{$term->term_id}"];
|
138 |
}
|
139 |
// B. Hierarhcical taxonomy base
|
140 |
else if($mode == 2) {
|
@@ -196,9 +196,7 @@ class Permalink_Manager_Helper_Functions extends Permalink_Manager_Class {
|
|
196 |
|
197 |
// 1. Disable post types that are not publicly_queryable
|
198 |
foreach($wp_post_types as $post_type) {
|
199 |
-
$
|
200 |
-
|
201 |
-
if(!$is_publicly_queryable && !in_array($post_type->name, array('post', 'page', 'attachment'))) {
|
202 |
$disabled_post_types[] = $post_type->name;
|
203 |
}
|
204 |
}
|
@@ -220,9 +218,7 @@ class Permalink_Manager_Helper_Functions extends Permalink_Manager_Class {
|
|
220 |
|
221 |
// 1. Disable taxonomies that are not publicly_queryable
|
222 |
foreach($wp_taxonomies as $taxonomy) {
|
223 |
-
$
|
224 |
-
|
225 |
-
if(!$is_publicly_queryable && !in_array($taxonomy->name, array('category', 'post_tag'))) {
|
226 |
$disabled_taxonomies[] = $taxonomy->name;
|
227 |
}
|
228 |
}
|
@@ -797,5 +793,4 @@ class Permalink_Manager_Helper_Functions extends Permalink_Manager_Class {
|
|
797 |
}
|
798 |
}
|
799 |
|
800 |
-
|
801 |
}
|
134 |
|
135 |
// A. Inherit the custom permalink from the term
|
136 |
if($mode == 1) {
|
137 |
+
$term_slug = (!empty($permalink_manager_uris["tax-{$term->term_id}"])) ? $permalink_manager_uris["tax-{$term->term_id}"] : '';
|
138 |
}
|
139 |
// B. Hierarhcical taxonomy base
|
140 |
else if($mode == 2) {
|
196 |
|
197 |
// 1. Disable post types that are not publicly_queryable
|
198 |
foreach($wp_post_types as $post_type) {
|
199 |
+
if(!is_post_type_viewable($post_type) || (empty($post_type->query_var) && empty($post_type->rewrite) && empty($post_type->_builtin) && !empty($permalink_manager_options['general']['partial_disable_strict']))) {
|
|
|
|
|
200 |
$disabled_post_types[] = $post_type->name;
|
201 |
}
|
202 |
}
|
218 |
|
219 |
// 1. Disable taxonomies that are not publicly_queryable
|
220 |
foreach($wp_taxonomies as $taxonomy) {
|
221 |
+
if(!is_taxonomy_viewable($taxonomy) || (empty($taxonomy->query_var) && empty($taxonomy->rewrite) && empty($taxonomy->_builtin) && !empty($permalink_manager_options['general']['partial_disable_strict']))) {
|
|
|
|
|
222 |
$disabled_taxonomies[] = $taxonomy->name;
|
223 |
}
|
224 |
}
|
793 |
}
|
794 |
}
|
795 |
|
|
|
796 |
}
|
includes/core/permalink-manager-language-plugins.php
CHANGED
@@ -120,7 +120,7 @@ class Permalink_Manager_Language_Plugins extends Permalink_Manager_Class {
|
|
120 |
* WPML/Polylang/TranslatePress filters
|
121 |
*/
|
122 |
public static function get_language_code($element) {
|
123 |
-
global $TRP_LANGUAGE, $translate_press_settings, $icl_adjust_id_url_filter_off, $sitepress, $wpml_post_translations, $wpml_term_translations;
|
124 |
|
125 |
// Disable WPML adjust ID filter
|
126 |
$icl_adjust_id_url_filter_off = true;
|
@@ -137,9 +137,17 @@ class Permalink_Manager_Language_Plugins extends Permalink_Manager_Class {
|
|
137 |
if(!empty($TRP_LANGUAGE)) {
|
138 |
$lang_code = self::get_translatepress_language_code($TRP_LANGUAGE);
|
139 |
}
|
140 |
-
// B.
|
141 |
-
else {
|
142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
if(isset($element->post_type)) {
|
145 |
$element_id = $element->ID;
|
@@ -240,7 +248,7 @@ class Permalink_Manager_Language_Plugins extends Permalink_Manager_Class {
|
|
240 |
}
|
241 |
|
242 |
function fix_language_mismatch($item_id, $uri_parts, $is_term = false) {
|
243 |
-
global $wp, $language_code, $permalink_manager_options;
|
244 |
|
245 |
$mode = (!empty($permalink_manager_options['general']['fix_language_mismatch'])) ? $permalink_manager_options['general']['fix_language_mismatch'] : 0;
|
246 |
|
@@ -279,7 +287,17 @@ class Permalink_Manager_Language_Plugins extends Permalink_Manager_Class {
|
|
279 |
if($detected_language_code !== $element_language_code) {
|
280 |
// A. Display the content in requested language
|
281 |
if($mode == 1) {
|
282 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
}
|
284 |
// C. Display "404 error"
|
285 |
else {
|
120 |
* WPML/Polylang/TranslatePress filters
|
121 |
*/
|
122 |
public static function get_language_code($element) {
|
123 |
+
global $TRP_LANGUAGE, $translate_press_settings, $icl_adjust_id_url_filter_off, $sitepress, $polylang, $wpml_post_translations, $wpml_term_translations;
|
124 |
|
125 |
// Disable WPML adjust ID filter
|
126 |
$icl_adjust_id_url_filter_off = true;
|
137 |
if(!empty($TRP_LANGUAGE)) {
|
138 |
$lang_code = self::get_translatepress_language_code($TRP_LANGUAGE);
|
139 |
}
|
140 |
+
// B. Polylang
|
141 |
+
else if(!empty($polylang) && function_exists('pll_get_post_language')) {
|
142 |
+
if(isset($element->post_type)) {
|
143 |
+
$lang_code = pll_get_post_language($element->ID, 'slug');
|
144 |
+
} else if(isset($element->taxonomy)) {
|
145 |
+
$lang_code = pll_get_term_language($element->term_id, 'slug');
|
146 |
+
}
|
147 |
+
}
|
148 |
+
// C. WPML
|
149 |
+
else if(!empty($sitepress)) {
|
150 |
+
$is_wpml_compatible = (method_exists($sitepress, 'is_display_as_translated_post_type')) ? self::is_wpml_compatible() : false;
|
151 |
|
152 |
if(isset($element->post_type)) {
|
153 |
$element_id = $element->ID;
|
248 |
}
|
249 |
|
250 |
function fix_language_mismatch($item_id, $uri_parts, $is_term = false) {
|
251 |
+
global $wp, $polylang, $language_code, $permalink_manager_options;
|
252 |
|
253 |
$mode = (!empty($permalink_manager_options['general']['fix_language_mismatch'])) ? $permalink_manager_options['general']['fix_language_mismatch'] : 0;
|
254 |
|
287 |
if($detected_language_code !== $element_language_code) {
|
288 |
// A. Display the content in requested language
|
289 |
if($mode == 1) {
|
290 |
+
if(!empty($polylang)) {
|
291 |
+
if(function_exists('pll_get_post') && !$is_term) {
|
292 |
+
$translated_item_id = pll_get_post($element_id, $detected_language_code);
|
293 |
+
} else if(function_exists('pll_get_term') && $is_term) {
|
294 |
+
$translated_item_id = pll_get_term($element_id, $detected_language_code);
|
295 |
+
}
|
296 |
+
|
297 |
+
$item_id = (!empty($translated_item_id)) ? $translated_item_id : $item_id;
|
298 |
+
} else {
|
299 |
+
$item_id = apply_filters('wpml_object_id', $element_id, $element_type);
|
300 |
+
}
|
301 |
}
|
302 |
// C. Display "404 error"
|
303 |
else {
|
includes/core/permalink-manager-third-parties.php
CHANGED
@@ -109,7 +109,7 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
|
|
109 |
|
110 |
// 11. WP All Export
|
111 |
if(class_exists('PMXE_Plugin') && (!empty($permalink_manager_options['general']['pmxi_support']))) {
|
112 |
-
add_filter('
|
113 |
add_filter('wp_all_export_available_data', array($this, 'wpae_custom_uri_section_fields'), 9);
|
114 |
add_filter('wp_all_export_csv_rows', array($this,'wpae_export_custom_uri'), 10, 2);
|
115 |
}
|
@@ -236,10 +236,18 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
|
|
236 |
else if(!empty($_POST['_cs_nonce'])) {
|
237 |
$wp_query->query_vars['do_not_redirect'] = 1;
|
238 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
}
|
240 |
|
241 |
// WPForo
|
242 |
-
if(
|
243 |
$forum_page_id = get_option('wpforo_pageid');
|
244 |
|
245 |
if(!empty($forum_page_id) && !empty($post->ID) && $forum_page_id == $post->ID) {
|
@@ -249,10 +257,10 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
|
|
249 |
}
|
250 |
|
251 |
/**
|
252 |
-
* 2. AMP hooks
|
253 |
*/
|
254 |
function detect_amp($uri_parts, $request_url) {
|
255 |
-
global $amp_enabled;
|
256 |
$amp_query_var = AMP_QUERY_VAR;
|
257 |
|
258 |
// Check if AMP should be triggered
|
@@ -1019,9 +1027,27 @@ class Permalink_Manager_Third_Parties extends Permalink_Manager_Class {
|
|
1019 |
}
|
1020 |
|
1021 |
function wpae_export_custom_uri($articles, $options) {
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
foreach($articles as &$article) {
|
1023 |
if(!empty($article['id'])) {
|
1024 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1025 |
}
|
1026 |
}
|
1027 |
|
109 |
|
110 |
// 11. WP All Export
|
111 |
if(class_exists('PMXE_Plugin') && (!empty($permalink_manager_options['general']['pmxi_support']))) {
|
112 |
+
add_filter('wp_all_export_available_sections', array($this, 'wpae_custom_uri_section'), 9);
|
113 |
add_filter('wp_all_export_available_data', array($this, 'wpae_custom_uri_section_fields'), 9);
|
114 |
add_filter('wp_all_export_csv_rows', array($this,'wpae_export_custom_uri'), 10, 2);
|
115 |
}
|
236 |
else if(!empty($_POST['_cs_nonce'])) {
|
237 |
$wp_query->query_vars['do_not_redirect'] = 1;
|
238 |
}
|
239 |
+
// Tutor LMS
|
240 |
+
else if(!empty($query_vars['tutor_dashboard_page'])) {
|
241 |
+
$wp_query->query_vars['do_not_redirect'] = 1;
|
242 |
+
}
|
243 |
+
// AMP
|
244 |
+
else if(function_exists('amp_get_slug') && array_key_exists(amp_get_slug(), $query_vars)) {
|
245 |
+
$wp_query->query_vars['do_not_redirect'] = 1;
|
246 |
+
}
|
247 |
}
|
248 |
|
249 |
// WPForo
|
250 |
+
if(defined('WPFORO_VERSION')) {
|
251 |
$forum_page_id = get_option('wpforo_pageid');
|
252 |
|
253 |
if(!empty($forum_page_id) && !empty($post->ID) && $forum_page_id == $post->ID) {
|
257 |
}
|
258 |
|
259 |
/**
|
260 |
+
* 2. AMP hooks (support for older versions)
|
261 |
*/
|
262 |
function detect_amp($uri_parts, $request_url) {
|
263 |
+
global $amp_enabled, $wp;
|
264 |
$amp_query_var = AMP_QUERY_VAR;
|
265 |
|
266 |
// Check if AMP should be triggered
|
1027 |
}
|
1028 |
|
1029 |
function wpae_export_custom_uri($articles, $options) {
|
1030 |
+
if((!empty($options['selected_post_type']) && $options['selected_post_type'] == 'taxonomies') || !empty($options['is_taxonomy_export'])) {
|
1031 |
+
$is_term = true;
|
1032 |
+
} else {
|
1033 |
+
$is_term = false;
|
1034 |
+
}
|
1035 |
+
|
1036 |
foreach($articles as &$article) {
|
1037 |
if(!empty($article['id'])) {
|
1038 |
+
$item_id = $article['id'];
|
1039 |
+
} else if(!empty($article['ID'])) {
|
1040 |
+
$item_id = $article['ID'];
|
1041 |
+
} else if(!empty($article['Term ID'])) {
|
1042 |
+
$item_id = $article['Term ID'];
|
1043 |
+
} else {
|
1044 |
+
continue;
|
1045 |
+
}
|
1046 |
+
|
1047 |
+
if(!empty($is_term)) {
|
1048 |
+
$article['Custom URI'] = Permalink_Manager_URI_Functions_Tax::get_term_uri($item_id);
|
1049 |
+
} else {
|
1050 |
+
$article['Custom URI'] = Permalink_Manager_URI_Functions_Post::get_post_uri($item_id);
|
1051 |
}
|
1052 |
}
|
1053 |
|
includes/core/permalink-manager-uri-functions-post.php
CHANGED
@@ -715,12 +715,20 @@ class Permalink_Manager_URI_Functions_Post extends Permalink_Manager_Class {
|
|
715 |
global $permalink_manager_uris, $permalink_manager_options;
|
716 |
|
717 |
if($column_name == "permalink-manager-col") {
|
718 |
-
|
719 |
-
|
720 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
721 |
|
722 |
$uri = (!empty($permalink_manager_uris[$post_id])) ? rawurldecode($permalink_manager_uris[$post_id]) : self::get_post_uri($post_id, true);
|
723 |
-
printf('<span class="permalink-manager-col-uri" data-readonly="%s">%s</span>', intval($
|
724 |
}
|
725 |
}
|
726 |
|
715 |
global $permalink_manager_uris, $permalink_manager_options;
|
716 |
|
717 |
if($column_name == "permalink-manager-col") {
|
718 |
+
$exclude_drafts = (isset($permalink_manager_options['general']['ignore_drafts'])) ? $permalink_manager_options['general']['ignore_drafts'] : false;
|
719 |
+
|
720 |
+
// A. Disable the "Quick Edit" form for draft posts if "Exclude drafts" option is turned on
|
721 |
+
if($exclude_drafts && get_post_status($post_id) == 'draft') {
|
722 |
+
$readonly = 1;
|
723 |
+
}
|
724 |
+
// B. Get auto-update settings
|
725 |
+
else {
|
726 |
+
$auto_update_val = get_post_meta($post_id, "auto_update_uri", true);
|
727 |
+
$readonly = (!empty($auto_update_val)) ? $auto_update_val : $permalink_manager_options["general"]["auto_update_uris"];
|
728 |
+
}
|
729 |
|
730 |
$uri = (!empty($permalink_manager_uris[$post_id])) ? rawurldecode($permalink_manager_uris[$post_id]) : self::get_post_uri($post_id, true);
|
731 |
+
printf('<span class="permalink-manager-col-uri" data-readonly="%s">%s</span>', intval($readonly), $uri);
|
732 |
}
|
733 |
}
|
734 |
|
includes/views/permalink-manager-settings.php
CHANGED
@@ -193,9 +193,9 @@ class Permalink_Manager_Settings extends Permalink_Manager_Class {
|
|
193 |
),
|
194 |
'pmxi_support' => array(
|
195 |
'type' => 'single_checkbox',
|
196 |
-
'label' => __('WP All Import support', 'permalink-manager'),
|
197 |
'input_class' => '',
|
198 |
-
'class_exists' => 'PMXI_Plugin',
|
199 |
'description' => __('If disabled, the custom permalinks <strong>will not be saved</strong> for the posts imported with WP All Import plugin.', 'permalink-manager')
|
200 |
),
|
201 |
'um_support' => array(
|
@@ -228,6 +228,11 @@ class Permalink_Manager_Settings extends Permalink_Manager_Class {
|
|
228 |
'type' => 'single_checkbox',
|
229 |
'label' => __('Show "Native slug" field in URI Editor', 'permalink-manager')
|
230 |
),
|
|
|
|
|
|
|
|
|
|
|
231 |
'pagination_redirect' => array(
|
232 |
'type' => 'single_checkbox',
|
233 |
'label' => __('Force 404 on non-existing pagination pages', 'permalink-manager'),
|
193 |
),
|
194 |
'pmxi_support' => array(
|
195 |
'type' => 'single_checkbox',
|
196 |
+
'label' => __('WP All Import/Export support', 'permalink-manager'),
|
197 |
'input_class' => '',
|
198 |
+
'class_exists' => array('PMXI_Plugin', 'PMXE_Plugin'),
|
199 |
'description' => __('If disabled, the custom permalinks <strong>will not be saved</strong> for the posts imported with WP All Import plugin.', 'permalink-manager')
|
200 |
),
|
201 |
'um_support' => array(
|
228 |
'type' => 'single_checkbox',
|
229 |
'label' => __('Show "Native slug" field in URI Editor', 'permalink-manager')
|
230 |
),
|
231 |
+
'partial_disable_strict' => array(
|
232 |
+
'type' => 'single_checkbox',
|
233 |
+
'label' => __('"Exclude content types" strict mode', 'permalink-manager'),
|
234 |
+
'description' => __('If this option is enabled, any custom post types and taxonomies with the "<strong>query_var</strong>" and "<strong>rewrite</strong>" attributes set to "<em>false</em>" will be excluded from the plugin and hence will not be shown in the "<em>General settings -> Exclude content types</em>" options.', 'permalink-manager')
|
235 |
+
),
|
236 |
'pagination_redirect' => array(
|
237 |
'type' => 'single_checkbox',
|
238 |
'label' => __('Force 404 on non-existing pagination pages', 'permalink-manager'),
|
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: 2022-
|
7 |
"Last-Translator: admin\n"
|
8 |
"Language-Team: Japanese\n"
|
9 |
"Language: ja\n"
|
@@ -22,10 +22,14 @@ msgstr ""
|
|
22 |
"<a href=\"mailto:contact@permalinkmanager.pro\">contact@permalinkmanager."
|
23 |
"pro</a>まで、ご意見をお送り下さい。"
|
24 |
|
25 |
-
#: includes/core/permalink-manager-third-parties.php:
|
26 |
msgid "\"Custom Permalinks\" URIs were imported!"
|
27 |
msgstr "「カスタム パーマリンク」URIは、インポートされました!"
|
28 |
|
|
|
|
|
|
|
|
|
29 |
#: includes/views/permalink-manager-settings.php:216
|
30 |
msgid "\"Primary category\" support"
|
31 |
msgstr ""
|
@@ -34,12 +38,12 @@ msgstr ""
|
|
34 |
msgid "\"Stop words\" list"
|
35 |
msgstr "「使用禁止の単語」リスト"
|
36 |
|
37 |
-
#: includes/core/permalink-manager-actions.php:
|
38 |
#, php-format
|
39 |
msgid "%d Custom URIs and %d Custom Redirects were removed!"
|
40 |
msgstr "%d カスタムURIと、%d カスタム リダイレクトは削除されました。"
|
41 |
|
42 |
-
#: includes/core/permalink-manager-actions.php:
|
43 |
#, php-format
|
44 |
msgid "%s were removed!"
|
45 |
msgstr "%s は削除されました!"
|
@@ -64,12 +68,12 @@ msgstr "301 リダイレクト"
|
|
64 |
msgid "302 redirect"
|
65 |
msgstr "302 リダイレクト"
|
66 |
|
67 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
68 |
#, php-format
|
69 |
msgid "<a %s>Click here</a> to go to the list of updated slugs"
|
70 |
msgstr "更新されたスラッグのリストは、<a %s>ここをクリック</a> "
|
71 |
|
72 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
73 |
#, php-format
|
74 |
msgid "<strong class=\"updated_count\">%d</strong> slug was updated!"
|
75 |
msgid_plural "<strong class=\"updated_count\">%d</strong> slugs were updated!"
|
@@ -90,20 +94,20 @@ msgstr ""
|
|
90 |
"<strong>"
|
91 |
"正規リダイレクトにより、WordPressは要求されたURLを「修正」し、訪問者を正規パーマリンクにリダイレクトできます。</strong>"
|
92 |
|
93 |
-
#: includes/core/permalink-manager-actions.php:
|
94 |
msgid "<strong>No post status</strong> selected!"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/core/permalink-manager-actions.php:
|
98 |
msgid "<strong>No post type</strong> selected!"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/core/permalink-manager-actions.php:
|
102 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
103 |
msgid "<strong>No slugs</strong> were updated!"
|
104 |
msgstr "スラッグは、更新されませんでした。"
|
105 |
|
106 |
-
#: includes/core/permalink-manager-actions.php:
|
107 |
msgid "<strong>No taxonomy</strong> selected!"
|
108 |
msgstr ""
|
109 |
|
@@ -173,7 +177,7 @@ msgstr "リストから単語を追加する"
|
|
173 |
msgid "Add trailing slashes"
|
174 |
msgstr "末尾のスラッシュを追加する"
|
175 |
|
176 |
-
#: includes/views/permalink-manager-settings.php:
|
177 |
msgid "Administrator (edit_theme_options)"
|
178 |
msgstr "管理者 (edit_theme_options)"
|
179 |
|
@@ -211,40 +215,40 @@ msgstr "以下で指定された全てのURIは、訪問者を上記の「現在
|
|
211 |
msgid "Apply"
|
212 |
msgstr "適用"
|
213 |
|
214 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
215 |
msgid "Arabic"
|
216 |
msgstr "アラビア語"
|
217 |
|
218 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
219 |
msgid "Are you sure? This action cannot be undone!"
|
220 |
msgstr "本当によろしいですか?この操作は、元に戻せません!"
|
221 |
|
222 |
-
#: includes/views/permalink-manager-debug.php:
|
223 |
msgid "Array with external redirects"
|
224 |
msgstr "外部リダイレクトでの配列"
|
225 |
|
226 |
-
#: includes/views/permalink-manager-debug.php:
|
227 |
msgid "Array with permastructures"
|
228 |
msgstr "パーマ構造での配列"
|
229 |
|
230 |
-
#: includes/views/permalink-manager-debug.php:
|
231 |
msgid "Array with redirects"
|
232 |
msgstr "リダイレクトでの配列"
|
233 |
|
234 |
-
#: includes/views/permalink-manager-debug.php:
|
235 |
msgid "Array with settings used in this plugin."
|
236 |
msgstr "本プラグイン内で使用中の設定での配列"
|
237 |
|
238 |
-
#: includes/views/permalink-manager-debug.php:
|
239 |
msgid "Array with URIs"
|
240 |
msgstr "URIでの配列"
|
241 |
|
242 |
-
#: includes/views/permalink-manager-settings.php:
|
243 |
msgid "Author (publish_posts)"
|
244 |
msgstr "投稿者 (publish_posts)"
|
245 |
|
246 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
247 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
248 |
msgid "Auto-update \"Current URI\""
|
249 |
msgstr ""
|
250 |
|
@@ -252,11 +256,11 @@ msgstr ""
|
|
252 |
msgid "Auto-update permalinks"
|
253 |
msgstr "パーマリンクの自動更新"
|
254 |
|
255 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
256 |
msgid "Automatic redirect for native URI enabled:"
|
257 |
msgstr "ネイティブURIの自動リダイレクトを有効にする:"
|
258 |
|
259 |
-
#: includes/views/permalink-manager-settings.php:
|
260 |
msgid "Automatically fix broken URIs"
|
261 |
msgstr "壊れたURIを自動的に修正する"
|
262 |
|
@@ -264,19 +268,19 @@ msgstr "壊れたURIを自動的に修正する"
|
|
264 |
msgid "Breadcrumbs support"
|
265 |
msgstr "パンくずリスト サポート"
|
266 |
|
267 |
-
#: includes/core/permalink-manager-actions.php:
|
268 |
msgid "Broken redirects were removed successfully!"
|
269 |
msgstr "リンク切れリダイレクトは、無事削除されました!"
|
270 |
|
271 |
-
#: includes/views/permalink-manager-settings.php:
|
272 |
msgid "Bulk fix all URIs (once a day, in the background)"
|
273 |
msgstr "全てのURIを一括修正する(1日1回、バックグラウンド)"
|
274 |
|
275 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
276 |
msgid "Buy Permalink Manager Pro"
|
277 |
msgstr "Permalink Manager Proを購入"
|
278 |
|
279 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
280 |
msgid "by Maciej Bis"
|
281 |
msgstr "by Maciej Bis"
|
282 |
|
@@ -284,15 +288,15 @@ msgstr "by Maciej Bis"
|
|
284 |
msgid "Canonical redirect"
|
285 |
msgstr "正規リダイレクト"
|
286 |
|
287 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
288 |
msgid "Chinese"
|
289 |
msgstr "中国語"
|
290 |
|
291 |
-
#: includes/core/permalink-manager-uri-functions-tax.php:
|
292 |
msgid "Clear/leave the field empty to use the default permalink."
|
293 |
msgstr "デフォルトのパーマリンクを使用するため、フィールドを空のままにする / クリアする"
|
294 |
|
295 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
296 |
msgid "Close: "
|
297 |
msgstr "閉じる:"
|
298 |
|
@@ -300,11 +304,11 @@ msgstr "閉じる:"
|
|
300 |
msgid "Congratulations! No duplicated URIs or Redirects found!"
|
301 |
msgstr "おめでとうございます!重複したURI・リダイレクトは、見つかりませんでした!"
|
302 |
|
303 |
-
#: includes/views/permalink-manager-settings.php:
|
304 |
msgid "Contributor (edit_posts)"
|
305 |
msgstr "寄稿者 (edit_posts)"
|
306 |
|
307 |
-
#: includes/views/permalink-manager-settings.php:
|
308 |
msgid "Convert accented letters"
|
309 |
msgstr "アクセント付き文字の変換"
|
310 |
|
@@ -312,22 +316,22 @@ msgstr "アクセント付き文字の変換"
|
|
312 |
msgid "Count"
|
313 |
msgstr "カウント"
|
314 |
|
315 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
316 |
msgid "Coupon Full URL"
|
317 |
msgstr "クーポン フル URL"
|
318 |
|
319 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
320 |
msgid "Coupon Link"
|
321 |
msgstr "クーポンリンク"
|
322 |
|
323 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
324 |
msgid "Coupon URI"
|
325 |
msgstr "クーポンURI"
|
326 |
|
327 |
-
#: includes/core/permalink-manager-uri-functions-post.php:
|
328 |
-
#: includes/core/permalink-manager-uri-functions-tax.php:
|
329 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
330 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
331 |
msgid "Current URI"
|
332 |
msgstr "現在のURI"
|
333 |
|
@@ -336,18 +340,18 @@ msgstr "現在のURI"
|
|
336 |
msgid "Custom Permalinks"
|
337 |
msgstr "カスタム パーマリンク"
|
338 |
|
339 |
-
#: includes/core/permalink-manager-actions.php:
|
340 |
msgid "Custom permalinks"
|
341 |
msgstr "カスタム パーマリンク"
|
342 |
|
343 |
-
#: includes/core/permalink-manager-actions.php:
|
344 |
msgid "Custom redirects"
|
345 |
msgstr "カスタム リダイレクト"
|
346 |
|
347 |
#: includes/views/permalink-manager-tools.php:70
|
348 |
-
#: includes/core/permalink-manager-third-parties.php:
|
349 |
-
#: includes/core/permalink-manager-third-parties.php:
|
350 |
-
#: includes/core/permalink-manager-uri-functions-tax.php:
|
351 |
msgid "Custom URI"
|
352 |
msgstr "カスタム URI"
|
353 |
|
@@ -355,7 +359,7 @@ msgstr "カスタム URI"
|
|
355 |
msgid "Custom URIs"
|
356 |
msgstr "カスタム URI"
|
357 |
|
358 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
359 |
msgid "Danish"
|
360 |
msgstr "デンマーク語"
|
361 |
|
@@ -367,15 +371,15 @@ msgstr "インポート後、非アクティブにする"
|
|
367 |
msgid "Debug"
|
368 |
msgstr "デバッグ"
|
369 |
|
370 |
-
#: includes/views/permalink-manager-debug.php:
|
371 |
msgid "Debug data"
|
372 |
msgstr "デバッグデータ"
|
373 |
|
374 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
375 |
msgid "Default permastructure"
|
376 |
msgstr "デフォルト パーマ構造"
|
377 |
|
378 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
379 |
msgid "Default URI"
|
380 |
msgstr "デフォルト URI"
|
381 |
|
@@ -383,29 +387,29 @@ msgstr "デフォルト URI"
|
|
383 |
msgid "Disable (Permalink Manager redirect functions)"
|
384 |
msgstr "無効(Permalink Manager リダイレクト 機能)"
|
385 |
|
386 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
387 |
msgid "Disable URI Editor"
|
388 |
msgstr ""
|
389 |
|
390 |
#: includes/views/permalink-manager-settings.php:41
|
391 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
392 |
msgid "Disable URI Editor to disallow permalink changes"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
396 |
msgid "Do not automatically append the slug"
|
397 |
msgstr "スラッグを自動的に追加しない"
|
398 |
|
399 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
400 |
msgid "Documentation"
|
401 |
msgstr "ドキュメント"
|
402 |
|
403 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
404 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
405 |
msgid "Don't auto-update \"Current URI\""
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
409 |
msgid ""
|
410 |
"Don't auto-update \"Current URI\" and exclude from the \"Regenerate/reset\" "
|
411 |
"tool"
|
@@ -415,7 +419,7 @@ msgstr ""
|
|
415 |
msgid "Don't auto-update permalinks (default mode)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
419 |
msgid "Dutch"
|
420 |
msgstr "オランダ語"
|
421 |
|
@@ -439,7 +443,7 @@ msgstr "投稿の編集"
|
|
439 |
msgid "Edit term"
|
440 |
msgstr "タームの編集"
|
441 |
|
442 |
-
#: includes/views/permalink-manager-settings.php:
|
443 |
msgid "Editor (publish_pages)"
|
444 |
msgstr "編集者 (publish_pages)"
|
445 |
|
@@ -447,13 +451,13 @@ msgstr "編集者 (publish_pages)"
|
|
447 |
msgid "Enable \"stop words\""
|
448 |
msgstr "「使用禁止の単語」を有効にする"
|
449 |
|
450 |
-
#: includes/views/permalink-manager-settings.php:
|
451 |
msgid ""
|
452 |
"Enable this option if you would like to automatically remove redundant "
|
453 |
"permalinks & duplicated redirects."
|
454 |
msgstr "冗長なパーマリンクと重複したリダイレクトを自動的に削除したい場合は、このオプションを有効にします。"
|
455 |
|
456 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
457 |
msgid "English"
|
458 |
msgstr "英語"
|
459 |
|
@@ -479,7 +483,7 @@ msgid ""
|
|
479 |
"a few minutes."
|
480 |
msgstr "現在、有効期限の情報をダウンロードできない可能性があります。数分後に、再度お試し下さい。"
|
481 |
|
482 |
-
#: includes/core/permalink-manager-actions.php:
|
483 |
msgid "External redirects"
|
484 |
msgstr "外部のリダイレクト"
|
485 |
|
@@ -508,7 +512,7 @@ msgstr "検索"
|
|
508 |
msgid "Find and replace"
|
509 |
msgstr "検索&置換"
|
510 |
|
511 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
512 |
msgid "Finnish"
|
513 |
msgstr "フィンランド語"
|
514 |
|
@@ -516,11 +520,11 @@ msgstr "フィンランド語"
|
|
516 |
msgid "Fix custom permalinks & redirects"
|
517 |
msgstr "カスタム パーマリンク&リダイレクトを修正する"
|
518 |
|
519 |
-
#: includes/views/permalink-manager-settings.php:
|
520 |
msgid "Fix URIs individually (during page load)"
|
521 |
msgstr "個々にURLを修正する(ページ読込時)"
|
522 |
|
523 |
-
#: includes/views/permalink-manager-settings.php:
|
524 |
msgid "Force 404 on non-existing pagination pages"
|
525 |
msgstr "実在しないページネーションのページに404を強制表示する"
|
526 |
|
@@ -528,7 +532,7 @@ msgstr "実在しないページネーションのページに404を強制表示
|
|
528 |
msgid "Force HTTPS/WWW"
|
529 |
msgstr "HTTPS/WWW 強制"
|
530 |
|
531 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
532 |
msgid "French"
|
533 |
msgstr "フランス語"
|
534 |
|
@@ -541,11 +545,11 @@ msgstr "全ての URIとパーマリンク"
|
|
541 |
msgid "General settings"
|
542 |
msgstr "一般設定"
|
543 |
|
544 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
545 |
msgid "German"
|
546 |
msgstr "ドイツ語"
|
547 |
|
548 |
-
#: permalink-manager.php:
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"Get access to extra features: full taxonomy and WooCommerce support, "
|
@@ -561,11 +565,11 @@ msgstr ""
|
|
561 |
msgid "Get license information"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
565 |
msgid "Hebrew"
|
566 |
msgstr "ヘブライ語"
|
567 |
|
568 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
569 |
msgid "Hindi"
|
570 |
msgstr "ヒンディー語"
|
571 |
|
@@ -581,7 +585,7 @@ msgstr "http://maciejbis.net/"
|
|
581 |
msgid "https://permalinkmanager.pro?utm_source=plugin"
|
582 |
msgstr "https://permalinkmanager.pro?utm_source=plugin"
|
583 |
|
584 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
585 |
#| msgid ""
|
586 |
#| "If enabled, the 'Current URI' field will be automatically changed to "
|
587 |
#| "'Default URI' (displayed below) after the post is saved or updated."
|
@@ -597,7 +601,7 @@ msgid ""
|
|
597 |
"the posts imported with WP All Import plugin."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: includes/core/permalink-manager-third-parties.php:
|
601 |
#, php-format
|
602 |
msgid ""
|
603 |
"If empty, a default permalink based on your current <a href=\"%s\" "
|
@@ -606,7 +610,7 @@ msgstr ""
|
|
606 |
"空の場合、現在の<a href=\"%s\" target=\"_blank\">パーマ構造 設定</a>"
|
607 |
"に基づいたデフォルトのパーマリンクが適用されます。"
|
608 |
|
609 |
-
#: includes/views/permalink-manager-settings.php:
|
610 |
msgid ""
|
611 |
"If enabled only alphanumeric characters, underscores and dashes will be "
|
612 |
"allowed for post/term slugs."
|
@@ -618,7 +622,7 @@ msgid ""
|
|
618 |
"default URIs."
|
619 |
msgstr "有効にすると、選択された全ての「使用禁止の単語」はデフォルトのURIから、自動的に削除されます。"
|
620 |
|
621 |
-
#: includes/views/permalink-manager-settings.php:
|
622 |
msgid ""
|
623 |
"If enabled, all the accented letters will be replaced with their non-"
|
624 |
"accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
|
@@ -670,7 +674,7 @@ msgid ""
|
|
670 |
"SEO, Slim Seo, RankMath and SEOPress</strong> breadcrumbs."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: includes/views/permalink-manager-settings.php:
|
674 |
msgid ""
|
675 |
"If enabled, the non-existing pagination pages (for single posts) will return "
|
676 |
"404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
|
@@ -712,6 +716,15 @@ msgid ""
|
|
712 |
"custom URIs are imported."
|
713 |
msgstr "選択すると、カスタムURIのインポート後、「カスタムパーマリンク」プラグインが無効になります。"
|
714 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
#: includes/views/permalink-manager-pro-addons.php:261
|
716 |
msgid ""
|
717 |
"If you still did not find the answer to your question, please send us your "
|
@@ -727,7 +740,7 @@ msgid ""
|
|
727 |
"are open to all new ideas and would be grateful for all your comments!"
|
728 |
msgstr "新たな機能の提案やフィードバックをお送り下さい。あらゆる新しいアイデアは大歓迎であり、あなたのコメントをお送り頂ければ幸いです。"
|
729 |
|
730 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
731 |
msgid ""
|
732 |
"If you would like to translate the permastructures and set-up different "
|
733 |
"permalink structure per language, please fill in the fields below. Otherwise "
|
@@ -761,15 +774,15 @@ msgstr "親のスラッグを継承する"
|
|
761 |
msgid "Instructions"
|
762 |
msgstr "手順"
|
763 |
|
764 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
765 |
msgid "Italian"
|
766 |
msgstr "イタリア語"
|
767 |
|
768 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
769 |
msgid "Japanese"
|
770 |
msgstr "日本語"
|
771 |
|
772 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
773 |
msgid "Korean"
|
774 |
msgstr "韓国語"
|
775 |
|
@@ -781,7 +794,7 @@ msgstr "ライセンス"
|
|
781 |
msgid "Licence key"
|
782 |
msgstr "ライセンスキー"
|
783 |
|
784 |
-
#: includes/views/permalink-manager-debug.php:
|
785 |
msgid "List of custom redirects set-up by this plugin."
|
786 |
msgstr "本プラグインによって設定されたカスタム リダイレクトのリスト"
|
787 |
|
@@ -789,23 +802,23 @@ msgstr "本プラグインによって設定されたカスタム リダイレ
|
|
789 |
msgid "List of duplicated permalinks"
|
790 |
msgstr "重複したパーマリンクのリスト"
|
791 |
|
792 |
-
#: includes/views/permalink-manager-debug.php:
|
793 |
msgid "List of external redirects set-up by this plugin."
|
794 |
msgstr "本プラグインにてセットアップされた外部リダイレクトのリスト"
|
795 |
|
796 |
-
#: includes/views/permalink-manager-debug.php:
|
797 |
msgid "List of permastructures set-up by this plugin."
|
798 |
msgstr "本プラグインにてセットアップしたパーマ構造のリスト"
|
799 |
|
800 |
-
#: includes/views/permalink-manager-debug.php:
|
801 |
msgid "List of plugin settings."
|
802 |
msgstr "プラグイン設定 リスト"
|
803 |
|
804 |
-
#: includes/views/permalink-manager-debug.php:
|
805 |
msgid "List of the URIs generated by this plugin."
|
806 |
msgstr "本プラグインで生成されたURIのリスト"
|
807 |
|
808 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
809 |
msgid "List of updated items"
|
810 |
msgstr "更新済みのアイテムのリスト"
|
811 |
|
@@ -813,7 +826,7 @@ msgstr "更新済みのアイテムのリスト"
|
|
813 |
msgid "Maciej Bis"
|
814 |
msgstr "Maciej Bis"
|
815 |
|
816 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
817 |
msgid "Manage redirects"
|
818 |
msgstr "リダイレクトを管理"
|
819 |
|
@@ -822,7 +835,7 @@ msgstr "リダイレクトを管理"
|
|
822 |
msgid "Mode"
|
823 |
msgstr "モード"
|
824 |
|
825 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
826 |
msgid "Native slug"
|
827 |
msgstr "ネイティブ スラッグ"
|
828 |
|
@@ -830,25 +843,25 @@ msgstr "ネイティブ スラッグ"
|
|
830 |
msgid "Native slugs"
|
831 |
msgstr "ネイティブ スラッグ"
|
832 |
|
833 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
834 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
835 |
msgid "New Slug"
|
836 |
msgstr "新しいスラッグ"
|
837 |
|
838 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
839 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
840 |
msgid "New URI"
|
841 |
msgstr "新しいURI"
|
842 |
|
843 |
-
#: includes/views/permalink-manager-settings.php:
|
844 |
msgid "No"
|
845 |
msgstr "いいえ"
|
846 |
|
847 |
-
#: includes/core/permalink-manager-third-parties.php:
|
848 |
msgid "No \"Custom Permalinks\" URIs were imported!"
|
849 |
msgstr "「カスタム パーマリンク」 URIはインポートされませんでした!"
|
850 |
|
851 |
-
#: includes/core/permalink-manager-actions.php:
|
852 |
msgid "No Custom URIs or Custom Redirects were removed!"
|
853 |
msgstr "カスタムURIもしくはカスタム リダイレクトは、削除されませんでした!"
|
854 |
|
@@ -856,20 +869,20 @@ msgstr "カスタムURIもしくはカスタム リダイレクトは、削除
|
|
856 |
msgid "No custom URIs to import"
|
857 |
msgstr "インポートするカスタムURIはありません"
|
858 |
|
859 |
-
#: includes/views/permalink-manager-settings.php:
|
860 |
msgid "No, keep accented letters in the slugs"
|
861 |
msgstr "いいえ、スラッグにアクセント付き文字を保持します。"
|
862 |
|
863 |
-
#: includes/views/permalink-manager-settings.php:
|
864 |
msgid "No, keep special characters (.,|_+) in the slugs"
|
865 |
msgstr "いいえ、スラッグに特殊文字(.,|_+)を保持します。"
|
866 |
|
867 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
868 |
msgid "Norwegian"
|
869 |
msgstr "ノルウェー語"
|
870 |
|
871 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
872 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
873 |
msgid "Old Slug"
|
874 |
msgstr "古いスラッグ"
|
875 |
|
@@ -877,12 +890,12 @@ msgstr "古いスラッグ"
|
|
877 |
msgid "Old slug redirect"
|
878 |
msgstr "古いスラッグ リダイレクト"
|
879 |
|
880 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
881 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
882 |
msgid "Old URI"
|
883 |
msgstr "古いURI"
|
884 |
|
885 |
-
#: includes/views/permalink-manager-settings.php:
|
886 |
#, php-format
|
887 |
msgid ""
|
888 |
"Only the users who have selected capability will be able to access URI "
|
@@ -900,15 +913,15 @@ msgstr "ページ毎"
|
|
900 |
msgid "Permalink Duplicates"
|
901 |
msgstr "重複したパーマリンク"
|
902 |
|
903 |
-
#: includes/core/permalink-manager-third-parties.php:
|
904 |
-
#: includes/core/permalink-manager-third-parties.php:
|
905 |
-
#: includes/core/permalink-manager-gutenberg.php:
|
906 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
907 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
908 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
909 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
|
|
910 |
#: includes/core/permalink-manager-admin-functions.php:888
|
911 |
-
#: includes/core/permalink-manager-admin-functions.php:889
|
912 |
msgid "Permalink Manager"
|
913 |
msgstr "Permalink Manager"
|
914 |
|
@@ -942,9 +955,9 @@ msgid ""
|
|
942 |
"selected above post types & taxonomies."
|
943 |
msgstr "Permalink Managerは、上記で選択した全ての投稿タイプとタクソノミーのカスタム パーマリンクを無視し、フィルタリングしません。"
|
944 |
|
945 |
-
#: includes/core/permalink-manager-actions.php:
|
946 |
-
#: includes/core/permalink-manager-actions.php:
|
947 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
948 |
msgid "Permastructure settings"
|
949 |
msgstr "パーマ構造 設定"
|
950 |
|
@@ -952,7 +965,7 @@ msgstr "パーマ構造 設定"
|
|
952 |
msgid "Permastructure tags"
|
953 |
msgstr "パーマ構造 タグ"
|
954 |
|
955 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
956 |
msgid "Permastructure translations"
|
957 |
msgstr "パーマ構造 翻訳"
|
958 |
|
@@ -960,7 +973,7 @@ msgstr "パーマ構造 翻訳"
|
|
960 |
msgid "Permastructures"
|
961 |
msgstr "パーマ構造"
|
962 |
|
963 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
964 |
msgid "Persian"
|
965 |
msgstr "ペルシア語"
|
966 |
|
@@ -1013,11 +1026,11 @@ msgstr ""
|
|
1013 |
"<a href=\"%s\" target=\"_blank\">コチラのページ</a>にて、ライセンスキーを設定して全てのPermalink "
|
1014 |
"Manager Pro のアップデート&機能をご利用下さい。"
|
1015 |
|
1016 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1017 |
msgid "Polish"
|
1018 |
msgstr "ポーランド語"
|
1019 |
|
1020 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1021 |
msgid "Portuguese"
|
1022 |
msgstr "ポルトガル語"
|
1023 |
|
@@ -1036,7 +1049,7 @@ msgstr "投稿タイトル"
|
|
1036 |
#: includes/views/permalink-manager-permastructs.php:31
|
1037 |
#: includes/views/permalink-manager-tools.php:162
|
1038 |
#: includes/views/permalink-manager-tools.php:239
|
1039 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1040 |
msgid "Post types"
|
1041 |
msgstr "投稿タイプ"
|
1042 |
|
@@ -1076,23 +1089,23 @@ msgstr "再作成 / リセット"
|
|
1076 |
msgid "Reload the expiration date"
|
1077 |
msgstr "有効期限を確認する"
|
1078 |
|
1079 |
-
#: includes/views/permalink-manager-debug.php:
|
1080 |
msgid "Remove all custom permalinks"
|
1081 |
msgstr "全てのカスタム パーマリンクを削除する"
|
1082 |
|
1083 |
-
#: includes/views/permalink-manager-debug.php:
|
1084 |
msgid "Remove all custom redirects"
|
1085 |
msgstr "全てのカスタム リダイレクトを削除する"
|
1086 |
|
1087 |
-
#: includes/views/permalink-manager-debug.php:
|
1088 |
msgid "Remove all external redirects"
|
1089 |
msgstr "全ての外部リダイレクトを削除する"
|
1090 |
|
1091 |
-
#: includes/views/permalink-manager-debug.php:
|
1092 |
msgid "Remove all permastructures settings"
|
1093 |
msgstr "全てのパーマ構造 設定を削除する"
|
1094 |
|
1095 |
-
#: includes/views/permalink-manager-debug.php:
|
1096 |
msgid "Remove all plugin settings"
|
1097 |
msgstr "全てのプラグイン設定を削除する"
|
1098 |
|
@@ -1113,15 +1126,15 @@ msgstr "末尾のスラッシュを削除する"
|
|
1113 |
msgid "Replace with ..."
|
1114 |
msgstr "置換"
|
1115 |
|
1116 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1117 |
msgid "Restore default permastructure"
|
1118 |
msgstr "デフォルトのパーマ構造を復元する"
|
1119 |
|
1120 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1121 |
msgid "Restore Default URI"
|
1122 |
msgstr "デフォルトのURIを復元する"
|
1123 |
|
1124 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1125 |
msgid "Russian"
|
1126 |
msgstr "ロシア語"
|
1127 |
|
@@ -1147,7 +1160,7 @@ msgstr "以下の全てのURIを保存する"
|
|
1147 |
msgid "Save old custom permalinks as extra redirects"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1151 |
msgid "Save permalink"
|
1152 |
msgstr "パーマリンクを保存する"
|
1153 |
|
@@ -1155,7 +1168,7 @@ msgstr "パーマリンクを保存する"
|
|
1155 |
msgid "Save permastructures"
|
1156 |
msgstr "パーマ構造を保存する"
|
1157 |
|
1158 |
-
#: includes/views/permalink-manager-settings.php:
|
1159 |
msgid "Save settings"
|
1160 |
msgstr "設定を保存する"
|
1161 |
|
@@ -1164,7 +1177,7 @@ msgstr "設定を保存する"
|
|
1164 |
msgid "Search"
|
1165 |
msgstr "検索"
|
1166 |
|
1167 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1168 |
msgid "Select all"
|
1169 |
msgstr "全てを選択する"
|
1170 |
|
@@ -1194,7 +1207,7 @@ msgid "Select taxonomies"
|
|
1194 |
msgstr "タクソノミーを選択する"
|
1195 |
|
1196 |
#: includes/views/permalink-manager-settings.php:14
|
1197 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1198 |
msgid "Settings"
|
1199 |
msgstr "設定"
|
1200 |
|
@@ -1202,15 +1215,15 @@ msgstr "設定"
|
|
1202 |
msgid "Show \"Native slug\" field in URI Editor"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1206 |
msgid "Show additional settings"
|
1207 |
msgstr "追加設定を表示する"
|
1208 |
|
1209 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1210 |
msgid "Show more details"
|
1211 |
msgstr "さらなる詳細を表示する"
|
1212 |
|
1213 |
-
#: includes/core/permalink-manager-actions.php:
|
1214 |
msgid "Sitemaps were updated!"
|
1215 |
msgstr "サイトマップは、更新されました!"
|
1216 |
|
@@ -1223,7 +1236,7 @@ msgstr "スラッグ"
|
|
1223 |
msgid "Slugs mode"
|
1224 |
msgstr "スラッグ モード"
|
1225 |
|
1226 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1227 |
msgid "Spanish"
|
1228 |
msgstr "スペイン語"
|
1229 |
|
@@ -1231,7 +1244,7 @@ msgstr "スペイン語"
|
|
1231 |
msgid "Stop Words"
|
1232 |
msgstr "使用禁止の単語"
|
1233 |
|
1234 |
-
#: includes/views/permalink-manager-settings.php:
|
1235 |
msgid "Strip special characters"
|
1236 |
msgstr "特殊文字を取り除く"
|
1237 |
|
@@ -1243,14 +1256,14 @@ msgstr "ご意見 / フィードバック"
|
|
1243 |
msgid "Support"
|
1244 |
msgstr "サポート"
|
1245 |
|
1246 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1247 |
msgid "Swedish"
|
1248 |
msgstr "スウェーデン語"
|
1249 |
|
1250 |
#: includes/views/permalink-manager-permastructs.php:36
|
1251 |
#: includes/views/permalink-manager-tools.php:163
|
1252 |
#: includes/views/permalink-manager-tools.php:240
|
1253 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1254 |
msgid "Taxonomies"
|
1255 |
msgstr "タクソノミー"
|
1256 |
|
@@ -1268,11 +1281,11 @@ msgid ""
|
|
1268 |
"The above permalink will be automatically updated and is locked for editing."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1272 |
msgid "The custom URI cannot be edited on frontpage."
|
1273 |
msgstr "カスタムURIは、フロントページでは編集不可です。"
|
1274 |
|
1275 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1276 |
msgid ""
|
1277 |
"The native slug is by default automatically used in native permalinks (when "
|
1278 |
"Permalink Manager is disabled)."
|
@@ -1285,15 +1298,15 @@ msgid ""
|
|
1285 |
"is published."
|
1286 |
msgstr "ネイティブ スラッグは、投稿またはタームが公開された後、最初のタイトルから生成されます。"
|
1287 |
|
1288 |
-
#: includes/core/permalink-manager-actions.php:
|
1289 |
msgid "The redirect was removed successfully!"
|
1290 |
msgstr "リダイレクトは、無事削除されました!"
|
1291 |
|
1292 |
-
#: includes/core/permalink-manager-actions.php:
|
1293 |
msgid "The settings are saved!"
|
1294 |
msgstr "設定は、保存されました!"
|
1295 |
|
1296 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1297 |
msgid ""
|
1298 |
"The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
|
1299 |
"blackfriday</strong> are equivalent."
|
@@ -1301,7 +1314,7 @@ msgstr ""
|
|
1301 |
"URIは、大文字・小文字は区別しません。例:<strong>BLACKFRIDAY</strong> と<strong>"
|
1302 |
"blackfriday</strong>は、同じです。"
|
1303 |
|
1304 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1305 |
msgid ""
|
1306 |
"The URL above is displayed in read-only mode. To enable editing, change the "
|
1307 |
"\"<strong>URI update mode</strong>\" to <em>Don't auto-update \"Current "
|
@@ -1327,19 +1340,13 @@ msgstr ""
|
|
1327 |
"この機能は、(古い)オリジナルのパーマリンクをPermalink Managerで設定された(新しい)カスタム "
|
1328 |
"パーマリンクにリダイレクトするために使用されます。"
|
1329 |
|
1330 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1331 |
#, php-format
|
1332 |
msgid ""
|
1333 |
"This functionality is available only in <a href=\"%s\" target=\"_blank\">"
|
1334 |
"Permalink Manager Pro</a>."
|
1335 |
msgstr "この機能は、Permalink Manager Proのみ利用可能です。"
|
1336 |
|
1337 |
-
#: includes/core/permalink-manager-pro-functions.php:171
|
1338 |
-
msgid ""
|
1339 |
-
"This license is already in use on another website and cannot be used to "
|
1340 |
-
"request automatic update for this domain."
|
1341 |
-
msgstr ""
|
1342 |
-
|
1343 |
#: includes/views/permalink-manager-settings.php:64
|
1344 |
msgid ""
|
1345 |
"This option can be used to alter the native settings and control if trailing "
|
@@ -1347,8 +1354,8 @@ msgid ""
|
|
1347 |
msgstr ""
|
1348 |
"このオプションは、ネイティブの設定を変更し、末尾のスラッシュを投稿・タームのパーマリンクの末尾に、追加・削除するかを制御するために使用できます。"
|
1349 |
|
1350 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1351 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1352 |
msgid "Title"
|
1353 |
msgstr "タイトル"
|
1354 |
|
@@ -1397,7 +1404,7 @@ msgstr "末尾のスラッシュ"
|
|
1397 |
msgid "Trailing slashes redirect"
|
1398 |
msgstr "末尾のスラッシュリダイレクト"
|
1399 |
|
1400 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1401 |
msgid "Turkish"
|
1402 |
msgstr "トルコ語"
|
1403 |
|
@@ -1415,24 +1422,24 @@ msgstr "単語の区切りにカンマを入力下さい。"
|
|
1415 |
msgid "Ultimate Member support"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1419 |
msgid "Unselect all"
|
1420 |
msgstr "選択を全て解除する"
|
1421 |
|
1422 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1423 |
msgid "Upgrade to PRO"
|
1424 |
msgstr "Pro版にアップグレード"
|
1425 |
|
1426 |
-
#: includes/core/permalink-manager-actions.php:
|
1427 |
#, php-format
|
1428 |
msgid "URI \"%s\" was removed successfully!"
|
1429 |
msgstr "「%s」のURIは、無事削除されました!"
|
1430 |
|
1431 |
-
#: includes/core/permalink-manager-actions.php:
|
1432 |
msgid "URI and/or custom redirects does not exist or were already removed!"
|
1433 |
msgstr "URIもしくはカスタムリダイレクトは、実在しないか既に削除されています!"
|
1434 |
|
1435 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1436 |
msgid "URI Editor"
|
1437 |
msgstr "URIエディター"
|
1438 |
|
@@ -1440,16 +1447,16 @@ msgstr "URIエディター"
|
|
1440 |
msgid "URI editor"
|
1441 |
msgstr "URIエディター"
|
1442 |
|
1443 |
-
#: includes/views/permalink-manager-settings.php:
|
1444 |
msgid "URI Editor role capability"
|
1445 |
msgstr "URIエディター 種類と権限"
|
1446 |
|
1447 |
-
#: includes/core/permalink-manager-actions.php:
|
1448 |
msgid "URI is already in use, please select another one!"
|
1449 |
msgstr "URIは既に使用済みです。他をお選び下さい。"
|
1450 |
|
1451 |
#: includes/views/permalink-manager-settings.php:39
|
1452 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1453 |
msgid "URI update mode"
|
1454 |
msgstr ""
|
1455 |
|
@@ -1461,7 +1468,7 @@ msgstr "スラッグとして実際のタイトルを使用する"
|
|
1461 |
msgid "Use default settings"
|
1462 |
msgstr "デフォルトの設定を使用する"
|
1463 |
|
1464 |
-
#: includes/core/permalink-manager-admin-functions.php:
|
1465 |
#, php-format
|
1466 |
msgid "Use global settings [%s]"
|
1467 |
msgstr "グローバル設定を使用する [%s]"
|
@@ -1497,8 +1504,8 @@ msgid "WooCommerce"
|
|
1497 |
msgstr "WooCommerce"
|
1498 |
|
1499 |
#: includes/views/permalink-manager-settings.php:196
|
1500 |
-
msgid "WP All Import support"
|
1501 |
-
msgstr "
|
1502 |
|
1503 |
#: includes/views/permalink-manager-settings.php:189
|
1504 |
msgid "WPML compatibility functions"
|
@@ -1508,12 +1515,13 @@ msgstr ""
|
|
1508 |
msgid "WPML/Polylang language mismatch"
|
1509 |
msgstr "WPML / Polylang 言語 不一致"
|
1510 |
|
1511 |
-
#: includes/views/permalink-manager-settings.php:
|
1512 |
-
#: includes/views/permalink-manager-settings.php:
|
1513 |
msgid "Yes, use native settings"
|
1514 |
msgstr "はい、ネイティブ 設定を使います。"
|
1515 |
|
1516 |
-
#: includes/core/permalink-manager-actions.php:
|
|
|
1517 |
msgid "You are not allowed to remove Permalink Manager data!"
|
1518 |
msgstr "Permalink Manager データを削除できません!"
|
1519 |
|
@@ -1529,7 +1537,7 @@ msgid ""
|
|
1529 |
"redirects, eg. Yoast SEO Premium or Redirection."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1533 |
msgid "You own a lifetime licence key."
|
1534 |
msgstr "あなたは、永久ライセンスキーをお持ちです。"
|
1535 |
|
@@ -1553,3 +1561,9 @@ msgstr ""
|
|
1553 |
#: includes/core/permalink-manager-pro-functions.php:154
|
1554 |
msgid "Your Permalink Manager Pro licence key is invalid!"
|
1555 |
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: 2022-10-06 19:14+0000\n"
|
7 |
"Last-Translator: admin\n"
|
8 |
"Language-Team: Japanese\n"
|
9 |
"Language: ja\n"
|
22 |
"<a href=\"mailto:contact@permalinkmanager.pro\">contact@permalinkmanager."
|
23 |
"pro</a>まで、ご意見をお送り下さい。"
|
24 |
|
25 |
+
#: includes/core/permalink-manager-third-parties.php:353
|
26 |
msgid "\"Custom Permalinks\" URIs were imported!"
|
27 |
msgstr "「カスタム パーマリンク」URIは、インポートされました!"
|
28 |
|
29 |
+
#: includes/views/permalink-manager-settings.php:233
|
30 |
+
msgid "\"Exclude content types\" strict mode"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
#: includes/views/permalink-manager-settings.php:216
|
34 |
msgid "\"Primary category\" support"
|
35 |
msgstr ""
|
38 |
msgid "\"Stop words\" list"
|
39 |
msgstr "「使用禁止の単語」リスト"
|
40 |
|
41 |
+
#: includes/core/permalink-manager-actions.php:399
|
42 |
#, php-format
|
43 |
msgid "%d Custom URIs and %d Custom Redirects were removed!"
|
44 |
msgstr "%d カスタムURIと、%d カスタム リダイレクトは削除されました。"
|
45 |
|
46 |
+
#: includes/core/permalink-manager-actions.php:453
|
47 |
#, php-format
|
48 |
msgid "%s were removed!"
|
49 |
msgstr "%s は削除されました!"
|
68 |
msgid "302 redirect"
|
69 |
msgstr "302 リダイレクト"
|
70 |
|
71 |
+
#: includes/core/permalink-manager-admin-functions.php:749
|
72 |
#, php-format
|
73 |
msgid "<a %s>Click here</a> to go to the list of updated slugs"
|
74 |
msgstr "更新されたスラッグのリストは、<a %s>ここをクリック</a> "
|
75 |
|
76 |
+
#: includes/core/permalink-manager-admin-functions.php:748
|
77 |
#, php-format
|
78 |
msgid "<strong class=\"updated_count\">%d</strong> slug was updated!"
|
79 |
msgid_plural "<strong class=\"updated_count\">%d</strong> slugs were updated!"
|
94 |
"<strong>"
|
95 |
"正規リダイレクトにより、WordPressは要求されたURLを「修正」し、訪問者を正規パーマリンクにリダイレクトできます。</strong>"
|
96 |
|
97 |
+
#: includes/core/permalink-manager-actions.php:147
|
98 |
msgid "<strong>No post status</strong> selected!"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/core/permalink-manager-actions.php:141
|
102 |
msgid "<strong>No post type</strong> selected!"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: includes/core/permalink-manager-actions.php:116
|
106 |
+
#: includes/core/permalink-manager-admin-functions.php:753
|
107 |
msgid "<strong>No slugs</strong> were updated!"
|
108 |
msgstr "スラッグは、更新されませんでした。"
|
109 |
|
110 |
+
#: includes/core/permalink-manager-actions.php:133
|
111 |
msgid "<strong>No taxonomy</strong> selected!"
|
112 |
msgstr ""
|
113 |
|
177 |
msgid "Add trailing slashes"
|
178 |
msgstr "末尾のスラッシュを追加する"
|
179 |
|
180 |
+
#: includes/views/permalink-manager-settings.php:258
|
181 |
msgid "Administrator (edit_theme_options)"
|
182 |
msgstr "管理者 (edit_theme_options)"
|
183 |
|
215 |
msgid "Apply"
|
216 |
msgstr "適用"
|
217 |
|
218 |
+
#: includes/core/permalink-manager-pro-functions.php:247
|
219 |
msgid "Arabic"
|
220 |
msgstr "アラビア語"
|
221 |
|
222 |
+
#: includes/core/permalink-manager-admin-functions.php:134
|
223 |
msgid "Are you sure? This action cannot be undone!"
|
224 |
msgstr "本当によろしいですか?この操作は、元に戻せません!"
|
225 |
|
226 |
+
#: includes/views/permalink-manager-debug.php:69
|
227 |
msgid "Array with external redirects"
|
228 |
msgstr "外部リダイレクトでの配列"
|
229 |
|
230 |
+
#: includes/views/permalink-manager-debug.php:80
|
231 |
msgid "Array with permastructures"
|
232 |
msgstr "パーマ構造での配列"
|
233 |
|
234 |
+
#: includes/views/permalink-manager-debug.php:58
|
235 |
msgid "Array with redirects"
|
236 |
msgstr "リダイレクトでの配列"
|
237 |
|
238 |
+
#: includes/views/permalink-manager-debug.php:91
|
239 |
msgid "Array with settings used in this plugin."
|
240 |
msgstr "本プラグイン内で使用中の設定での配列"
|
241 |
|
242 |
+
#: includes/views/permalink-manager-debug.php:47
|
243 |
msgid "Array with URIs"
|
244 |
msgstr "URIでの配列"
|
245 |
|
246 |
+
#: includes/views/permalink-manager-settings.php:258
|
247 |
msgid "Author (publish_posts)"
|
248 |
msgstr "投稿者 (publish_posts)"
|
249 |
|
250 |
+
#: includes/core/permalink-manager-admin-functions.php:859
|
251 |
+
#: includes/core/permalink-manager-admin-functions.php:871
|
252 |
msgid "Auto-update \"Current URI\""
|
253 |
msgstr ""
|
254 |
|
256 |
msgid "Auto-update permalinks"
|
257 |
msgstr "パーマリンクの自動更新"
|
258 |
|
259 |
+
#: includes/core/permalink-manager-admin-functions.php:947
|
260 |
msgid "Automatic redirect for native URI enabled:"
|
261 |
msgstr "ネイティブURIの自動リダイレクトを有効にする:"
|
262 |
|
263 |
+
#: includes/views/permalink-manager-settings.php:263
|
264 |
msgid "Automatically fix broken URIs"
|
265 |
msgstr "壊れたURIを自動的に修正する"
|
266 |
|
268 |
msgid "Breadcrumbs support"
|
269 |
msgstr "パンくずリスト サポート"
|
270 |
|
271 |
+
#: includes/core/permalink-manager-actions.php:609
|
272 |
msgid "Broken redirects were removed successfully!"
|
273 |
msgstr "リンク切れリダイレクトは、無事削除されました!"
|
274 |
|
275 |
+
#: includes/views/permalink-manager-settings.php:265
|
276 |
msgid "Bulk fix all URIs (once a day, in the background)"
|
277 |
msgstr "全てのURIを一括修正する(1日1回、バックグラウンド)"
|
278 |
|
279 |
+
#: includes/core/permalink-manager-admin-functions.php:172
|
280 |
msgid "Buy Permalink Manager Pro"
|
281 |
msgstr "Permalink Manager Proを購入"
|
282 |
|
283 |
+
#: includes/core/permalink-manager-admin-functions.php:616
|
284 |
msgid "by Maciej Bis"
|
285 |
msgstr "by Maciej Bis"
|
286 |
|
288 |
msgid "Canonical redirect"
|
289 |
msgstr "正規リダイレクト"
|
290 |
|
291 |
+
#: includes/core/permalink-manager-pro-functions.php:248
|
292 |
msgid "Chinese"
|
293 |
msgstr "中国語"
|
294 |
|
295 |
+
#: includes/core/permalink-manager-uri-functions-tax.php:520
|
296 |
msgid "Clear/leave the field empty to use the default permalink."
|
297 |
msgstr "デフォルトのパーマリンクを使用するため、フィールドを空のままにする / クリアする"
|
298 |
|
299 |
+
#: includes/core/permalink-manager-admin-functions.php:887
|
300 |
msgid "Close: "
|
301 |
msgstr "閉じる:"
|
302 |
|
304 |
msgid "Congratulations! No duplicated URIs or Redirects found!"
|
305 |
msgstr "おめでとうございます!重複したURI・リダイレクトは、見つかりませんでした!"
|
306 |
|
307 |
+
#: includes/views/permalink-manager-settings.php:258
|
308 |
msgid "Contributor (edit_posts)"
|
309 |
msgstr "寄稿者 (edit_posts)"
|
310 |
|
311 |
+
#: includes/views/permalink-manager-settings.php:250
|
312 |
msgid "Convert accented letters"
|
313 |
msgstr "アクセント付き文字の変換"
|
314 |
|
316 |
msgid "Count"
|
317 |
msgstr "カウント"
|
318 |
|
319 |
+
#: includes/core/permalink-manager-pro-functions.php:566
|
320 |
msgid "Coupon Full URL"
|
321 |
msgstr "クーポン フル URL"
|
322 |
|
323 |
+
#: includes/core/permalink-manager-pro-functions.php:533
|
324 |
msgid "Coupon Link"
|
325 |
msgstr "クーポンリンク"
|
326 |
|
327 |
+
#: includes/core/permalink-manager-pro-functions.php:554
|
328 |
msgid "Coupon URI"
|
329 |
msgstr "クーポンURI"
|
330 |
|
331 |
+
#: includes/core/permalink-manager-uri-functions-post.php:711
|
332 |
+
#: includes/core/permalink-manager-uri-functions-tax.php:552
|
333 |
+
#: includes/core/permalink-manager-admin-functions.php:795
|
334 |
+
#: includes/core/permalink-manager-admin-functions.php:906
|
335 |
msgid "Current URI"
|
336 |
msgstr "現在のURI"
|
337 |
|
340 |
msgid "Custom Permalinks"
|
341 |
msgstr "カスタム パーマリンク"
|
342 |
|
343 |
+
#: includes/core/permalink-manager-actions.php:426
|
344 |
msgid "Custom permalinks"
|
345 |
msgstr "カスタム パーマリンク"
|
346 |
|
347 |
+
#: includes/core/permalink-manager-actions.php:430
|
348 |
msgid "Custom redirects"
|
349 |
msgstr "カスタム リダイレクト"
|
350 |
|
351 |
#: includes/views/permalink-manager-tools.php:70
|
352 |
+
#: includes/core/permalink-manager-third-parties.php:485
|
353 |
+
#: includes/core/permalink-manager-third-parties.php:852
|
354 |
+
#: includes/core/permalink-manager-uri-functions-tax.php:519
|
355 |
msgid "Custom URI"
|
356 |
msgstr "カスタム URI"
|
357 |
|
359 |
msgid "Custom URIs"
|
360 |
msgstr "カスタム URI"
|
361 |
|
362 |
+
#: includes/core/permalink-manager-pro-functions.php:249
|
363 |
msgid "Danish"
|
364 |
msgstr "デンマーク語"
|
365 |
|
371 |
msgid "Debug"
|
372 |
msgstr "デバッグ"
|
373 |
|
374 |
+
#: includes/views/permalink-manager-debug.php:38
|
375 |
msgid "Debug data"
|
376 |
msgstr "デバッグデータ"
|
377 |
|
378 |
+
#: includes/core/permalink-manager-admin-functions.php:423
|
379 |
msgid "Default permastructure"
|
380 |
msgstr "デフォルト パーマ構造"
|
381 |
|
382 |
+
#: includes/core/permalink-manager-admin-functions.php:936
|
383 |
msgid "Default URI"
|
384 |
msgstr "デフォルト URI"
|
385 |
|
387 |
msgid "Disable (Permalink Manager redirect functions)"
|
388 |
msgstr "無効(Permalink Manager リダイレクト 機能)"
|
389 |
|
390 |
+
#: includes/core/permalink-manager-admin-functions.php:861
|
391 |
msgid "Disable URI Editor"
|
392 |
msgstr ""
|
393 |
|
394 |
#: includes/views/permalink-manager-settings.php:41
|
395 |
+
#: includes/core/permalink-manager-admin-functions.php:873
|
396 |
msgid "Disable URI Editor to disallow permalink changes"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: includes/core/permalink-manager-admin-functions.php:431
|
400 |
msgid "Do not automatically append the slug"
|
401 |
msgstr "スラッグを自動的に追加しない"
|
402 |
|
403 |
+
#: includes/core/permalink-manager-admin-functions.php:168
|
404 |
msgid "Documentation"
|
405 |
msgstr "ドキュメント"
|
406 |
|
407 |
+
#: includes/core/permalink-manager-admin-functions.php:863
|
408 |
+
#: includes/core/permalink-manager-admin-functions.php:869
|
409 |
msgid "Don't auto-update \"Current URI\""
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/core/permalink-manager-admin-functions.php:870
|
413 |
msgid ""
|
414 |
"Don't auto-update \"Current URI\" and exclude from the \"Regenerate/reset\" "
|
415 |
"tool"
|
419 |
msgid "Don't auto-update permalinks (default mode)"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/core/permalink-manager-pro-functions.php:250
|
423 |
msgid "Dutch"
|
424 |
msgstr "オランダ語"
|
425 |
|
443 |
msgid "Edit term"
|
444 |
msgstr "タームの編集"
|
445 |
|
446 |
+
#: includes/views/permalink-manager-settings.php:258
|
447 |
msgid "Editor (publish_pages)"
|
448 |
msgstr "編集者 (publish_pages)"
|
449 |
|
451 |
msgid "Enable \"stop words\""
|
452 |
msgstr "「使用禁止の単語」を有効にする"
|
453 |
|
454 |
+
#: includes/views/permalink-manager-settings.php:267
|
455 |
msgid ""
|
456 |
"Enable this option if you would like to automatically remove redundant "
|
457 |
"permalinks & duplicated redirects."
|
458 |
msgstr "冗長なパーマリンクと重複したリダイレクトを自動的に削除したい場合は、このオプションを有効にします。"
|
459 |
|
460 |
+
#: includes/core/permalink-manager-pro-functions.php:251
|
461 |
msgid "English"
|
462 |
msgstr "英語"
|
463 |
|
483 |
"a few minutes."
|
484 |
msgstr "現在、有効期限の情報をダウンロードできない可能性があります。数分後に、再度お試し下さい。"
|
485 |
|
486 |
+
#: includes/core/permalink-manager-actions.php:434
|
487 |
msgid "External redirects"
|
488 |
msgstr "外部のリダイレクト"
|
489 |
|
512 |
msgid "Find and replace"
|
513 |
msgstr "検索&置換"
|
514 |
|
515 |
+
#: includes/core/permalink-manager-pro-functions.php:252
|
516 |
msgid "Finnish"
|
517 |
msgstr "フィンランド語"
|
518 |
|
520 |
msgid "Fix custom permalinks & redirects"
|
521 |
msgstr "カスタム パーマリンク&リダイレクトを修正する"
|
522 |
|
523 |
+
#: includes/views/permalink-manager-settings.php:265
|
524 |
msgid "Fix URIs individually (during page load)"
|
525 |
msgstr "個々にURLを修正する(ページ読込時)"
|
526 |
|
527 |
+
#: includes/views/permalink-manager-settings.php:238
|
528 |
msgid "Force 404 on non-existing pagination pages"
|
529 |
msgstr "実在しないページネーションのページに404を強制表示する"
|
530 |
|
532 |
msgid "Force HTTPS/WWW"
|
533 |
msgstr "HTTPS/WWW 強制"
|
534 |
|
535 |
+
#: includes/core/permalink-manager-pro-functions.php:253
|
536 |
msgid "French"
|
537 |
msgstr "フランス語"
|
538 |
|
545 |
msgid "General settings"
|
546 |
msgstr "一般設定"
|
547 |
|
548 |
+
#: includes/core/permalink-manager-pro-functions.php:254
|
549 |
msgid "German"
|
550 |
msgstr "ドイツ語"
|
551 |
|
552 |
+
#: permalink-manager.php:216
|
553 |
#, php-format
|
554 |
msgid ""
|
555 |
"Get access to extra features: full taxonomy and WooCommerce support, "
|
565 |
msgid "Get license information"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/core/permalink-manager-pro-functions.php:255
|
569 |
msgid "Hebrew"
|
570 |
msgstr "ヘブライ語"
|
571 |
|
572 |
+
#: includes/core/permalink-manager-pro-functions.php:256
|
573 |
msgid "Hindi"
|
574 |
msgstr "ヒンディー語"
|
575 |
|
585 |
msgid "https://permalinkmanager.pro?utm_source=plugin"
|
586 |
msgstr "https://permalinkmanager.pro?utm_source=plugin"
|
587 |
|
588 |
+
#: includes/core/permalink-manager-admin-functions.php:915
|
589 |
#| msgid ""
|
590 |
#| "If enabled, the 'Current URI' field will be automatically changed to "
|
591 |
#| "'Default URI' (displayed below) after the post is saved or updated."
|
601 |
"the posts imported with WP All Import plugin."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/core/permalink-manager-third-parties.php:853
|
605 |
#, php-format
|
606 |
msgid ""
|
607 |
"If empty, a default permalink based on your current <a href=\"%s\" "
|
610 |
"空の場合、現在の<a href=\"%s\" target=\"_blank\">パーマ構造 設定</a>"
|
611 |
"に基づいたデフォルトのパーマリンクが適用されます。"
|
612 |
|
613 |
+
#: includes/views/permalink-manager-settings.php:246
|
614 |
msgid ""
|
615 |
"If enabled only alphanumeric characters, underscores and dashes will be "
|
616 |
"allowed for post/term slugs."
|
622 |
"default URIs."
|
623 |
msgstr "有効にすると、選択された全ての「使用禁止の単語」はデフォルトのURIから、自動的に削除されます。"
|
624 |
|
625 |
+
#: includes/views/permalink-manager-settings.php:253
|
626 |
msgid ""
|
627 |
"If enabled, all the accented letters will be replaced with their non-"
|
628 |
"accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
|
674 |
"SEO, Slim Seo, RankMath and SEOPress</strong> breadcrumbs."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: includes/views/permalink-manager-settings.php:239
|
678 |
msgid ""
|
679 |
"If enabled, the non-existing pagination pages (for single posts) will return "
|
680 |
"404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
|
716 |
"custom URIs are imported."
|
717 |
msgstr "選択すると、カスタムURIのインポート後、「カスタムパーマリンク」プラグインが無効になります。"
|
718 |
|
719 |
+
#: includes/views/permalink-manager-settings.php:234
|
720 |
+
msgid ""
|
721 |
+
"If this option is enabled, any custom post types and taxonomies with the "
|
722 |
+
"\"<strong>query_var</strong>\" and \"<strong>rewrite</strong>\" attributes "
|
723 |
+
"set to \"<em>false</em>\" will be excluded from the plugin and hence will "
|
724 |
+
"not be shown in the \"<em>General settings -> Exclude content types</em>\" "
|
725 |
+
"options."
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
#: includes/views/permalink-manager-pro-addons.php:261
|
729 |
msgid ""
|
730 |
"If you still did not find the answer to your question, please send us your "
|
740 |
"are open to all new ideas and would be grateful for all your comments!"
|
741 |
msgstr "新たな機能の提案やフィードバックをお送り下さい。あらゆる新しいアイデアは大歓迎であり、あなたのコメントをお送り頂ければ幸いです。"
|
742 |
|
743 |
+
#: includes/core/permalink-manager-admin-functions.php:405
|
744 |
msgid ""
|
745 |
"If you would like to translate the permastructures and set-up different "
|
746 |
"permalink structure per language, please fill in the fields below. Otherwise "
|
774 |
msgid "Instructions"
|
775 |
msgstr "手順"
|
776 |
|
777 |
+
#: includes/core/permalink-manager-pro-functions.php:257
|
778 |
msgid "Italian"
|
779 |
msgstr "イタリア語"
|
780 |
|
781 |
+
#: includes/core/permalink-manager-pro-functions.php:258
|
782 |
msgid "Japanese"
|
783 |
msgstr "日本語"
|
784 |
|
785 |
+
#: includes/core/permalink-manager-pro-functions.php:259
|
786 |
msgid "Korean"
|
787 |
msgstr "韓国語"
|
788 |
|
794 |
msgid "Licence key"
|
795 |
msgstr "ライセンスキー"
|
796 |
|
797 |
+
#: includes/views/permalink-manager-debug.php:54
|
798 |
msgid "List of custom redirects set-up by this plugin."
|
799 |
msgstr "本プラグインによって設定されたカスタム リダイレクトのリスト"
|
800 |
|
802 |
msgid "List of duplicated permalinks"
|
803 |
msgstr "重複したパーマリンクのリスト"
|
804 |
|
805 |
+
#: includes/views/permalink-manager-debug.php:65
|
806 |
msgid "List of external redirects set-up by this plugin."
|
807 |
msgstr "本プラグインにてセットアップされた外部リダイレクトのリスト"
|
808 |
|
809 |
+
#: includes/views/permalink-manager-debug.php:76
|
810 |
msgid "List of permastructures set-up by this plugin."
|
811 |
msgstr "本プラグインにてセットアップしたパーマ構造のリスト"
|
812 |
|
813 |
+
#: includes/views/permalink-manager-debug.php:87
|
814 |
msgid "List of plugin settings."
|
815 |
msgstr "プラグイン設定 リスト"
|
816 |
|
817 |
+
#: includes/views/permalink-manager-debug.php:43
|
818 |
msgid "List of the URIs generated by this plugin."
|
819 |
msgstr "本プラグインで生成されたURIのリスト"
|
820 |
|
821 |
+
#: includes/core/permalink-manager-admin-functions.php:735
|
822 |
msgid "List of updated items"
|
823 |
msgstr "更新済みのアイテムのリスト"
|
824 |
|
826 |
msgid "Maciej Bis"
|
827 |
msgstr "Maciej Bis"
|
828 |
|
829 |
+
#: includes/core/permalink-manager-admin-functions.php:988
|
830 |
msgid "Manage redirects"
|
831 |
msgstr "リダイレクトを管理"
|
832 |
|
835 |
msgid "Mode"
|
836 |
msgstr "モード"
|
837 |
|
838 |
+
#: includes/core/permalink-manager-admin-functions.php:926
|
839 |
msgid "Native slug"
|
840 |
msgstr "ネイティブ スラッグ"
|
841 |
|
843 |
msgid "Native slugs"
|
844 |
msgstr "ネイティブ スラッグ"
|
845 |
|
846 |
+
#: includes/core/permalink-manager-admin-functions.php:698
|
847 |
+
#: includes/core/permalink-manager-admin-functions.php:725
|
848 |
msgid "New Slug"
|
849 |
msgstr "新しいスラッグ"
|
850 |
|
851 |
+
#: includes/core/permalink-manager-admin-functions.php:701
|
852 |
+
#: includes/core/permalink-manager-admin-functions.php:728
|
853 |
msgid "New URI"
|
854 |
msgstr "新しいURI"
|
855 |
|
856 |
+
#: includes/views/permalink-manager-settings.php:265
|
857 |
msgid "No"
|
858 |
msgstr "いいえ"
|
859 |
|
860 |
+
#: includes/core/permalink-manager-third-parties.php:356
|
861 |
msgid "No \"Custom Permalinks\" URIs were imported!"
|
862 |
msgstr "「カスタム パーマリンク」 URIはインポートされませんでした!"
|
863 |
|
864 |
+
#: includes/core/permalink-manager-actions.php:401
|
865 |
msgid "No Custom URIs or Custom Redirects were removed!"
|
866 |
msgstr "カスタムURIもしくはカスタム リダイレクトは、削除されませんでした!"
|
867 |
|
869 |
msgid "No custom URIs to import"
|
870 |
msgstr "インポートするカスタムURIはありません"
|
871 |
|
872 |
+
#: includes/views/permalink-manager-settings.php:252
|
873 |
msgid "No, keep accented letters in the slugs"
|
874 |
msgstr "いいえ、スラッグにアクセント付き文字を保持します。"
|
875 |
|
876 |
+
#: includes/views/permalink-manager-settings.php:245
|
877 |
msgid "No, keep special characters (.,|_+) in the slugs"
|
878 |
msgstr "いいえ、スラッグに特殊文字(.,|_+)を保持します。"
|
879 |
|
880 |
+
#: includes/core/permalink-manager-pro-functions.php:260
|
881 |
msgid "Norwegian"
|
882 |
msgstr "ノルウェー語"
|
883 |
|
884 |
+
#: includes/core/permalink-manager-admin-functions.php:697
|
885 |
+
#: includes/core/permalink-manager-admin-functions.php:724
|
886 |
msgid "Old Slug"
|
887 |
msgstr "古いスラッグ"
|
888 |
|
890 |
msgid "Old slug redirect"
|
891 |
msgstr "古いスラッグ リダイレクト"
|
892 |
|
893 |
+
#: includes/core/permalink-manager-admin-functions.php:700
|
894 |
+
#: includes/core/permalink-manager-admin-functions.php:727
|
895 |
msgid "Old URI"
|
896 |
msgstr "古いURI"
|
897 |
|
898 |
+
#: includes/views/permalink-manager-settings.php:259
|
899 |
#, php-format
|
900 |
msgid ""
|
901 |
"Only the users who have selected capability will be able to access URI "
|
913 |
msgid "Permalink Duplicates"
|
914 |
msgstr "重複したパーマリンク"
|
915 |
|
916 |
+
#: includes/core/permalink-manager-third-parties.php:848
|
917 |
+
#: includes/core/permalink-manager-third-parties.php:1007
|
918 |
+
#: includes/core/permalink-manager-gutenberg.php:38
|
919 |
+
#: includes/core/permalink-manager-admin-functions.php:110
|
920 |
+
#: includes/core/permalink-manager-admin-functions.php:110
|
921 |
+
#: includes/core/permalink-manager-admin-functions.php:791
|
922 |
+
#: includes/core/permalink-manager-admin-functions.php:882
|
923 |
+
#: includes/core/permalink-manager-admin-functions.php:887
|
924 |
#: includes/core/permalink-manager-admin-functions.php:888
|
|
|
925 |
msgid "Permalink Manager"
|
926 |
msgstr "Permalink Manager"
|
927 |
|
955 |
"selected above post types & taxonomies."
|
956 |
msgstr "Permalink Managerは、上記で選択した全ての投稿タイプとタクソノミーのカスタム パーマリンクを無視し、フィルタリングしません。"
|
957 |
|
958 |
+
#: includes/core/permalink-manager-actions.php:438
|
959 |
+
#: includes/core/permalink-manager-actions.php:442
|
960 |
+
#: includes/core/permalink-manager-admin-functions.php:430
|
961 |
msgid "Permastructure settings"
|
962 |
msgstr "パーマ構造 設定"
|
963 |
|
965 |
msgid "Permastructure tags"
|
966 |
msgstr "パーマ構造 タグ"
|
967 |
|
968 |
+
#: includes/core/permalink-manager-admin-functions.php:404
|
969 |
msgid "Permastructure translations"
|
970 |
msgstr "パーマ構造 翻訳"
|
971 |
|
973 |
msgid "Permastructures"
|
974 |
msgstr "パーマ構造"
|
975 |
|
976 |
+
#: includes/core/permalink-manager-pro-functions.php:261
|
977 |
msgid "Persian"
|
978 |
msgstr "ペルシア語"
|
979 |
|
1026 |
"<a href=\"%s\" target=\"_blank\">コチラのページ</a>にて、ライセンスキーを設定して全てのPermalink "
|
1027 |
"Manager Pro のアップデート&機能をご利用下さい。"
|
1028 |
|
1029 |
+
#: includes/core/permalink-manager-pro-functions.php:262
|
1030 |
msgid "Polish"
|
1031 |
msgstr "ポーランド語"
|
1032 |
|
1033 |
+
#: includes/core/permalink-manager-pro-functions.php:263
|
1034 |
msgid "Portuguese"
|
1035 |
msgstr "ポルトガル語"
|
1036 |
|
1049 |
#: includes/views/permalink-manager-permastructs.php:31
|
1050 |
#: includes/views/permalink-manager-tools.php:162
|
1051 |
#: includes/views/permalink-manager-tools.php:239
|
1052 |
+
#: includes/core/permalink-manager-admin-functions.php:261
|
1053 |
msgid "Post types"
|
1054 |
msgstr "投稿タイプ"
|
1055 |
|
1089 |
msgid "Reload the expiration date"
|
1090 |
msgstr "有効期限を確認する"
|
1091 |
|
1092 |
+
#: includes/views/permalink-manager-debug.php:45
|
1093 |
msgid "Remove all custom permalinks"
|
1094 |
msgstr "全てのカスタム パーマリンクを削除する"
|
1095 |
|
1096 |
+
#: includes/views/permalink-manager-debug.php:56
|
1097 |
msgid "Remove all custom redirects"
|
1098 |
msgstr "全てのカスタム リダイレクトを削除する"
|
1099 |
|
1100 |
+
#: includes/views/permalink-manager-debug.php:67
|
1101 |
msgid "Remove all external redirects"
|
1102 |
msgstr "全ての外部リダイレクトを削除する"
|
1103 |
|
1104 |
+
#: includes/views/permalink-manager-debug.php:78
|
1105 |
msgid "Remove all permastructures settings"
|
1106 |
msgstr "全てのパーマ構造 設定を削除する"
|
1107 |
|
1108 |
+
#: includes/views/permalink-manager-debug.php:89
|
1109 |
msgid "Remove all plugin settings"
|
1110 |
msgstr "全てのプラグイン設定を削除する"
|
1111 |
|
1126 |
msgid "Replace with ..."
|
1127 |
msgstr "置換"
|
1128 |
|
1129 |
+
#: includes/core/permalink-manager-admin-functions.php:424
|
1130 |
msgid "Restore default permastructure"
|
1131 |
msgstr "デフォルトのパーマ構造を復元する"
|
1132 |
|
1133 |
+
#: includes/core/permalink-manager-admin-functions.php:937
|
1134 |
msgid "Restore Default URI"
|
1135 |
msgstr "デフォルトのURIを復元する"
|
1136 |
|
1137 |
+
#: includes/core/permalink-manager-pro-functions.php:264
|
1138 |
msgid "Russian"
|
1139 |
msgstr "ロシア語"
|
1140 |
|
1160 |
msgid "Save old custom permalinks as extra redirects"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/core/permalink-manager-admin-functions.php:961
|
1164 |
msgid "Save permalink"
|
1165 |
msgstr "パーマリンクを保存する"
|
1166 |
|
1168 |
msgid "Save permastructures"
|
1169 |
msgstr "パーマ構造を保存する"
|
1170 |
|
1171 |
+
#: includes/views/permalink-manager-settings.php:274
|
1172 |
msgid "Save settings"
|
1173 |
msgstr "設定を保存する"
|
1174 |
|
1177 |
msgid "Search"
|
1178 |
msgstr "検索"
|
1179 |
|
1180 |
+
#: includes/core/permalink-manager-admin-functions.php:284
|
1181 |
msgid "Select all"
|
1182 |
msgstr "全てを選択する"
|
1183 |
|
1207 |
msgstr "タクソノミーを選択する"
|
1208 |
|
1209 |
#: includes/views/permalink-manager-settings.php:14
|
1210 |
+
#: includes/core/permalink-manager-admin-functions.php:156
|
1211 |
msgid "Settings"
|
1212 |
msgstr "設定"
|
1213 |
|
1215 |
msgid "Show \"Native slug\" field in URI Editor"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/core/permalink-manager-admin-functions.php:439
|
1219 |
msgid "Show additional settings"
|
1220 |
msgstr "追加設定を表示する"
|
1221 |
|
1222 |
+
#: includes/core/permalink-manager-admin-functions.php:722
|
1223 |
msgid "Show more details"
|
1224 |
msgstr "さらなる詳細を表示する"
|
1225 |
|
1226 |
+
#: includes/core/permalink-manager-actions.php:711
|
1227 |
msgid "Sitemaps were updated!"
|
1228 |
msgstr "サイトマップは、更新されました!"
|
1229 |
|
1236 |
msgid "Slugs mode"
|
1237 |
msgstr "スラッグ モード"
|
1238 |
|
1239 |
+
#: includes/core/permalink-manager-pro-functions.php:265
|
1240 |
msgid "Spanish"
|
1241 |
msgstr "スペイン語"
|
1242 |
|
1244 |
msgid "Stop Words"
|
1245 |
msgstr "使用禁止の単語"
|
1246 |
|
1247 |
+
#: includes/views/permalink-manager-settings.php:243
|
1248 |
msgid "Strip special characters"
|
1249 |
msgstr "特殊文字を取り除く"
|
1250 |
|
1256 |
msgid "Support"
|
1257 |
msgstr "サポート"
|
1258 |
|
1259 |
+
#: includes/core/permalink-manager-pro-functions.php:266
|
1260 |
msgid "Swedish"
|
1261 |
msgstr "スウェーデン語"
|
1262 |
|
1263 |
#: includes/views/permalink-manager-permastructs.php:36
|
1264 |
#: includes/views/permalink-manager-tools.php:163
|
1265 |
#: includes/views/permalink-manager-tools.php:240
|
1266 |
+
#: includes/core/permalink-manager-admin-functions.php:261
|
1267 |
msgid "Taxonomies"
|
1268 |
msgstr "タクソノミー"
|
1269 |
|
1281 |
"The above permalink will be automatically updated and is locked for editing."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/core/permalink-manager-admin-functions.php:899
|
1285 |
msgid "The custom URI cannot be edited on frontpage."
|
1286 |
msgstr "カスタムURIは、フロントページでは編集不可です。"
|
1287 |
|
1288 |
+
#: includes/core/permalink-manager-admin-functions.php:927
|
1289 |
msgid ""
|
1290 |
"The native slug is by default automatically used in native permalinks (when "
|
1291 |
"Permalink Manager is disabled)."
|
1298 |
"is published."
|
1299 |
msgstr "ネイティブ スラッグは、投稿またはタームが公開された後、最初のタイトルから生成されます。"
|
1300 |
|
1301 |
+
#: includes/core/permalink-manager-actions.php:633
|
1302 |
msgid "The redirect was removed successfully!"
|
1303 |
msgstr "リダイレクトは、無事削除されました!"
|
1304 |
|
1305 |
+
#: includes/core/permalink-manager-actions.php:106
|
1306 |
msgid "The settings are saved!"
|
1307 |
msgstr "設定は、保存されました!"
|
1308 |
|
1309 |
+
#: includes/core/permalink-manager-pro-functions.php:555
|
1310 |
msgid ""
|
1311 |
"The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
|
1312 |
"blackfriday</strong> are equivalent."
|
1314 |
"URIは、大文字・小文字は区別しません。例:<strong>BLACKFRIDAY</strong> と<strong>"
|
1315 |
"blackfriday</strong>は、同じです。"
|
1316 |
|
1317 |
+
#: includes/core/permalink-manager-admin-functions.php:902
|
1318 |
msgid ""
|
1319 |
"The URL above is displayed in read-only mode. To enable editing, change the "
|
1320 |
"\"<strong>URI update mode</strong>\" to <em>Don't auto-update \"Current "
|
1340 |
"この機能は、(古い)オリジナルのパーマリンクをPermalink Managerで設定された(新しい)カスタム "
|
1341 |
"パーマリンクにリダイレクトするために使用されます。"
|
1342 |
|
1343 |
+
#: includes/core/permalink-manager-admin-functions.php:1092
|
1344 |
#, php-format
|
1345 |
msgid ""
|
1346 |
"This functionality is available only in <a href=\"%s\" target=\"_blank\">"
|
1347 |
"Permalink Manager Pro</a>."
|
1348 |
msgstr "この機能は、Permalink Manager Proのみ利用可能です。"
|
1349 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1350 |
#: includes/views/permalink-manager-settings.php:64
|
1351 |
msgid ""
|
1352 |
"This option can be used to alter the native settings and control if trailing "
|
1354 |
msgstr ""
|
1355 |
"このオプションは、ネイティブの設定を変更し、末尾のスラッシュを投稿・タームのパーマリンクの末尾に、追加・削除するかを制御するために使用できます。"
|
1356 |
|
1357 |
+
#: includes/core/permalink-manager-admin-functions.php:695
|
1358 |
+
#: includes/core/permalink-manager-admin-functions.php:722
|
1359 |
msgid "Title"
|
1360 |
msgstr "タイトル"
|
1361 |
|
1404 |
msgid "Trailing slashes redirect"
|
1405 |
msgstr "末尾のスラッシュリダイレクト"
|
1406 |
|
1407 |
+
#: includes/core/permalink-manager-pro-functions.php:267
|
1408 |
msgid "Turkish"
|
1409 |
msgstr "トルコ語"
|
1410 |
|
1422 |
msgid "Ultimate Member support"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: includes/core/permalink-manager-admin-functions.php:285
|
1426 |
msgid "Unselect all"
|
1427 |
msgstr "選択を全て解除する"
|
1428 |
|
1429 |
+
#: includes/core/permalink-manager-admin-functions.php:628
|
1430 |
msgid "Upgrade to PRO"
|
1431 |
msgstr "Pro版にアップグレード"
|
1432 |
|
1433 |
+
#: includes/core/permalink-manager-actions.php:601
|
1434 |
#, php-format
|
1435 |
msgid "URI \"%s\" was removed successfully!"
|
1436 |
msgstr "「%s」のURIは、無事削除されました!"
|
1437 |
|
1438 |
+
#: includes/core/permalink-manager-actions.php:613
|
1439 |
msgid "URI and/or custom redirects does not exist or were already removed!"
|
1440 |
msgstr "URIもしくはカスタムリダイレクトは、実在しないか既に削除されています!"
|
1441 |
|
1442 |
+
#: includes/core/permalink-manager-admin-functions.php:155
|
1443 |
msgid "URI Editor"
|
1444 |
msgstr "URIエディター"
|
1445 |
|
1447 |
msgid "URI editor"
|
1448 |
msgstr "URIエディター"
|
1449 |
|
1450 |
+
#: includes/views/permalink-manager-settings.php:257
|
1451 |
msgid "URI Editor role capability"
|
1452 |
msgstr "URIエディター 種類と権限"
|
1453 |
|
1454 |
+
#: includes/core/permalink-manager-actions.php:663
|
1455 |
msgid "URI is already in use, please select another one!"
|
1456 |
msgstr "URIは既に使用済みです。他をお選び下さい。"
|
1457 |
|
1458 |
#: includes/views/permalink-manager-settings.php:39
|
1459 |
+
#: includes/core/permalink-manager-admin-functions.php:914
|
1460 |
msgid "URI update mode"
|
1461 |
msgstr ""
|
1462 |
|
1468 |
msgid "Use default settings"
|
1469 |
msgstr "デフォルトの設定を使用する"
|
1470 |
|
1471 |
+
#: includes/core/permalink-manager-admin-functions.php:867
|
1472 |
#, php-format
|
1473 |
msgid "Use global settings [%s]"
|
1474 |
msgstr "グローバル設定を使用する [%s]"
|
1504 |
msgstr "WooCommerce"
|
1505 |
|
1506 |
#: includes/views/permalink-manager-settings.php:196
|
1507 |
+
msgid "WP All Import/Export support"
|
1508 |
+
msgstr ""
|
1509 |
|
1510 |
#: includes/views/permalink-manager-settings.php:189
|
1511 |
msgid "WPML compatibility functions"
|
1515 |
msgid "WPML/Polylang language mismatch"
|
1516 |
msgstr "WPML / Polylang 言語 不一致"
|
1517 |
|
1518 |
+
#: includes/views/permalink-manager-settings.php:245
|
1519 |
+
#: includes/views/permalink-manager-settings.php:252
|
1520 |
msgid "Yes, use native settings"
|
1521 |
msgstr "はい、ネイティブ 設定を使います。"
|
1522 |
|
1523 |
+
#: includes/core/permalink-manager-actions.php:413
|
1524 |
+
#: includes/core/permalink-manager-actions.php:419
|
1525 |
msgid "You are not allowed to remove Permalink Manager data!"
|
1526 |
msgstr "Permalink Manager データを削除できません!"
|
1527 |
|
1537 |
"redirects, eg. Yoast SEO Premium or Redirection."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/core/permalink-manager-pro-functions.php:170
|
1541 |
msgid "You own a lifetime licence key."
|
1542 |
msgstr "あなたは、永久ライセンスキーをお持ちです。"
|
1543 |
|
1561 |
#: includes/core/permalink-manager-pro-functions.php:154
|
1562 |
msgid "Your Permalink Manager Pro licence key is invalid!"
|
1563 |
msgstr "あなたのライセンスキーは、無効です!"
|
1564 |
+
|
1565 |
+
#: includes/core/permalink-manager-pro-functions.php:164
|
1566 |
+
msgid ""
|
1567 |
+
"Your Permalink Manager Pro license is already in use on another website and "
|
1568 |
+
"cannot be used to request automatic update for this domain."
|
1569 |
+
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: 2022-06
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -20,10 +20,14 @@ msgid ""
|
|
20 |
"contact@permalinkmanager.pro</a>."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: includes/core/permalink-manager-third-parties.php:
|
24 |
msgid "\"Custom Permalinks\" URIs were imported!"
|
25 |
msgstr ""
|
26 |
|
|
|
|
|
|
|
|
|
27 |
#: includes/views/permalink-manager-settings.php:216
|
28 |
msgid "\"Primary category\" support"
|
29 |
msgstr ""
|
@@ -37,7 +41,7 @@ msgstr ""
|
|
37 |
msgid "%d Custom URIs and %d Custom Redirects were removed!"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: includes/core/permalink-manager-actions.php:
|
41 |
#, php-format
|
42 |
msgid "%s were removed!"
|
43 |
msgstr ""
|
@@ -158,7 +162,7 @@ msgstr ""
|
|
158 |
msgid "Add trailing slashes"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/views/permalink-manager-settings.php:
|
162 |
msgid "Administrator (edit_theme_options)"
|
163 |
msgstr ""
|
164 |
|
@@ -194,7 +198,7 @@ msgstr ""
|
|
194 |
msgid "Apply"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
198 |
msgid "Arabic"
|
199 |
msgstr ""
|
200 |
|
@@ -202,27 +206,27 @@ msgstr ""
|
|
202 |
msgid "Are you sure? This action cannot be undone!"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/views/permalink-manager-debug.php:
|
206 |
msgid "Array with external redirects"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/views/permalink-manager-debug.php:
|
210 |
msgid "Array with permastructures"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/views/permalink-manager-debug.php:
|
214 |
msgid "Array with redirects"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/views/permalink-manager-debug.php:
|
218 |
msgid "Array with settings used in this plugin."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/views/permalink-manager-debug.php:
|
222 |
msgid "Array with URIs"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/views/permalink-manager-settings.php:
|
226 |
msgid "Author (publish_posts)"
|
227 |
msgstr ""
|
228 |
|
@@ -239,7 +243,7 @@ msgstr ""
|
|
239 |
msgid "Automatic redirect for native URI enabled:"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/views/permalink-manager-settings.php:
|
243 |
msgid "Automatically fix broken URIs"
|
244 |
msgstr ""
|
245 |
|
@@ -247,11 +251,11 @@ msgstr ""
|
|
247 |
msgid "Breadcrumbs support"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/core/permalink-manager-actions.php:
|
251 |
msgid "Broken redirects were removed successfully!"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/views/permalink-manager-settings.php:
|
255 |
msgid "Bulk fix all URIs (once a day, in the background)"
|
256 |
msgstr ""
|
257 |
|
@@ -267,7 +271,7 @@ msgstr ""
|
|
267 |
msgid "Canonical redirect"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
271 |
msgid "Chinese"
|
272 |
msgstr ""
|
273 |
|
@@ -283,11 +287,11 @@ msgstr ""
|
|
283 |
msgid "Congratulations! No duplicated URIs or Redirects found!"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/views/permalink-manager-settings.php:
|
287 |
msgid "Contributor (edit_posts)"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/views/permalink-manager-settings.php:
|
291 |
msgid "Convert accented letters"
|
292 |
msgstr ""
|
293 |
|
@@ -295,15 +299,15 @@ msgstr ""
|
|
295 |
msgid "Count"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
299 |
msgid "Coupon Full URL"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
303 |
msgid "Coupon Link"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
307 |
msgid "Coupon URI"
|
308 |
msgstr ""
|
309 |
|
@@ -319,17 +323,17 @@ msgstr ""
|
|
319 |
msgid "Custom Permalinks"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/core/permalink-manager-actions.php:
|
323 |
msgid "Custom permalinks"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/core/permalink-manager-actions.php:
|
327 |
msgid "Custom redirects"
|
328 |
msgstr ""
|
329 |
|
330 |
#: includes/views/permalink-manager-tools.php:70
|
331 |
-
#: includes/core/permalink-manager-third-parties.php:
|
332 |
-
#: includes/core/permalink-manager-third-parties.php:
|
333 |
#: includes/core/permalink-manager-uri-functions-tax.php:519
|
334 |
msgid "Custom URI"
|
335 |
msgstr ""
|
@@ -338,7 +342,7 @@ msgstr ""
|
|
338 |
msgid "Custom URIs"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
342 |
msgid "Danish"
|
343 |
msgstr ""
|
344 |
|
@@ -350,7 +354,7 @@ msgstr ""
|
|
350 |
msgid "Debug"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: includes/views/permalink-manager-debug.php:
|
354 |
msgid "Debug data"
|
355 |
msgstr ""
|
356 |
|
@@ -398,7 +402,7 @@ msgstr ""
|
|
398 |
msgid "Don't auto-update permalinks (default mode)"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
402 |
msgid "Dutch"
|
403 |
msgstr ""
|
404 |
|
@@ -422,7 +426,7 @@ msgstr ""
|
|
422 |
msgid "Edit term"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/views/permalink-manager-settings.php:
|
426 |
msgid "Editor (publish_pages)"
|
427 |
msgstr ""
|
428 |
|
@@ -430,13 +434,13 @@ msgstr ""
|
|
430 |
msgid "Enable \"stop words\""
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/views/permalink-manager-settings.php:
|
434 |
msgid ""
|
435 |
"Enable this option if you would like to automatically remove redundant "
|
436 |
"permalinks & duplicated redirects."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
440 |
msgid "English"
|
441 |
msgstr ""
|
442 |
|
@@ -461,7 +465,7 @@ msgid ""
|
|
461 |
"a few minutes."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/core/permalink-manager-actions.php:
|
465 |
msgid "External redirects"
|
466 |
msgstr ""
|
467 |
|
@@ -490,7 +494,7 @@ msgstr ""
|
|
490 |
msgid "Find and replace"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
494 |
msgid "Finnish"
|
495 |
msgstr ""
|
496 |
|
@@ -498,11 +502,11 @@ msgstr ""
|
|
498 |
msgid "Fix custom permalinks & redirects"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/views/permalink-manager-settings.php:
|
502 |
msgid "Fix URIs individually (during page load)"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/views/permalink-manager-settings.php:
|
506 |
msgid "Force 404 on non-existing pagination pages"
|
507 |
msgstr ""
|
508 |
|
@@ -510,7 +514,7 @@ msgstr ""
|
|
510 |
msgid "Force HTTPS/WWW"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
514 |
msgid "French"
|
515 |
msgstr ""
|
516 |
|
@@ -523,11 +527,11 @@ msgstr ""
|
|
523 |
msgid "General settings"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
527 |
msgid "German"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: permalink-manager.php:
|
531 |
#, php-format
|
532 |
msgid ""
|
533 |
"Get access to extra features: full taxonomy and WooCommerce support, "
|
@@ -540,11 +544,11 @@ msgstr ""
|
|
540 |
msgid "Get license information"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
544 |
msgid "Hebrew"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
548 |
msgid "Hindi"
|
549 |
msgstr ""
|
550 |
|
@@ -573,14 +577,14 @@ msgid ""
|
|
573 |
"the posts imported with WP All Import plugin."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: includes/core/permalink-manager-third-parties.php:
|
577 |
#, php-format
|
578 |
msgid ""
|
579 |
"If empty, a default permalink based on your current <a href=\"%s\" "
|
580 |
"target=\"_blank\">permastructure settings</a> will be used."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/views/permalink-manager-settings.php:
|
584 |
msgid ""
|
585 |
"If enabled only alphanumeric characters, underscores and dashes will be "
|
586 |
"allowed for post/term slugs."
|
@@ -592,7 +596,7 @@ msgid ""
|
|
592 |
"default URIs."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: includes/views/permalink-manager-settings.php:
|
596 |
msgid ""
|
597 |
"If enabled, all the accented letters will be replaced with their non-"
|
598 |
"accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
|
@@ -635,7 +639,7 @@ msgid ""
|
|
635 |
"SEO, Slim Seo, RankMath and SEOPress</strong> breadcrumbs."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: includes/views/permalink-manager-settings.php:
|
639 |
msgid ""
|
640 |
"If enabled, the non-existing pagination pages (for single posts) will return "
|
641 |
"404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
|
@@ -673,6 +677,15 @@ msgid ""
|
|
673 |
"custom URIs are imported."
|
674 |
msgstr ""
|
675 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
#: includes/views/permalink-manager-pro-addons.php:261
|
677 |
msgid ""
|
678 |
"If you still did not find the answer to your question, please send us your "
|
@@ -718,15 +731,15 @@ msgstr ""
|
|
718 |
msgid "Instructions"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
722 |
msgid "Italian"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
726 |
msgid "Japanese"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
730 |
msgid "Korean"
|
731 |
msgstr ""
|
732 |
|
@@ -738,7 +751,7 @@ msgstr ""
|
|
738 |
msgid "Licence key"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: includes/views/permalink-manager-debug.php:
|
742 |
msgid "List of custom redirects set-up by this plugin."
|
743 |
msgstr ""
|
744 |
|
@@ -746,19 +759,19 @@ msgstr ""
|
|
746 |
msgid "List of duplicated permalinks"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: includes/views/permalink-manager-debug.php:
|
750 |
msgid "List of external redirects set-up by this plugin."
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: includes/views/permalink-manager-debug.php:
|
754 |
msgid "List of permastructures set-up by this plugin."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/views/permalink-manager-debug.php:
|
758 |
msgid "List of plugin settings."
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: includes/views/permalink-manager-debug.php:
|
762 |
msgid "List of the URIs generated by this plugin."
|
763 |
msgstr ""
|
764 |
|
@@ -797,11 +810,11 @@ msgstr ""
|
|
797 |
msgid "New URI"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: includes/views/permalink-manager-settings.php:
|
801 |
msgid "No"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: includes/core/permalink-manager-third-parties.php:
|
805 |
msgid "No \"Custom Permalinks\" URIs were imported!"
|
806 |
msgstr ""
|
807 |
|
@@ -813,15 +826,15 @@ msgstr ""
|
|
813 |
msgid "No custom URIs to import"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: includes/views/permalink-manager-settings.php:
|
817 |
msgid "No, keep accented letters in the slugs"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: includes/views/permalink-manager-settings.php:
|
821 |
msgid "No, keep special characters (.,|_+) in the slugs"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
825 |
msgid "Norwegian"
|
826 |
msgstr ""
|
827 |
|
@@ -839,7 +852,7 @@ msgstr ""
|
|
839 |
msgid "Old URI"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: includes/views/permalink-manager-settings.php:
|
843 |
#, php-format
|
844 |
msgid ""
|
845 |
"Only the users who have selected capability will be able to access URI "
|
@@ -855,9 +868,9 @@ msgstr ""
|
|
855 |
msgid "Permalink Duplicates"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: includes/core/permalink-manager-third-parties.php:
|
859 |
-
#: includes/core/permalink-manager-third-parties.php:
|
860 |
-
#: includes/core/permalink-manager-gutenberg.php:
|
861 |
#: includes/core/permalink-manager-admin-functions.php:110
|
862 |
#: includes/core/permalink-manager-admin-functions.php:110
|
863 |
#: includes/core/permalink-manager-admin-functions.php:791
|
@@ -889,8 +902,8 @@ msgid ""
|
|
889 |
"selected above post types & taxonomies."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/core/permalink-manager-actions.php:
|
893 |
-
#: includes/core/permalink-manager-actions.php:
|
894 |
#: includes/core/permalink-manager-admin-functions.php:430
|
895 |
msgid "Permastructure settings"
|
896 |
msgstr ""
|
@@ -907,7 +920,7 @@ msgstr ""
|
|
907 |
msgid "Permastructures"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
911 |
msgid "Persian"
|
912 |
msgstr ""
|
913 |
|
@@ -958,11 +971,11 @@ msgid ""
|
|
958 |
"features <a href=\"%s\" target=\"_blank\">on this page</a>."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
962 |
msgid "Polish"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
966 |
msgid "Portuguese"
|
967 |
msgstr ""
|
968 |
|
@@ -1021,23 +1034,23 @@ msgstr ""
|
|
1021 |
msgid "Reload the expiration date"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: includes/views/permalink-manager-debug.php:
|
1025 |
msgid "Remove all custom permalinks"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: includes/views/permalink-manager-debug.php:
|
1029 |
msgid "Remove all custom redirects"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/views/permalink-manager-debug.php:
|
1033 |
msgid "Remove all external redirects"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: includes/views/permalink-manager-debug.php:
|
1037 |
msgid "Remove all permastructures settings"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: includes/views/permalink-manager-debug.php:
|
1041 |
msgid "Remove all plugin settings"
|
1042 |
msgstr ""
|
1043 |
|
@@ -1066,7 +1079,7 @@ msgstr ""
|
|
1066 |
msgid "Restore Default URI"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1070 |
msgid "Russian"
|
1071 |
msgstr ""
|
1072 |
|
@@ -1100,7 +1113,7 @@ msgstr ""
|
|
1100 |
msgid "Save permastructures"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/views/permalink-manager-settings.php:
|
1104 |
msgid "Save settings"
|
1105 |
msgstr ""
|
1106 |
|
@@ -1155,7 +1168,7 @@ msgstr ""
|
|
1155 |
msgid "Show more details"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/core/permalink-manager-actions.php:
|
1159 |
msgid "Sitemaps were updated!"
|
1160 |
msgstr ""
|
1161 |
|
@@ -1168,7 +1181,7 @@ msgstr ""
|
|
1168 |
msgid "Slugs mode"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1172 |
msgid "Spanish"
|
1173 |
msgstr ""
|
1174 |
|
@@ -1176,7 +1189,7 @@ msgstr ""
|
|
1176 |
msgid "Stop Words"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: includes/views/permalink-manager-settings.php:
|
1180 |
msgid "Strip special characters"
|
1181 |
msgstr ""
|
1182 |
|
@@ -1188,7 +1201,7 @@ msgstr ""
|
|
1188 |
msgid "Support"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1192 |
msgid "Swedish"
|
1193 |
msgstr ""
|
1194 |
|
@@ -1229,7 +1242,7 @@ msgid ""
|
|
1229 |
"is published."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/core/permalink-manager-actions.php:
|
1233 |
msgid "The redirect was removed successfully!"
|
1234 |
msgstr ""
|
1235 |
|
@@ -1237,7 +1250,7 @@ msgstr ""
|
|
1237 |
msgid "The settings are saved!"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1241 |
msgid ""
|
1242 |
"The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
|
1243 |
"blackfriday</strong> are equivalent."
|
@@ -1325,7 +1338,7 @@ msgstr ""
|
|
1325 |
msgid "Trailing slashes redirect"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: includes/core/permalink-manager-pro-functions.php:
|
1329 |
msgid "Turkish"
|
1330 |
msgstr ""
|
1331 |
|
@@ -1351,12 +1364,12 @@ msgstr ""
|
|
1351 |
msgid "Upgrade to PRO"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: includes/core/permalink-manager-actions.php:
|
1355 |
#, php-format
|
1356 |
msgid "URI \"%s\" was removed successfully!"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: includes/core/permalink-manager-actions.php:
|
1360 |
msgid "URI and/or custom redirects does not exist or were already removed!"
|
1361 |
msgstr ""
|
1362 |
|
@@ -1368,11 +1381,11 @@ msgstr ""
|
|
1368 |
msgid "URI editor"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: includes/views/permalink-manager-settings.php:
|
1372 |
msgid "URI Editor role capability"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: includes/core/permalink-manager-actions.php:
|
1376 |
msgid "URI is already in use, please select another one!"
|
1377 |
msgstr ""
|
1378 |
|
@@ -1425,7 +1438,7 @@ msgid "WooCommerce"
|
|
1425 |
msgstr ""
|
1426 |
|
1427 |
#: includes/views/permalink-manager-settings.php:196
|
1428 |
-
msgid "WP All Import support"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
#: includes/views/permalink-manager-settings.php:189
|
@@ -1436,12 +1449,13 @@ msgstr ""
|
|
1436 |
msgid "WPML/Polylang language mismatch"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: includes/views/permalink-manager-settings.php:
|
1440 |
-
#: includes/views/permalink-manager-settings.php:
|
1441 |
msgid "Yes, use native settings"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
#: includes/core/permalink-manager-actions.php:413
|
|
|
1445 |
msgid "You are not allowed to remove Permalink Manager data!"
|
1446 |
msgstr ""
|
1447 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: PACKAGE VERSION\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2022-10-06 19:13+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"
|
20 |
"contact@permalinkmanager.pro</a>."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: includes/core/permalink-manager-third-parties.php:353
|
24 |
msgid "\"Custom Permalinks\" URIs were imported!"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: includes/views/permalink-manager-settings.php:233
|
28 |
+
msgid "\"Exclude content types\" strict mode"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
#: includes/views/permalink-manager-settings.php:216
|
32 |
msgid "\"Primary category\" support"
|
33 |
msgstr ""
|
41 |
msgid "%d Custom URIs and %d Custom Redirects were removed!"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/core/permalink-manager-actions.php:453
|
45 |
#, php-format
|
46 |
msgid "%s were removed!"
|
47 |
msgstr ""
|
162 |
msgid "Add trailing slashes"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/views/permalink-manager-settings.php:258
|
166 |
msgid "Administrator (edit_theme_options)"
|
167 |
msgstr ""
|
168 |
|
198 |
msgid "Apply"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/core/permalink-manager-pro-functions.php:247
|
202 |
msgid "Arabic"
|
203 |
msgstr ""
|
204 |
|
206 |
msgid "Are you sure? This action cannot be undone!"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/views/permalink-manager-debug.php:69
|
210 |
msgid "Array with external redirects"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/views/permalink-manager-debug.php:80
|
214 |
msgid "Array with permastructures"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/views/permalink-manager-debug.php:58
|
218 |
msgid "Array with redirects"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/views/permalink-manager-debug.php:91
|
222 |
msgid "Array with settings used in this plugin."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: includes/views/permalink-manager-debug.php:47
|
226 |
msgid "Array with URIs"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/views/permalink-manager-settings.php:258
|
230 |
msgid "Author (publish_posts)"
|
231 |
msgstr ""
|
232 |
|
243 |
msgid "Automatic redirect for native URI enabled:"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: includes/views/permalink-manager-settings.php:263
|
247 |
msgid "Automatically fix broken URIs"
|
248 |
msgstr ""
|
249 |
|
251 |
msgid "Breadcrumbs support"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/core/permalink-manager-actions.php:609
|
255 |
msgid "Broken redirects were removed successfully!"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: includes/views/permalink-manager-settings.php:265
|
259 |
msgid "Bulk fix all URIs (once a day, in the background)"
|
260 |
msgstr ""
|
261 |
|
271 |
msgid "Canonical redirect"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/core/permalink-manager-pro-functions.php:248
|
275 |
msgid "Chinese"
|
276 |
msgstr ""
|
277 |
|
287 |
msgid "Congratulations! No duplicated URIs or Redirects found!"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/views/permalink-manager-settings.php:258
|
291 |
msgid "Contributor (edit_posts)"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/views/permalink-manager-settings.php:250
|
295 |
msgid "Convert accented letters"
|
296 |
msgstr ""
|
297 |
|
299 |
msgid "Count"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/core/permalink-manager-pro-functions.php:566
|
303 |
msgid "Coupon Full URL"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/core/permalink-manager-pro-functions.php:533
|
307 |
msgid "Coupon Link"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/core/permalink-manager-pro-functions.php:554
|
311 |
msgid "Coupon URI"
|
312 |
msgstr ""
|
313 |
|
323 |
msgid "Custom Permalinks"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: includes/core/permalink-manager-actions.php:426
|
327 |
msgid "Custom permalinks"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/core/permalink-manager-actions.php:430
|
331 |
msgid "Custom redirects"
|
332 |
msgstr ""
|
333 |
|
334 |
#: includes/views/permalink-manager-tools.php:70
|
335 |
+
#: includes/core/permalink-manager-third-parties.php:485
|
336 |
+
#: includes/core/permalink-manager-third-parties.php:852
|
337 |
#: includes/core/permalink-manager-uri-functions-tax.php:519
|
338 |
msgid "Custom URI"
|
339 |
msgstr ""
|
342 |
msgid "Custom URIs"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/core/permalink-manager-pro-functions.php:249
|
346 |
msgid "Danish"
|
347 |
msgstr ""
|
348 |
|
354 |
msgid "Debug"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/views/permalink-manager-debug.php:38
|
358 |
msgid "Debug data"
|
359 |
msgstr ""
|
360 |
|
402 |
msgid "Don't auto-update permalinks (default mode)"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/core/permalink-manager-pro-functions.php:250
|
406 |
msgid "Dutch"
|
407 |
msgstr ""
|
408 |
|
426 |
msgid "Edit term"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/views/permalink-manager-settings.php:258
|
430 |
msgid "Editor (publish_pages)"
|
431 |
msgstr ""
|
432 |
|
434 |
msgid "Enable \"stop words\""
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/views/permalink-manager-settings.php:267
|
438 |
msgid ""
|
439 |
"Enable this option if you would like to automatically remove redundant "
|
440 |
"permalinks & duplicated redirects."
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/core/permalink-manager-pro-functions.php:251
|
444 |
msgid "English"
|
445 |
msgstr ""
|
446 |
|
465 |
"a few minutes."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/core/permalink-manager-actions.php:434
|
469 |
msgid "External redirects"
|
470 |
msgstr ""
|
471 |
|
494 |
msgid "Find and replace"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: includes/core/permalink-manager-pro-functions.php:252
|
498 |
msgid "Finnish"
|
499 |
msgstr ""
|
500 |
|
502 |
msgid "Fix custom permalinks & redirects"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: includes/views/permalink-manager-settings.php:265
|
506 |
msgid "Fix URIs individually (during page load)"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/views/permalink-manager-settings.php:238
|
510 |
msgid "Force 404 on non-existing pagination pages"
|
511 |
msgstr ""
|
512 |
|
514 |
msgid "Force HTTPS/WWW"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/core/permalink-manager-pro-functions.php:253
|
518 |
msgid "French"
|
519 |
msgstr ""
|
520 |
|
527 |
msgid "General settings"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/core/permalink-manager-pro-functions.php:254
|
531 |
msgid "German"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: permalink-manager.php:216
|
535 |
#, php-format
|
536 |
msgid ""
|
537 |
"Get access to extra features: full taxonomy and WooCommerce support, "
|
544 |
msgid "Get license information"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/core/permalink-manager-pro-functions.php:255
|
548 |
msgid "Hebrew"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/core/permalink-manager-pro-functions.php:256
|
552 |
msgid "Hindi"
|
553 |
msgstr ""
|
554 |
|
577 |
"the posts imported with WP All Import plugin."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/core/permalink-manager-third-parties.php:853
|
581 |
#, php-format
|
582 |
msgid ""
|
583 |
"If empty, a default permalink based on your current <a href=\"%s\" "
|
584 |
"target=\"_blank\">permastructure settings</a> will be used."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: includes/views/permalink-manager-settings.php:246
|
588 |
msgid ""
|
589 |
"If enabled only alphanumeric characters, underscores and dashes will be "
|
590 |
"allowed for post/term slugs."
|
596 |
"default URIs."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/views/permalink-manager-settings.php:253
|
600 |
msgid ""
|
601 |
"If enabled, all the accented letters will be replaced with their non-"
|
602 |
"accented equivalent (eg. Å => A, Æ => AE, Ø => O, Ć => C)."
|
639 |
"SEO, Slim Seo, RankMath and SEOPress</strong> breadcrumbs."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: includes/views/permalink-manager-settings.php:239
|
643 |
msgid ""
|
644 |
"If enabled, the non-existing pagination pages (for single posts) will return "
|
645 |
"404 (\"Not Found\") error.<br /><strong>Please disable it, if you encounter "
|
677 |
"custom URIs are imported."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/views/permalink-manager-settings.php:234
|
681 |
+
msgid ""
|
682 |
+
"If this option is enabled, any custom post types and taxonomies with the "
|
683 |
+
"\"<strong>query_var</strong>\" and \"<strong>rewrite</strong>\" attributes "
|
684 |
+
"set to \"<em>false</em>\" will be excluded from the plugin and hence will "
|
685 |
+
"not be shown in the \"<em>General settings -> Exclude content types</em>\" "
|
686 |
+
"options."
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
#: includes/views/permalink-manager-pro-addons.php:261
|
690 |
msgid ""
|
691 |
"If you still did not find the answer to your question, please send us your "
|
731 |
msgid "Instructions"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/core/permalink-manager-pro-functions.php:257
|
735 |
msgid "Italian"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/core/permalink-manager-pro-functions.php:258
|
739 |
msgid "Japanese"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/core/permalink-manager-pro-functions.php:259
|
743 |
msgid "Korean"
|
744 |
msgstr ""
|
745 |
|
751 |
msgid "Licence key"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: includes/views/permalink-manager-debug.php:54
|
755 |
msgid "List of custom redirects set-up by this plugin."
|
756 |
msgstr ""
|
757 |
|
759 |
msgid "List of duplicated permalinks"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: includes/views/permalink-manager-debug.php:65
|
763 |
msgid "List of external redirects set-up by this plugin."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: includes/views/permalink-manager-debug.php:76
|
767 |
msgid "List of permastructures set-up by this plugin."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: includes/views/permalink-manager-debug.php:87
|
771 |
msgid "List of plugin settings."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: includes/views/permalink-manager-debug.php:43
|
775 |
msgid "List of the URIs generated by this plugin."
|
776 |
msgstr ""
|
777 |
|
810 |
msgid "New URI"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/views/permalink-manager-settings.php:265
|
814 |
msgid "No"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/core/permalink-manager-third-parties.php:356
|
818 |
msgid "No \"Custom Permalinks\" URIs were imported!"
|
819 |
msgstr ""
|
820 |
|
826 |
msgid "No custom URIs to import"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/views/permalink-manager-settings.php:252
|
830 |
msgid "No, keep accented letters in the slugs"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: includes/views/permalink-manager-settings.php:245
|
834 |
msgid "No, keep special characters (.,|_+) in the slugs"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: includes/core/permalink-manager-pro-functions.php:260
|
838 |
msgid "Norwegian"
|
839 |
msgstr ""
|
840 |
|
852 |
msgid "Old URI"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: includes/views/permalink-manager-settings.php:259
|
856 |
#, php-format
|
857 |
msgid ""
|
858 |
"Only the users who have selected capability will be able to access URI "
|
868 |
msgid "Permalink Duplicates"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/core/permalink-manager-third-parties.php:848
|
872 |
+
#: includes/core/permalink-manager-third-parties.php:1007
|
873 |
+
#: includes/core/permalink-manager-gutenberg.php:38
|
874 |
#: includes/core/permalink-manager-admin-functions.php:110
|
875 |
#: includes/core/permalink-manager-admin-functions.php:110
|
876 |
#: includes/core/permalink-manager-admin-functions.php:791
|
902 |
"selected above post types & taxonomies."
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: includes/core/permalink-manager-actions.php:438
|
906 |
+
#: includes/core/permalink-manager-actions.php:442
|
907 |
#: includes/core/permalink-manager-admin-functions.php:430
|
908 |
msgid "Permastructure settings"
|
909 |
msgstr ""
|
920 |
msgid "Permastructures"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/core/permalink-manager-pro-functions.php:261
|
924 |
msgid "Persian"
|
925 |
msgstr ""
|
926 |
|
971 |
"features <a href=\"%s\" target=\"_blank\">on this page</a>."
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: includes/core/permalink-manager-pro-functions.php:262
|
975 |
msgid "Polish"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/core/permalink-manager-pro-functions.php:263
|
979 |
msgid "Portuguese"
|
980 |
msgstr ""
|
981 |
|
1034 |
msgid "Reload the expiration date"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: includes/views/permalink-manager-debug.php:45
|
1038 |
msgid "Remove all custom permalinks"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: includes/views/permalink-manager-debug.php:56
|
1042 |
msgid "Remove all custom redirects"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: includes/views/permalink-manager-debug.php:67
|
1046 |
msgid "Remove all external redirects"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/views/permalink-manager-debug.php:78
|
1050 |
msgid "Remove all permastructures settings"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/views/permalink-manager-debug.php:89
|
1054 |
msgid "Remove all plugin settings"
|
1055 |
msgstr ""
|
1056 |
|
1079 |
msgid "Restore Default URI"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/core/permalink-manager-pro-functions.php:264
|
1083 |
msgid "Russian"
|
1084 |
msgstr ""
|
1085 |
|
1113 |
msgid "Save permastructures"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/views/permalink-manager-settings.php:274
|
1117 |
msgid "Save settings"
|
1118 |
msgstr ""
|
1119 |
|
1168 |
msgid "Show more details"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: includes/core/permalink-manager-actions.php:711
|
1172 |
msgid "Sitemaps were updated!"
|
1173 |
msgstr ""
|
1174 |
|
1181 |
msgid "Slugs mode"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/core/permalink-manager-pro-functions.php:265
|
1185 |
msgid "Spanish"
|
1186 |
msgstr ""
|
1187 |
|
1189 |
msgid "Stop Words"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/views/permalink-manager-settings.php:243
|
1193 |
msgid "Strip special characters"
|
1194 |
msgstr ""
|
1195 |
|
1201 |
msgid "Support"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/core/permalink-manager-pro-functions.php:266
|
1205 |
msgid "Swedish"
|
1206 |
msgstr ""
|
1207 |
|
1242 |
"is published."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/core/permalink-manager-actions.php:633
|
1246 |
msgid "The redirect was removed successfully!"
|
1247 |
msgstr ""
|
1248 |
|
1250 |
msgid "The settings are saved!"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: includes/core/permalink-manager-pro-functions.php:555
|
1254 |
msgid ""
|
1255 |
"The URIs are case-insensitive, eg. <strong>BLACKFRIDAY</strong> and <strong>"
|
1256 |
"blackfriday</strong> are equivalent."
|
1338 |
msgid "Trailing slashes redirect"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/core/permalink-manager-pro-functions.php:267
|
1342 |
msgid "Turkish"
|
1343 |
msgstr ""
|
1344 |
|
1364 |
msgid "Upgrade to PRO"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: includes/core/permalink-manager-actions.php:601
|
1368 |
#, php-format
|
1369 |
msgid "URI \"%s\" was removed successfully!"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/core/permalink-manager-actions.php:613
|
1373 |
msgid "URI and/or custom redirects does not exist or were already removed!"
|
1374 |
msgstr ""
|
1375 |
|
1381 |
msgid "URI editor"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/views/permalink-manager-settings.php:257
|
1385 |
msgid "URI Editor role capability"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/core/permalink-manager-actions.php:663
|
1389 |
msgid "URI is already in use, please select another one!"
|
1390 |
msgstr ""
|
1391 |
|
1438 |
msgstr ""
|
1439 |
|
1440 |
#: includes/views/permalink-manager-settings.php:196
|
1441 |
+
msgid "WP All Import/Export support"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
#: includes/views/permalink-manager-settings.php:189
|
1449 |
msgid "WPML/Polylang language mismatch"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: includes/views/permalink-manager-settings.php:245
|
1453 |
+
#: includes/views/permalink-manager-settings.php:252
|
1454 |
msgid "Yes, use native settings"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
#: includes/core/permalink-manager-actions.php:413
|
1458 |
+
#: includes/core/permalink-manager-actions.php:419
|
1459 |
msgid "You are not allowed to remove Permalink Manager data!"
|
1460 |
msgstr ""
|
1461 |
|
out/permalink-manager-admin.js
CHANGED
@@ -399,7 +399,7 @@ jQuery(document).ready(function() {
|
|
399 |
var helpTooltip = this;
|
400 |
|
401 |
tippy(helpTooltip, {
|
402 |
-
|
403 |
arrow: true,
|
404 |
content: jQuery(helpTooltip).attr('title'),
|
405 |
distance: 20
|
@@ -573,7 +573,7 @@ jQuery(document).ready(function() {
|
|
573 |
jQuery('#permalink-manager #load_stop_words_button').on('click', function() {
|
574 |
var lang = jQuery( ".load_stop_words option:selected" ).val();
|
575 |
if(lang) {
|
576 |
-
var json_url = permalink_manager.url + "/includes/
|
577 |
|
578 |
// Load JSON with words list
|
579 |
jQuery.getJSON(json_url, function(data) {
|
399 |
var helpTooltip = this;
|
400 |
|
401 |
tippy(helpTooltip, {
|
402 |
+
// placement: 'top-start',
|
403 |
arrow: true,
|
404 |
content: jQuery(helpTooltip).attr('title'),
|
405 |
distance: 20
|
573 |
jQuery('#permalink-manager #load_stop_words_button').on('click', function() {
|
574 |
var lang = jQuery( ".load_stop_words option:selected" ).val();
|
575 |
if(lang) {
|
576 |
+
var json_url = permalink_manager.url + "/includes/vendor/stopwords-json/dist/" + lang + ".json";
|
577 |
|
578 |
// Load JSON with words list
|
579 |
jQuery.getJSON(json_url, function(data) {
|
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.
|
8 |
* Author: Maciej Bis
|
9 |
* Author URI: http://maciejbis.net/
|
10 |
* License: GPL-2.0+
|
@@ -12,7 +12,7 @@
|
|
12 |
* Text Domain: permalink-manager
|
13 |
* Domain Path: /languages
|
14 |
* WC requires at least: 3.0.0
|
15 |
-
* WC tested up to:
|
16 |
*/
|
17 |
|
18 |
// If this file is called directly or plugin is already defined, abort.
|
@@ -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.
|
29 |
define( 'PERMALINK_MANAGER_FILE', __FILE__ );
|
30 |
define( 'PERMALINK_MANAGER_DIR', untrailingslashit(dirname(__FILE__)) );
|
31 |
define( 'PERMALINK_MANAGER_BASENAME', plugin_basename(__FILE__));
|
@@ -184,6 +184,7 @@ if(!class_exists('Permalink_Manager_Class')) {
|
|
184 |
'partial_disable' => array(
|
185 |
'post_types' => array('attachment', 'tribe_events', 'e-landing-page')
|
186 |
),
|
|
|
187 |
'ignore_drafts' => 1,
|
188 |
'edit_uris_cap' => 'publish_posts',
|
189 |
),
|
@@ -196,7 +197,7 @@ if(!class_exists('Permalink_Manager_Class')) {
|
|
196 |
// Apply the default settings (if empty values) in all settings sections
|
197 |
foreach($default_settings as $group_name => $fields) {
|
198 |
foreach($fields as $field_name => $field) {
|
199 |
-
if($settings_empty || (!isset($settings[$group_name][$field_name]) && $field_name
|
200 |
$settings[$group_name][$field_name] = $field;
|
201 |
}
|
202 |
}
|
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.20
|
8 |
* Author: Maciej Bis
|
9 |
* Author URI: http://maciejbis.net/
|
10 |
* License: GPL-2.0+
|
12 |
* Text Domain: permalink-manager
|
13 |
* Domain Path: /languages
|
14 |
* WC requires at least: 3.0.0
|
15 |
+
* WC tested up to: 7.0.0
|
16 |
*/
|
17 |
|
18 |
// If this file is called directly or plugin is already defined, abort.
|
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.20' );
|
29 |
define( 'PERMALINK_MANAGER_FILE', __FILE__ );
|
30 |
define( 'PERMALINK_MANAGER_DIR', untrailingslashit(dirname(__FILE__)) );
|
31 |
define( 'PERMALINK_MANAGER_BASENAME', plugin_basename(__FILE__));
|
184 |
'partial_disable' => array(
|
185 |
'post_types' => array('attachment', 'tribe_events', 'e-landing-page')
|
186 |
),
|
187 |
+
'partial_disable_strict' => 1,
|
188 |
'ignore_drafts' => 1,
|
189 |
'edit_uris_cap' => 'publish_posts',
|
190 |
),
|
197 |
// Apply the default settings (if empty values) in all settings sections
|
198 |
foreach($default_settings as $group_name => $fields) {
|
199 |
foreach($fields as $field_name => $field) {
|
200 |
+
if($settings_empty || (!isset($settings[$group_name][$field_name]) && strpos($field_name, 'partial_disable') === false)) {
|
201 |
$settings[$group_name][$field_name] = $field;
|
202 |
}
|
203 |
}
|