Changeset 3310512
- Timestamp:
- 06/12/2025 12:33:34 PM (10 months ago)
- Location:
- image-video-xml-sitemap
- Files:
-
- 38 added
- 16 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/css (added)
-
tags/1.0.2/assets/css/ivxs-admin-css.css (added)
-
tags/1.0.2/assets/css/ivxs-pdf-sitemap.xsl (added)
-
tags/1.0.2/assets/js (added)
-
tags/1.0.2/assets/js/ivxs-admin-js.js (added)
-
tags/1.0.2/documenation.html (added)
-
tags/1.0.2/image-video-xml-sitemap.php (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/class-image-video-xml-sitemap.php (added)
-
tags/1.0.2/languages (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-ar.l10n.php (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-ar.mo (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-ar.po (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-de_DE.l10n.php (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-de_DE.mo (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-de_DE.po (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-en_US.l10n.php (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-en_US.mo (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-en_US.po (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-ja.l10n.php (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-ja.mo (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-ja.po (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-nl_NL.l10n.php (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-nl_NL.mo (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-nl_NL.po (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-zh_CN.l10n.php (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-zh_CN.mo (added)
-
tags/1.0.2/languages/image-video-xml-sitemap-zh_CN.po (added)
-
tags/1.0.2/languages/image-video-xml-sitemap.pot (added)
-
tags/1.0.2/readme.txt (added)
-
trunk/image-video-xml-sitemap.php (modified) (2 diffs)
-
trunk/includes/class-image-video-xml-sitemap.php (modified) (7 diffs)
-
trunk/languages/image-video-xml-sitemap-ar.l10n.php (added)
-
trunk/languages/image-video-xml-sitemap-ar.mo (modified) (previous)
-
trunk/languages/image-video-xml-sitemap-ar.po (modified) (9 diffs)
-
trunk/languages/image-video-xml-sitemap-de_DE.l10n.php (added)
-
trunk/languages/image-video-xml-sitemap-de_DE.mo (modified) (previous)
-
trunk/languages/image-video-xml-sitemap-de_DE.po (modified) (9 diffs)
-
trunk/languages/image-video-xml-sitemap-en_US.l10n.php (added)
-
trunk/languages/image-video-xml-sitemap-en_US.mo (modified) (previous)
-
trunk/languages/image-video-xml-sitemap-en_US.po (modified) (9 diffs)
-
trunk/languages/image-video-xml-sitemap-ja.l10n.php (added)
-
trunk/languages/image-video-xml-sitemap-ja.mo (modified) (previous)
-
trunk/languages/image-video-xml-sitemap-ja.po (modified) (9 diffs)
-
trunk/languages/image-video-xml-sitemap-nl_NL.l10n.php (added)
-
trunk/languages/image-video-xml-sitemap-nl_NL.mo (modified) (previous)
-
trunk/languages/image-video-xml-sitemap-nl_NL.po (modified) (9 diffs)
-
trunk/languages/image-video-xml-sitemap-zh_CN.l10n.php (added)
-
trunk/languages/image-video-xml-sitemap-zh_CN.mo (modified) (previous)
-
trunk/languages/image-video-xml-sitemap-zh_CN.po (modified) (9 diffs)
-
trunk/languages/image-video-xml-sitemap.pot (modified) (9 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-video-xml-sitemap/trunk/image-video-xml-sitemap.php
r3267631 r3310512 3 3 Plugin Name: Image & Video XML Sitemap 4 4 Description: Enhance your website's media SEO by creating separate sitemaps for images and videos. Fully compatible with Yoast SEO, with advanced customization options. 5 Version: 1.0. 15 Version: 1.0.2 6 6 Requires at least: 5.2 7 7 Requires PHP: 7.4 … … 22 22 // Initialize the plugin 23 23 function ivxs_init() { 24 load_plugin_textdomain( 25 'image-video-xml-sitemap', 26 false, 27 dirname( plugin_basename( __FILE__ ) ) . '/languages' 28 ); 29 24 30 new ivxs_ImageVideoSitemap(); 25 31 } -
image-video-xml-sitemap/trunk/includes/class-image-video-xml-sitemap.php
r3267631 r3310512 12 12 add_action('wpseo_sitemap_index', [$this, 'ivxs_add_index_sitemap']); 13 13 add_action('init', [$this, 'ivxs_add_sitemap_rewrites']); 14 add_ action('query_vars', [$this, 'ivxs_add_query_vars']);14 add_filter('query_vars', [$this, 'ivxs_add_query_vars']); 15 15 add_action('template_redirect', [$this, 'ivxs_generate_custom_sitemap']); 16 16 } … … 40 40 41 41 public function ivxs_dashboard() { 42 43 if (isset($_GET['error']) && $_GET['error'] === 'invalid_sitemap_name') { 44 echo '<div class="notice notice-error"><p><strong>' . esc_html__('Error:', 'image-video-xml-sitemap') . '</strong> ' . esc_html__('The filename cannot contain the word "sitemap" due to possible conflicts with SEO plugins.', 'image-video-xml-sitemap') . '</p></div>'; 45 } 46 42 47 ?> 43 48 <div class="wrap"> … … 116 121 117 122 public function ivxs_save_settings() { 118 if (!is_admin() || !current_user_can('manage_options') || !check_admin_referer('ivxs_save_settings', 'ivxs_nonce')) { 123 if ( 124 !is_admin() || 125 !current_user_can('manage_options') || 126 !check_admin_referer('ivxs_save_settings', 'ivxs_nonce') 127 ) { 119 128 wp_die(esc_html(__('You are not allowed to perform this action.', 'image-video-xml-sitemap'))); 120 129 } 121 130 122 // Save the settings123 131 $enable_image_sitemap = isset($_POST['ivxs_enable_image_sitemap']) ? 1 : 0; 124 132 $enable_video_sitemap = isset($_POST['ivxs_enable_video_sitemap']) ? 1 : 0; … … 127 135 update_option('ivxs_enable_video_sitemap', $enable_video_sitemap); 128 136 129 $image_sitemap_filename = isset($_POST['ivxs_image_sitemap_filename']) 130 ? sanitize_text_field(wp_unslash($_POST['ivxs_image_sitemap_filename'])) 131 : ''; 132 133 $video_sitemap_filename = isset($_POST['ivxs_video_sitemap_filename']) 134 ? sanitize_text_field(wp_unslash($_POST['ivxs_video_sitemap_filename'])) 135 : ''; 136 137 //Removed image sitemap name when it is disable 138 if($enable_image_sitemap == 1){ 139 update_option('ivxs_image_sitemap_filename', str_replace(".xml","",$image_sitemap_filename)); 140 } 141 else { 142 update_option('ivxs_image_sitemap_filename', ''); 143 } 144 145 if($enable_image_sitemap == 1 && empty($image_sitemap_filename)){ 146 update_option('ivxs_image_sitemap_filename', 'image'); 147 } 148 149 //Removed video sitemap name when it is disable 150 if($enable_video_sitemap == 1){ 151 update_option('ivxs_video_sitemap_filename', str_replace(".xml","",$video_sitemap_filename)); 152 } 153 else { 154 update_option('ivxs_video_sitemap_filename', ''); 155 } 156 157 if($enable_video_sitemap == 1 && empty($video_sitemap_filename)){ 158 update_option('ivxs_video_sitemap_filename', 'video'); 159 } 160 161 wp_redirect(add_query_arg(['page' => 'image-video-xml-sitemap', 'message' => 'settings_saved'], admin_url('tools.php'))); 137 $image_sitemap_filename = isset($_POST['ivxs_image_sitemap_filename']) ? sanitize_file_name(wp_unslash($_POST['ivxs_image_sitemap_filename'])) : ''; 138 $video_sitemap_filename = isset($_POST['ivxs_video_sitemap_filename']) ? sanitize_file_name(wp_unslash($_POST['ivxs_video_sitemap_filename'])) : ''; 139 140 $image_sitemap_filename = str_replace('.xml', '', $image_sitemap_filename); 141 $video_sitemap_filename = str_replace('.xml', '', $video_sitemap_filename); 142 143 if (stripos($image_sitemap_filename, 'sitemap') !== false || stripos($video_sitemap_filename, 'sitemap') !== false) { 144 wp_redirect(add_query_arg([ 145 'page' => 'image-video-xml-sitemap', 146 'error' => 'invalid_sitemap_name' 147 ], admin_url('tools.php'))); 148 exit; 149 } 150 151 if ($enable_image_sitemap && empty($image_sitemap_filename)) { 152 $image_sitemap_filename = 'image'; 153 } 154 if ($enable_video_sitemap && empty($video_sitemap_filename)) { 155 $video_sitemap_filename = 'video'; 156 } 157 158 update_option('ivxs_image_sitemap_filename', $enable_image_sitemap ? $image_sitemap_filename : ''); 159 update_option('ivxs_video_sitemap_filename', $enable_video_sitemap ? $video_sitemap_filename : ''); 160 161 flush_rewrite_rules(); 162 163 wp_redirect(add_query_arg([ 164 'page' => 'image-video-xml-sitemap', 165 'message' => 'settings_saved', 166 ], admin_url('tools.php'))); 162 167 exit; 163 168 } … … 237 242 $image_sitemap_filename = get_option('ivxs_image_sitemap_filename', 'image'); 238 243 $video_sitemap_filename = get_option('ivxs_video_sitemap_filename', 'video'); 239 240 if (!empty($image_sitemap_filename)) { 241 add_rewrite_rule('^' . preg_quote($image_sitemap_filename) . '\.xml$', 'index.php?custom_sitemap=image', 'top'); 242 } 243 244 if (!empty($video_sitemap_filename)) { 245 add_rewrite_rule('^' . preg_quote($video_sitemap_filename) . '\.xml$', 'index.php?custom_sitemap=video', 'top'); 246 } 247 } 248 249 public function ivxs_add_query_vars($vars) { 250 $vars[] = 'custom_sitemap'; 251 return $vars; 244 245 if ($image_sitemap_filename) { 246 add_rewrite_rule( 247 '^' . $image_sitemap_filename . '\.xml$', 248 'index.php?ivxs_custom_var=' . $image_sitemap_filename, 249 'top' 250 ); 251 } 252 253 if ($video_sitemap_filename) { 254 add_rewrite_rule( 255 '^' . $video_sitemap_filename . '\.xml$', 256 'index.php?ivxs_custom_var=' . $video_sitemap_filename, 257 'top' 258 ); 259 } 260 } 261 262 public function ivxs_add_query_vars($qvars) { 263 $qvars[] = 'ivxs_custom_var'; 264 return $qvars; 252 265 } 253 266 254 267 public function ivxs_generate_custom_sitemap() { 255 $custom_sitemap = get_query_var( 'custom_sitemap' ); 256 if ( $custom_sitemap === 'image' ) { 257 $this->ivxs_generate_media_sitemap( 'image' ); 258 } elseif ( $custom_sitemap === 'video' ) { 259 $this->ivxs_generate_media_sitemap( 'video' ); 268 269 $sitemap_name = get_query_var('ivxs_custom_var'); 270 271 $image_sitemap_filename = get_option('ivxs_image_sitemap_filename', 'image'); 272 $video_sitemap_filename = get_option('ivxs_video_sitemap_filename', 'video'); 273 274 if ($sitemap_name === $image_sitemap_filename) { 275 $this->ivxs_generate_media_sitemap('image'); 276 } elseif ($sitemap_name === $video_sitemap_filename) { 277 $this->ivxs_generate_media_sitemap('video'); 260 278 } 261 279 } … … 274 292 $args = [ 275 293 'post_type' => 'attachment', 276 'post_mime_type' => $media_type === 'image' 277 ? [ 'image/jpeg', 'image/png']278 : 'video',294 'post_mime_type' => $media_type === 'image' 295 ? ['image/jpeg', 'image/png', 'image/gif', 'image/webp'] 296 : ['video/mp4', 'video/avi', 'video/mov', 'video/webm'], 279 297 'posts_per_page' => -1, 280 298 'post_status' => 'inherit', … … 286 304 while ( $query->have_posts() ) { 287 305 $query->the_post(); 288 $url = wp_get_attachment_url( get_the_ID());306 $url = wp_get_attachment_url(get_the_ID()); 289 307 $lastmod = $this->ivxs_get_post_datetime_string( get_the_ID() ); 290 308 291 309 echo '<url>'; 292 310 echo '<loc>' . esc_url( $url ) . '</loc>'; 293 echo '<lastmod>' . esc_html( $lastmod ) . '</lastmod>'; 294 311 if ( $lastmod ) { 312 echo '<lastmod>' . $media_type .'+'. esc_html( $lastmod ) . '</lastmod>'; 313 } 295 314 if ( $media_type === 'image' ) { 296 315 echo '<image:image><image:loc>' . esc_url( $url ) . '</image:loc></image:image>'; 297 316 } elseif ( $media_type === 'video' ) { 298 317 $thumbnail = esc_url( wp_get_attachment_url( get_post_thumbnail_id() ) ); 318 $title = get_the_title(); 319 $description = get_the_excerpt(); 320 299 321 echo '<video:video>'; 322 echo '<video:thumbnail_loc>' . esc_url( $thumbnail ) . '</video:thumbnail_loc>'; 323 echo '<video:title>' . esc_html( $title ) . '</video:title>'; 324 echo '<video:description>' . esc_html( wp_strip_all_tags($description) ) . '</video:description>'; 300 325 echo '<video:content_loc>' . esc_url( $url ) . '</video:content_loc>'; 301 if ( $thumbnail ) {302 echo '<video:thumbnail_loc>' . esc_url($thumbnail) . '</video:thumbnail_loc>';303 }304 326 echo '</video:video>'; 305 327 } 306 307 328 echo '</url>'; 308 329 } -
image-video-xml-sitemap/trunk/languages/image-video-xml-sitemap-ar.po
r3224078 r3310512 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2025-01-13 04:58+0000\n" 6 "PO-Revision-Date: 2025-0 1-13 05:04+0000\n"6 "PO-Revision-Date: 2025-06-12 11:13+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Arabic\n" … … 17 17 "X-Domain: image-video-xml-sitemap" 18 18 19 #: includes/class-image-video-xml-sitemap.php:10 019 #: includes/class-image-video-xml-sitemap.php:106 20 20 msgid "Documentation" 21 21 msgstr "التوثيق" 22 22 23 #: includes/class-image-video-xml-sitemap.php:5 223 #: includes/class-image-video-xml-sitemap.php:57 24 24 msgid "" 25 25 "Enable the Image & Video XML sitemaps. These sitemaps are specialized files " … … 41 41 "خيارات تخصيص متقدمة." 42 42 43 #: includes/class-image-video-xml-sitemap.php:101 43 #: includes/class-image-video-xml-sitemap.php:44 44 msgid "Error:" 45 msgstr "خطأ:" 46 47 #: includes/class-image-video-xml-sitemap.php:107 44 48 msgid "" 45 49 "Find solutions to common issues and learn how to get the most out of the " … … 53 57 msgstr "هاربالسينه بارمار" 54 58 55 #: includes/class-image-video-xml-sitemap.php:1 0659 #: includes/class-image-video-xml-sitemap.php:112 56 60 msgid "Help and Support" 57 61 msgstr "المساعدة والدعم" … … 61 65 msgstr "https://profiles.wordpress.org/developer1998/" 62 66 63 #: includes/class-image-video-xml-sitemap.php:1 0767 #: includes/class-image-video-xml-sitemap.php:113 64 68 msgid "" 65 69 "If you need assistance, visit our support forum or check the documentation " … … 70 74 "للحصول على إرشادات مفصلة. هدفنا هو مساعدتك في تحقيق أفضل أداء لموقعك." 71 75 76 #. Name of the plugin 72 77 #: includes/class-image-video-xml-sitemap.php:21 73 78 #: includes/class-image-video-xml-sitemap.php:22 79 #: includes/class-image-video-xml-sitemap.php:49 74 80 msgid "Image & Video XML Sitemap" 75 81 msgstr "خريطة موقع XML للصور والفيديو" 76 82 77 #. Name of the plugin 78 #: includes/class-image-video-xml-sitemap.php:44 79 msgid "Image & Video XML Sitemaps" 83 #: image-video-xml-sitemap.php:61 image-video-xml-sitemap.php:74 84 #, fuzzy 85 #| msgid "Image & Video XML Sitemaps" 86 msgid "Image & Video XML Sitemap:" 80 87 msgstr "خريطة موقع XML للصور والفيديو" 81 88 82 #: image-video-xml-sitemap.php:56 image-video-xml-sitemap.php:69 83 msgid "Image & Video XML Sitemaps:" 84 msgstr "خريطة موقع XML للصور والفيديو:" 85 86 #: includes/class-image-video-xml-sitemap.php:57 89 #: includes/class-image-video-xml-sitemap.php:62 87 90 msgid "Image Sitemap" 88 91 msgstr "خريطة موقع الصورة" 89 92 90 #: includes/class-image-video-xml-sitemap.php: 6793 #: includes/class-image-video-xml-sitemap.php:72 91 94 msgid "Image Sitemap File Name:" 92 95 msgstr "اسم ملف خريطة موقع الصورة:" 93 96 94 #: includes/class-image-video-xml-sitemap.php:10 297 #: includes/class-image-video-xml-sitemap.php:108 95 98 msgid "Read the Documentation" 96 99 msgstr "قراءة الوثائق" 97 100 98 #: image-video-xml-sitemap.php: 57101 #: image-video-xml-sitemap.php:62 99 102 msgid "" 100 103 "Requires Yoast SEO to be installed and activated. Please install and " … … 104 107 "الإضافة." 105 108 106 #: includes/class-image-video-xml-sitemap.php:1 08109 #: includes/class-image-video-xml-sitemap.php:114 107 110 msgid "Support Forum" 108 111 msgstr "منتدى الدعم" 109 112 110 #: includes/class-image-video-xml-sitemap.php:78 113 #: includes/class-image-video-xml-sitemap.php:44 114 msgid "" 115 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 116 "with SEO plugins." 117 msgstr "" 118 "لا يمكن أن يحتوي اسم الملف على كلمة \"sitemap\" بسبب التعارضات المحتملة مع " 119 "مكونات SEO الإضافية." 120 121 #: includes/class-image-video-xml-sitemap.php:83 111 122 msgid "Video Sitemap" 112 123 msgstr "خريطة موقع الفيديو" 113 124 114 #: includes/class-image-video-xml-sitemap.php: 88125 #: includes/class-image-video-xml-sitemap.php:93 115 126 msgid "Video Sitemap File Name:" 116 127 msgstr "اسم ملف خريطة موقع الفيديو:" 117 128 118 #: includes/class-image-video-xml-sitemap.php: 58129 #: includes/class-image-video-xml-sitemap.php:63 119 130 msgid "" 120 131 "When you upload an image, WordPress automatically creates an image page " … … 123 134 "عندما ترفع صورة، ينشئ ووردبريس تلقائيًا صفحة للصور (عنوان URL للمرفق) لها." 124 135 125 #: includes/class-image-video-xml-sitemap.php: 79136 #: includes/class-image-video-xml-sitemap.php:84 126 137 msgid "" 127 138 "When you upload an video, WordPress automatically creates an video page " … … 131 142 "(عنوان URL مرفق) له." 132 143 133 #: includes/class-image-video-xml-sitemap.php:5 1144 #: includes/class-image-video-xml-sitemap.php:56 134 145 msgid "XML Sitemaps" 135 146 msgstr "خرائط مواقع XML" 136 147 137 #: includes/class-image-video-xml-sitemap.php:1 18148 #: includes/class-image-video-xml-sitemap.php:128 138 149 msgid "You are not allowed to perform this action." 139 150 msgstr "لا يُسمح لك بتنفيذ هذا الإجراء." -
image-video-xml-sitemap/trunk/languages/image-video-xml-sitemap-de_DE.po
r3224078 r3310512 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2025-01-13 04:58+0000\n" 6 "PO-Revision-Date: 2025-0 1-13 05:08+0000\n"6 "PO-Revision-Date: 2025-06-12 11:14+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: German\n" … … 16 16 "X-Domain: image-video-xml-sitemap" 17 17 18 #: includes/class-image-video-xml-sitemap.php:10 018 #: includes/class-image-video-xml-sitemap.php:106 19 19 msgid "Documentation" 20 20 msgstr "Dokumentation" 21 21 22 #: includes/class-image-video-xml-sitemap.php:5 222 #: includes/class-image-video-xml-sitemap.php:57 23 23 msgid "" 24 24 "Enable the Image & Video XML sitemaps. These sitemaps are specialized files " … … 41 41 "erweiterten Anpassungsoptionen." 42 42 43 #: includes/class-image-video-xml-sitemap.php:101 43 #: includes/class-image-video-xml-sitemap.php:44 44 msgid "Error:" 45 msgstr "Error:" 46 47 #: includes/class-image-video-xml-sitemap.php:107 44 48 msgid "" 45 49 "Find solutions to common issues and learn how to get the most out of the " … … 53 57 msgstr "Harpalsinh Parmar" 54 58 55 #: includes/class-image-video-xml-sitemap.php:1 0659 #: includes/class-image-video-xml-sitemap.php:112 56 60 msgid "Help and Support" 57 61 msgstr "Hilfe und Unterstützung" … … 61 65 msgstr "https://profiles.wordpress.org/developer1998/" 62 66 63 #: includes/class-image-video-xml-sitemap.php:1 0767 #: includes/class-image-video-xml-sitemap.php:113 64 68 msgid "" 65 69 "If you need assistance, visit our support forum or check the documentation " … … 72 76 "erzielen." 73 77 78 #. Name of the plugin 74 79 #: includes/class-image-video-xml-sitemap.php:21 75 80 #: includes/class-image-video-xml-sitemap.php:22 81 #: includes/class-image-video-xml-sitemap.php:49 76 82 msgid "Image & Video XML Sitemap" 77 83 msgstr "Bild & Video XML-Sitemap" 78 84 79 #. Name of the plugin 80 #: includes/class-image-video-xml-sitemap.php:44 81 msgid "Image & Video XML Sitemaps" 85 #: image-video-xml-sitemap.php:61 image-video-xml-sitemap.php:74 86 #, fuzzy 87 #| msgid "Image & Video XML Sitemaps" 88 msgid "Image & Video XML Sitemap:" 82 89 msgstr "Bild & Video XML-Sitemaps" 83 90 84 #: image-video-xml-sitemap.php:56 image-video-xml-sitemap.php:69 85 msgid "Image & Video XML Sitemaps:" 86 msgstr "Bild & Video XML-Sitemaps:" 87 88 #: includes/class-image-video-xml-sitemap.php:57 91 #: includes/class-image-video-xml-sitemap.php:62 89 92 msgid "Image Sitemap" 90 93 msgstr "Bild-Sitemap" 91 94 92 #: includes/class-image-video-xml-sitemap.php: 6795 #: includes/class-image-video-xml-sitemap.php:72 93 96 msgid "Image Sitemap File Name:" 94 97 msgstr "Bild Sitemap Dateiname:" 95 98 96 #: includes/class-image-video-xml-sitemap.php:10 299 #: includes/class-image-video-xml-sitemap.php:108 97 100 msgid "Read the Documentation" 98 101 msgstr "Lesen Sie die Dokumentation" 99 102 100 #: image-video-xml-sitemap.php: 57103 #: image-video-xml-sitemap.php:62 101 104 msgid "" 102 105 "Requires Yoast SEO to be installed and activated. Please install and " … … 106 109 "und aktivieren Sie Yoast SEO, um dieses Plugin zu verwenden." 107 110 108 #: includes/class-image-video-xml-sitemap.php:1 08111 #: includes/class-image-video-xml-sitemap.php:114 109 112 msgid "Support Forum" 110 113 msgstr "Support-Forum" 111 114 112 #: includes/class-image-video-xml-sitemap.php:78 115 #: includes/class-image-video-xml-sitemap.php:44 116 msgid "" 117 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 118 "with SEO plugins." 119 msgstr "" 120 "Der Dateiname darf aufgrund möglicher Konflikte mit SEO-Plugins nicht das " 121 "Wort „Sitemap“ enthalten." 122 123 #: includes/class-image-video-xml-sitemap.php:83 113 124 msgid "Video Sitemap" 114 125 msgstr "Video-Sitemap" 115 126 116 #: includes/class-image-video-xml-sitemap.php: 88127 #: includes/class-image-video-xml-sitemap.php:93 117 128 msgid "Video Sitemap File Name:" 118 129 msgstr "Video-Sitemap Dateiname:" 119 130 120 #: includes/class-image-video-xml-sitemap.php: 58131 #: includes/class-image-video-xml-sitemap.php:63 121 132 msgid "" 122 133 "When you upload an image, WordPress automatically creates an image page " … … 126 137 "(Anhang-URL) für dieses Bild." 127 138 128 #: includes/class-image-video-xml-sitemap.php: 79139 #: includes/class-image-video-xml-sitemap.php:84 129 140 msgid "" 130 141 "When you upload an video, WordPress automatically creates an video page " … … 134 145 "(Anhang-URL) für das Video." 135 146 136 #: includes/class-image-video-xml-sitemap.php:5 1147 #: includes/class-image-video-xml-sitemap.php:56 137 148 msgid "XML Sitemaps" 138 149 msgstr "XML-Sitemaps" 139 150 140 #: includes/class-image-video-xml-sitemap.php:1 18151 #: includes/class-image-video-xml-sitemap.php:128 141 152 msgid "You are not allowed to perform this action." 142 153 msgstr "Sie sind nicht berechtigt, diese Aktion durchzuführen." -
image-video-xml-sitemap/trunk/languages/image-video-xml-sitemap-en_US.po
r3224078 r3310512 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2025-01-13 04:58+0000\n" 6 "PO-Revision-Date: 2025-0 1-13 05:01+0000\n"6 "PO-Revision-Date: 2025-06-12 11:14+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: English (United States)\n" … … 16 16 "X-Domain: image-video-xml-sitemap" 17 17 18 #: includes/class-image-video-xml-sitemap.php:10 018 #: includes/class-image-video-xml-sitemap.php:106 19 19 msgid "Documentation" 20 20 msgstr "Documentation" 21 21 22 #: includes/class-image-video-xml-sitemap.php:5 222 #: includes/class-image-video-xml-sitemap.php:57 23 23 msgid "" 24 24 "Enable the Image & Video XML sitemaps. These sitemaps are specialized files " … … 40 40 "options." 41 41 42 #: includes/class-image-video-xml-sitemap.php:101 42 #: includes/class-image-video-xml-sitemap.php:44 43 msgid "Error:" 44 msgstr "Error:" 45 46 #: includes/class-image-video-xml-sitemap.php:107 43 47 msgid "" 44 48 "Find solutions to common issues and learn how to get the most out of the " … … 52 56 msgstr "Harpalsinh Parmar" 53 57 54 #: includes/class-image-video-xml-sitemap.php:1 0658 #: includes/class-image-video-xml-sitemap.php:112 55 59 msgid "Help and Support" 56 60 msgstr "Help and Support" … … 60 64 msgstr "https://profiles.wordpress.org/developer1998/" 61 65 62 #: includes/class-image-video-xml-sitemap.php:1 0766 #: includes/class-image-video-xml-sitemap.php:113 63 67 msgid "" 64 68 "If you need assistance, visit our support forum or check the documentation " … … 70 74 "for your site." 71 75 76 #. Name of the plugin 72 77 #: includes/class-image-video-xml-sitemap.php:21 73 78 #: includes/class-image-video-xml-sitemap.php:22 79 #: includes/class-image-video-xml-sitemap.php:49 74 80 msgid "Image & Video XML Sitemap" 75 81 msgstr "Image & Video XML Sitemap" 76 82 77 #. Name of the plugin 78 #: includes/class-image-video-xml-sitemap.php:44 79 msgid "Image & Video XML Sitemaps" 83 #: image-video-xml-sitemap.php:61 image-video-xml-sitemap.php:74 84 #, fuzzy 85 #| msgid "Image & Video XML Sitemaps" 86 msgid "Image & Video XML Sitemap:" 80 87 msgstr "Image & Video XML Sitemaps" 81 88 82 #: image-video-xml-sitemap.php:56 image-video-xml-sitemap.php:69 83 msgid "Image & Video XML Sitemaps:" 84 msgstr "Image & Video XML Sitemaps:" 85 86 #: includes/class-image-video-xml-sitemap.php:57 89 #: includes/class-image-video-xml-sitemap.php:62 87 90 msgid "Image Sitemap" 88 91 msgstr "Image Sitemap" 89 92 90 #: includes/class-image-video-xml-sitemap.php: 6793 #: includes/class-image-video-xml-sitemap.php:72 91 94 msgid "Image Sitemap File Name:" 92 95 msgstr "Image Sitemap File Name:" 93 96 94 #: includes/class-image-video-xml-sitemap.php:10 297 #: includes/class-image-video-xml-sitemap.php:108 95 98 msgid "Read the Documentation" 96 99 msgstr "Read the Documentation" 97 100 98 #: image-video-xml-sitemap.php: 57101 #: image-video-xml-sitemap.php:62 99 102 msgid "" 100 103 "Requires Yoast SEO to be installed and activated. Please install and " … … 104 107 "activate Yoast SEO to use this plugin." 105 108 106 #: includes/class-image-video-xml-sitemap.php:1 08109 #: includes/class-image-video-xml-sitemap.php:114 107 110 msgid "Support Forum" 108 111 msgstr "Support Forum" 109 112 110 #: includes/class-image-video-xml-sitemap.php:78 113 #: includes/class-image-video-xml-sitemap.php:44 114 msgid "" 115 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 116 "with SEO plugins." 117 msgstr "" 118 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 119 "with SEO plugins." 120 121 #: includes/class-image-video-xml-sitemap.php:83 111 122 msgid "Video Sitemap" 112 123 msgstr "Video Sitemap" 113 124 114 #: includes/class-image-video-xml-sitemap.php: 88125 #: includes/class-image-video-xml-sitemap.php:93 115 126 msgid "Video Sitemap File Name:" 116 127 msgstr "Video Sitemap File Name:" 117 128 118 #: includes/class-image-video-xml-sitemap.php: 58129 #: includes/class-image-video-xml-sitemap.php:63 119 130 msgid "" 120 131 "When you upload an image, WordPress automatically creates an image page " … … 124 135 "(attachment URL) for it." 125 136 126 #: includes/class-image-video-xml-sitemap.php: 79137 #: includes/class-image-video-xml-sitemap.php:84 127 138 msgid "" 128 139 "When you upload an video, WordPress automatically creates an video page " … … 132 143 "(attachment URL) for it." 133 144 134 #: includes/class-image-video-xml-sitemap.php:5 1145 #: includes/class-image-video-xml-sitemap.php:56 135 146 msgid "XML Sitemaps" 136 147 msgstr "XML Sitemaps" 137 148 138 #: includes/class-image-video-xml-sitemap.php:1 18149 #: includes/class-image-video-xml-sitemap.php:128 139 150 msgid "You are not allowed to perform this action." 140 151 msgstr "You are not allowed to perform this action." -
image-video-xml-sitemap/trunk/languages/image-video-xml-sitemap-ja.po
r3224078 r3310512 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2025-01-13 04:58+0000\n" 6 "PO-Revision-Date: 2025-0 1-13 05:12+0000\n"6 "PO-Revision-Date: 2025-06-12 11:15+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Japanese\n" … … 16 16 "X-Domain: image-video-xml-sitemap" 17 17 18 #: includes/class-image-video-xml-sitemap.php:10 018 #: includes/class-image-video-xml-sitemap.php:106 19 19 msgid "Documentation" 20 20 msgstr "ドキュメンテーション" 21 21 22 #: includes/class-image-video-xml-sitemap.php:5 222 #: includes/class-image-video-xml-sitemap.php:57 23 23 msgid "" 24 24 "Enable the Image & Video XML sitemaps. These sitemaps are specialized files " … … 37 37 "SEOと完全に互換性があり、高度なカスタマイズオプションがあります。" 38 38 39 #: includes/class-image-video-xml-sitemap.php:101 39 #: includes/class-image-video-xml-sitemap.php:44 40 msgid "Error:" 41 msgstr "エラー:" 42 43 #: includes/class-image-video-xml-sitemap.php:107 40 44 msgid "" 41 45 "Find solutions to common issues and learn how to get the most out of the " … … 47 51 msgstr "ハルパルシン・パルマル" 48 52 49 #: includes/class-image-video-xml-sitemap.php:1 0653 #: includes/class-image-video-xml-sitemap.php:112 50 54 msgid "Help and Support" 51 55 msgstr "ヘルプ&サポート" … … 55 59 msgstr "https://profiles.wordpress.org/developer1998/" 56 60 57 #: includes/class-image-video-xml-sitemap.php:1 0761 #: includes/class-image-video-xml-sitemap.php:113 58 62 msgid "" 59 63 "If you need assistance, visit our support forum or check the documentation " … … 63 67 "サポートが必要な場合は、サポートフォーラムをご覧いただくか、ドキュメントで詳細なガイダンスをご確認ください。私たちの目標は、お客様のサイトが最高のパフォーマンスを達成できるようお手伝いすることです。" 64 68 69 #. Name of the plugin 65 70 #: includes/class-image-video-xml-sitemap.php:21 66 71 #: includes/class-image-video-xml-sitemap.php:22 72 #: includes/class-image-video-xml-sitemap.php:49 67 73 msgid "Image & Video XML Sitemap" 68 74 msgstr "画像・動画XMLサイトマップ" 69 75 70 #. Name of the plugin 71 #: includes/class-image-video-xml-sitemap.php:44 72 msgid "Image & Video XML Sitemaps" 76 #: image-video-xml-sitemap.php:61 image-video-xml-sitemap.php:74 77 #, fuzzy 78 #| msgid "Image & Video XML Sitemaps" 79 msgid "Image & Video XML Sitemap:" 73 80 msgstr "画像・動画XMLサイトマップ" 74 81 75 #: image-video-xml-sitemap.php:56 image-video-xml-sitemap.php:69 76 msgid "Image & Video XML Sitemaps:" 77 msgstr "画像・動画XMLサイトマップ" 78 79 #: includes/class-image-video-xml-sitemap.php:57 82 #: includes/class-image-video-xml-sitemap.php:62 80 83 msgid "Image Sitemap" 81 84 msgstr "画像サイトマップ" 82 85 83 #: includes/class-image-video-xml-sitemap.php: 6786 #: includes/class-image-video-xml-sitemap.php:72 84 87 msgid "Image Sitemap File Name:" 85 88 msgstr "画像サイトマップ ファイル名:" 86 89 87 #: includes/class-image-video-xml-sitemap.php:10 290 #: includes/class-image-video-xml-sitemap.php:108 88 91 msgid "Read the Documentation" 89 92 msgstr "ドキュメントを読む" 90 93 91 #: image-video-xml-sitemap.php: 5794 #: image-video-xml-sitemap.php:62 92 95 msgid "" 93 96 "Requires Yoast SEO to be installed and activated. Please install and " … … 95 98 msgstr "Yoast SEOのインストールと有効化が必要です。このプラグインを使用するには、Yoast SEOをインストールして有効にしてください。" 96 99 97 #: includes/class-image-video-xml-sitemap.php:1 08100 #: includes/class-image-video-xml-sitemap.php:114 98 101 msgid "Support Forum" 99 102 msgstr "サポートフォーラム" 100 103 101 #: includes/class-image-video-xml-sitemap.php:78 104 #: includes/class-image-video-xml-sitemap.php:44 105 msgid "" 106 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 107 "with SEO plugins." 108 msgstr "SEO プラグインとの競合の可能性があるため、ファイル名に「sitemap」という単語を含めることはできません。" 109 110 #: includes/class-image-video-xml-sitemap.php:83 102 111 msgid "Video Sitemap" 103 112 msgstr "動画サイトマップ" 104 113 105 #: includes/class-image-video-xml-sitemap.php: 88114 #: includes/class-image-video-xml-sitemap.php:93 106 115 msgid "Video Sitemap File Name:" 107 116 msgstr "動画サイトマップ ファイル名:" 108 117 109 #: includes/class-image-video-xml-sitemap.php: 58118 #: includes/class-image-video-xml-sitemap.php:63 110 119 msgid "" 111 120 "When you upload an image, WordPress automatically creates an image page " … … 113 122 msgstr "画像をアップロードすると、WordPressは自動的に画像ページ(添付URL)を作成します。" 114 123 115 #: includes/class-image-video-xml-sitemap.php: 79124 #: includes/class-image-video-xml-sitemap.php:84 116 125 msgid "" 117 126 "When you upload an video, WordPress automatically creates an video page " … … 119 128 msgstr "動画をアップロードすると、WordPressは自動的に動画ページ(添付URL)を作成します。" 120 129 121 #: includes/class-image-video-xml-sitemap.php:5 1130 #: includes/class-image-video-xml-sitemap.php:56 122 131 msgid "XML Sitemaps" 123 132 msgstr "XMLサイトマップ" 124 133 125 #: includes/class-image-video-xml-sitemap.php:1 18134 #: includes/class-image-video-xml-sitemap.php:128 126 135 msgid "You are not allowed to perform this action." 127 136 msgstr "この行為は許されない。" -
image-video-xml-sitemap/trunk/languages/image-video-xml-sitemap-nl_NL.po
r3224078 r3310512 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2025-01-13 04:58+0000\n" 6 "PO-Revision-Date: 2025-0 1-13 05:15+0000\n"6 "PO-Revision-Date: 2025-06-12 11:17+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Dutch\n" … … 16 16 "X-Domain: image-video-xml-sitemap" 17 17 18 #: includes/class-image-video-xml-sitemap.php:10 018 #: includes/class-image-video-xml-sitemap.php:106 19 19 msgid "Documentation" 20 20 msgstr "Documentatie" 21 21 22 #: includes/class-image-video-xml-sitemap.php:5 222 #: includes/class-image-video-xml-sitemap.php:57 23 23 msgid "" 24 24 "Enable the Image & Video XML sitemaps. These sitemaps are specialized files " … … 40 40 "aanpassingsopties." 41 41 42 #: includes/class-image-video-xml-sitemap.php:101 42 #: includes/class-image-video-xml-sitemap.php:44 43 msgid "Error:" 44 msgstr "Fout:" 45 46 #: includes/class-image-video-xml-sitemap.php:107 43 47 msgid "" 44 48 "Find solutions to common issues and learn how to get the most out of the " … … 52 56 msgstr "Harpalsinh Parmar" 53 57 54 #: includes/class-image-video-xml-sitemap.php:1 0658 #: includes/class-image-video-xml-sitemap.php:112 55 59 msgid "Help and Support" 56 60 msgstr "Hulp en ondersteuning" … … 60 64 msgstr "https://profiles.wordpress.org/developer1998/" 61 65 62 #: includes/class-image-video-xml-sitemap.php:1 0766 #: includes/class-image-video-xml-sitemap.php:113 63 67 msgid "" 64 68 "If you need assistance, visit our support forum or check the documentation " … … 70 74 "beste prestaties voor je site te bereiken." 71 75 76 #. Name of the plugin 72 77 #: includes/class-image-video-xml-sitemap.php:21 73 78 #: includes/class-image-video-xml-sitemap.php:22 79 #: includes/class-image-video-xml-sitemap.php:49 74 80 msgid "Image & Video XML Sitemap" 75 81 msgstr "Afbeelding & video XML-sitemap" 76 82 77 #. Name of the plugin 78 #: includes/class-image-video-xml-sitemap.php:44 79 msgid "Image & Video XML Sitemaps" 83 #: image-video-xml-sitemap.php:61 image-video-xml-sitemap.php:74 84 #, fuzzy 85 #| msgid "Image & Video XML Sitemaps" 86 msgid "Image & Video XML Sitemap:" 80 87 msgstr "Afbeelding & video XML-sitemaps" 81 88 82 #: image-video-xml-sitemap.php:56 image-video-xml-sitemap.php:69 83 msgid "Image & Video XML Sitemaps:" 84 msgstr "Afbeelding & video XML-sitemaps:" 85 86 #: includes/class-image-video-xml-sitemap.php:57 89 #: includes/class-image-video-xml-sitemap.php:62 87 90 msgid "Image Sitemap" 88 91 msgstr "Afbeelding Sitemap" 89 92 90 #: includes/class-image-video-xml-sitemap.php: 6793 #: includes/class-image-video-xml-sitemap.php:72 91 94 msgid "Image Sitemap File Name:" 92 95 msgstr "Sitemap voor afbeeldingen Bestandsnaam:" 93 96 94 #: includes/class-image-video-xml-sitemap.php:10 297 #: includes/class-image-video-xml-sitemap.php:108 95 98 msgid "Read the Documentation" 96 99 msgstr "Lees de documentatie" 97 100 98 #: image-video-xml-sitemap.php: 57101 #: image-video-xml-sitemap.php:62 99 102 msgid "" 100 103 "Requires Yoast SEO to be installed and activated. Please install and " … … 104 107 "activeer Yoast SEO om deze plugin te gebruiken." 105 108 106 #: includes/class-image-video-xml-sitemap.php:1 08109 #: includes/class-image-video-xml-sitemap.php:114 107 110 msgid "Support Forum" 108 111 msgstr "Ondersteuningsforum" 109 112 110 #: includes/class-image-video-xml-sitemap.php:78 113 #: includes/class-image-video-xml-sitemap.php:44 114 msgid "" 115 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 116 "with SEO plugins." 117 msgstr "" 118 "De bestandsnaam mag het woord \"sitemap\" niet bevatten vanwege mogelijke " 119 "conflicten met SEO-plug-ins." 120 121 #: includes/class-image-video-xml-sitemap.php:83 111 122 msgid "Video Sitemap" 112 123 msgstr "Video Sitemap" 113 124 114 #: includes/class-image-video-xml-sitemap.php: 88125 #: includes/class-image-video-xml-sitemap.php:93 115 126 msgid "Video Sitemap File Name:" 116 127 msgstr "Video Sitemap Bestandsnaam:" 117 128 118 #: includes/class-image-video-xml-sitemap.php: 58129 #: includes/class-image-video-xml-sitemap.php:63 119 130 msgid "" 120 131 "When you upload an image, WordPress automatically creates an image page " … … 124 135 "afbeeldingspagina (URL met bijlage) voor aan." 125 136 126 #: includes/class-image-video-xml-sitemap.php: 79137 #: includes/class-image-video-xml-sitemap.php:84 127 138 msgid "" 128 139 "When you upload an video, WordPress automatically creates an video page " … … 132 143 "(URL met bijlage) voor aan." 133 144 134 #: includes/class-image-video-xml-sitemap.php:5 1145 #: includes/class-image-video-xml-sitemap.php:56 135 146 msgid "XML Sitemaps" 136 147 msgstr "XML-sitemaps" 137 148 138 #: includes/class-image-video-xml-sitemap.php:1 18149 #: includes/class-image-video-xml-sitemap.php:128 139 150 msgid "You are not allowed to perform this action." 140 151 msgstr "Je mag deze actie niet uitvoeren." -
image-video-xml-sitemap/trunk/languages/image-video-xml-sitemap-zh_CN.po
r3224078 r3310512 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2025-01-13 04:58+0000\n" 6 "PO-Revision-Date: 2025-0 1-13 05:18+0000\n"6 "PO-Revision-Date: 2025-06-12 11:19+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Chinese (China)\n" … … 16 16 "X-Domain: image-video-xml-sitemap" 17 17 18 #: includes/class-image-video-xml-sitemap.php:10 018 #: includes/class-image-video-xml-sitemap.php:106 19 19 msgid "Documentation" 20 20 msgstr "文件" 21 21 22 #: includes/class-image-video-xml-sitemap.php:5 222 #: includes/class-image-video-xml-sitemap.php:57 23 23 msgid "" 24 24 "Enable the Image & Video XML sitemaps. These sitemaps are specialized files " … … 34 34 msgstr "通过为图片和视频创建单独的网站地图,增强网站的媒体搜索引擎优化。与 Yoast SEO 完全兼容,并提供高级定制选项。" 35 35 36 #: includes/class-image-video-xml-sitemap.php:101 36 #: includes/class-image-video-xml-sitemap.php:44 37 msgid "Error:" 38 msgstr "错误:" 39 40 #: includes/class-image-video-xml-sitemap.php:107 37 41 msgid "" 38 42 "Find solutions to common issues and learn how to get the most out of the " … … 44 48 msgstr "Harpalsinh Parmar" 45 49 46 #: includes/class-image-video-xml-sitemap.php:1 0650 #: includes/class-image-video-xml-sitemap.php:112 47 51 msgid "Help and Support" 48 52 msgstr "帮助和支持" … … 52 56 msgstr "https://profiles.wordpress.org/developer1998/" 53 57 54 #: includes/class-image-video-xml-sitemap.php:1 0758 #: includes/class-image-video-xml-sitemap.php:113 55 59 msgid "" 56 60 "If you need assistance, visit our support forum or check the documentation " … … 59 63 msgstr "如果您需要帮助,请访问我们的支持论坛或查看文档以获得详细指导。我们的目标是帮助您的网站实现最佳性能。" 60 64 65 #. Name of the plugin 61 66 #: includes/class-image-video-xml-sitemap.php:21 62 67 #: includes/class-image-video-xml-sitemap.php:22 68 #: includes/class-image-video-xml-sitemap.php:49 63 69 msgid "Image & Video XML Sitemap" 64 70 msgstr "图像和视频 XML 网站地图" 65 71 66 #. Name of the plugin 67 #: includes/class-image-video-xml-sitemap.php:44 68 msgid "Image & Video XML Sitemaps" 72 #: image-video-xml-sitemap.php:61 image-video-xml-sitemap.php:74 73 #, fuzzy 74 #| msgid "Image & Video XML Sitemaps" 75 msgid "Image & Video XML Sitemap:" 69 76 msgstr "图像和视频 XML 网站地图" 70 77 71 #: image-video-xml-sitemap.php:56 image-video-xml-sitemap.php:69 72 msgid "Image & Video XML Sitemaps:" 73 msgstr "图像和视频 XML 网站地图" 74 75 #: includes/class-image-video-xml-sitemap.php:57 78 #: includes/class-image-video-xml-sitemap.php:62 76 79 msgid "Image Sitemap" 77 80 msgstr "图像网站地图" 78 81 79 #: includes/class-image-video-xml-sitemap.php: 6782 #: includes/class-image-video-xml-sitemap.php:72 80 83 msgid "Image Sitemap File Name:" 81 84 msgstr "图像网站地图文件名:" 82 85 83 #: includes/class-image-video-xml-sitemap.php:10 286 #: includes/class-image-video-xml-sitemap.php:108 84 87 msgid "Read the Documentation" 85 88 msgstr "阅读文件" 86 89 87 #: image-video-xml-sitemap.php: 5790 #: image-video-xml-sitemap.php:62 88 91 msgid "" 89 92 "Requires Yoast SEO to be installed and activated. Please install and " … … 91 94 msgstr "需要安装并激活 Yoast SEO。请安装并激活 Yoast SEO 以使用此插件。" 92 95 93 #: includes/class-image-video-xml-sitemap.php:1 0896 #: includes/class-image-video-xml-sitemap.php:114 94 97 msgid "Support Forum" 95 98 msgstr "支持论坛" 96 99 97 #: includes/class-image-video-xml-sitemap.php:78 100 #: includes/class-image-video-xml-sitemap.php:44 101 msgid "" 102 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 103 "with SEO plugins." 104 msgstr "由于可能与 SEO 插件冲突,文件名不能包含单词“sitemap”。" 105 106 #: includes/class-image-video-xml-sitemap.php:83 98 107 msgid "Video Sitemap" 99 108 msgstr "视频网站地图" 100 109 101 #: includes/class-image-video-xml-sitemap.php: 88110 #: includes/class-image-video-xml-sitemap.php:93 102 111 msgid "Video Sitemap File Name:" 103 112 msgstr "视频网站地图文件名:" 104 113 105 #: includes/class-image-video-xml-sitemap.php: 58114 #: includes/class-image-video-xml-sitemap.php:63 106 115 msgid "" 107 116 "When you upload an image, WordPress automatically creates an image page " … … 109 118 msgstr "当您上传图片时,WordPress 会自动为其创建一个图片页面(附件 URL)。" 110 119 111 #: includes/class-image-video-xml-sitemap.php: 79120 #: includes/class-image-video-xml-sitemap.php:84 112 121 msgid "" 113 122 "When you upload an video, WordPress automatically creates an video page " … … 115 124 msgstr "当您上传视频时,WordPress 会自动为其创建一个视频页面(附件 URL)。" 116 125 117 #: includes/class-image-video-xml-sitemap.php:5 1126 #: includes/class-image-video-xml-sitemap.php:56 118 127 msgid "XML Sitemaps" 119 128 msgstr "XML 网站地图" 120 129 121 #: includes/class-image-video-xml-sitemap.php:1 18130 #: includes/class-image-video-xml-sitemap.php:128 122 131 msgid "You are not allowed to perform this action." 123 132 msgstr "不允许执行此操作。" -
image-video-xml-sitemap/trunk/languages/image-video-xml-sitemap.pot
r3224078 r3310512 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: Image & Video XML Sitemap s\n"4 "Project-Id-Version: Image & Video XML Sitemap\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 2025-0 1-13 04:58+0000\n"6 "POT-Creation-Date: 2025-06-12 11:11+0000\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 14 14 "Content-Transfer-Encoding: 8bit\n" 15 15 "X-Generator: Loco https://localise.biz/\n" 16 "X-Loco-Version: 2.6.14; wp-6. 7.1\n"16 "X-Loco-Version: 2.6.14; wp-6.8.1\n" 17 17 "X-Domain: image-video-xml-sitemap" 18 18 19 #: includes/class-image-video-xml-sitemap.php:10 019 #: includes/class-image-video-xml-sitemap.php:106 20 20 msgid "Documentation" 21 21 msgstr "" 22 22 23 #: includes/class-image-video-xml-sitemap.php:5 223 #: includes/class-image-video-xml-sitemap.php:57 24 24 msgid "" 25 25 "Enable the Image & Video XML sitemaps. These sitemaps are specialized files " … … 35 35 msgstr "" 36 36 37 #: includes/class-image-video-xml-sitemap.php:101 37 #: includes/class-image-video-xml-sitemap.php:44 38 msgid "Error:" 39 msgstr "" 40 41 #: includes/class-image-video-xml-sitemap.php:107 38 42 msgid "" 39 43 "Find solutions to common issues and learn how to get the most out of the " … … 45 49 msgstr "" 46 50 47 #: includes/class-image-video-xml-sitemap.php:1 0651 #: includes/class-image-video-xml-sitemap.php:112 48 52 msgid "Help and Support" 49 53 msgstr "" … … 53 57 msgstr "" 54 58 55 #: includes/class-image-video-xml-sitemap.php:1 0759 #: includes/class-image-video-xml-sitemap.php:113 56 60 msgid "" 57 61 "If you need assistance, visit our support forum or check the documentation " … … 60 64 msgstr "" 61 65 66 #. Name of the plugin 62 67 #: includes/class-image-video-xml-sitemap.php:21 63 68 #: includes/class-image-video-xml-sitemap.php:22 69 #: includes/class-image-video-xml-sitemap.php:49 64 70 msgid "Image & Video XML Sitemap" 65 71 msgstr "" 66 72 67 #. Name of the plugin 68 #: includes/class-image-video-xml-sitemap.php:44 69 msgid "Image & Video XML Sitemaps" 73 #: image-video-xml-sitemap.php:61 image-video-xml-sitemap.php:74 74 msgid "Image & Video XML Sitemap:" 70 75 msgstr "" 71 76 72 #: image-video-xml-sitemap.php:56 image-video-xml-sitemap.php:69 73 msgid "Image & Video XML Sitemaps:" 74 msgstr "" 75 76 #: includes/class-image-video-xml-sitemap.php:57 77 #: includes/class-image-video-xml-sitemap.php:62 77 78 msgid "Image Sitemap" 78 79 msgstr "" 79 80 80 #: includes/class-image-video-xml-sitemap.php: 6781 #: includes/class-image-video-xml-sitemap.php:72 81 82 msgid "Image Sitemap File Name:" 82 83 msgstr "" 83 84 84 #: includes/class-image-video-xml-sitemap.php:10 285 #: includes/class-image-video-xml-sitemap.php:108 85 86 msgid "Read the Documentation" 86 87 msgstr "" 87 88 88 #: image-video-xml-sitemap.php: 5789 #: image-video-xml-sitemap.php:62 89 90 msgid "" 90 91 "Requires Yoast SEO to be installed and activated. Please install and " … … 92 93 msgstr "" 93 94 94 #: includes/class-image-video-xml-sitemap.php:1 0895 #: includes/class-image-video-xml-sitemap.php:114 95 96 msgid "Support Forum" 96 97 msgstr "" 97 98 98 #: includes/class-image-video-xml-sitemap.php:78 99 #: includes/class-image-video-xml-sitemap.php:44 100 msgid "" 101 "The filename cannot contain the word \"sitemap\" due to possible conflicts " 102 "with SEO plugins." 103 msgstr "" 104 105 #: includes/class-image-video-xml-sitemap.php:83 99 106 msgid "Video Sitemap" 100 107 msgstr "" 101 108 102 #: includes/class-image-video-xml-sitemap.php: 88109 #: includes/class-image-video-xml-sitemap.php:93 103 110 msgid "Video Sitemap File Name:" 104 111 msgstr "" 105 112 106 #: includes/class-image-video-xml-sitemap.php: 58113 #: includes/class-image-video-xml-sitemap.php:63 107 114 msgid "" 108 115 "When you upload an image, WordPress automatically creates an image page " … … 110 117 msgstr "" 111 118 112 #: includes/class-image-video-xml-sitemap.php: 79119 #: includes/class-image-video-xml-sitemap.php:84 113 120 msgid "" 114 121 "When you upload an video, WordPress automatically creates an video page " … … 116 123 msgstr "" 117 124 118 #: includes/class-image-video-xml-sitemap.php:5 1125 #: includes/class-image-video-xml-sitemap.php:56 119 126 msgid "XML Sitemaps" 120 127 msgstr "" 121 128 122 #: includes/class-image-video-xml-sitemap.php:1 18129 #: includes/class-image-video-xml-sitemap.php:128 123 130 msgid "You are not allowed to perform this action." 124 131 msgstr "" -
image-video-xml-sitemap/trunk/readme.txt
r3267631 r3310512 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 92 92 == Upgrade Notice == 93 93 94 = 1.0.2 = 95 Enhanced our plugin to support a wider range of file types for image and video sitemaps. 96 Added translation support by loading text domain from /languages directory. 97 Improved compatibility with SEO plugins by restricting use of the word "sitemap" in custom filenames. 98 Added admin validation and error notice if filenames contain the reserved word "sitemap". 99 Ensured all settings error messages are properly translatable. 100 Minor code cleanup and security checks. 101 94 102 = 1.0.1 = 95 103 Performance is improved by avoiding unnecessary flush operations.
Note: See TracChangeset
for help on using the changeset viewer.