Changeset 3398807
- Timestamp:
- 11/19/2025 10:36:52 AM (5 months ago)
- Location:
- aicontify
- Files:
-
- 26 added
- 1 deleted
- 6 edited
-
tags/5.1.0 (added)
-
tags/5.1.0/aicontify.php (added)
-
tags/5.1.0/contentPosts.php (added)
-
tags/5.1.0/css (added)
-
tags/5.1.0/css/style.css (added)
-
tags/5.1.0/dashboard.php (added)
-
tags/5.1.0/faqPosts.php (added)
-
tags/5.1.0/img (added)
-
tags/5.1.0/img/logo-aicontify.png (added)
-
tags/5.1.0/js (added)
-
tags/5.1.0/js/tabsPosts.js (added)
-
tags/5.1.0/languages (added)
-
tags/5.1.0/languages/aicontify-fa_IR.mo (added)
-
tags/5.1.0/languages/aicontify-fa_IR.po (added)
-
tags/5.1.0/languages/aicontify.pot (added)
-
tags/5.1.0/readme.txt (added)
-
tags/5.1.0/seoDescription.php (added)
-
tags/5.1.0/seoTitle.php (added)
-
tags/5.1.0/settings (added)
-
tags/5.1.0/settings.php (added)
-
tags/5.1.0/settings/tab-content.php (added)
-
tags/5.1.0/settings/tab-faq.php (added)
-
tags/5.1.0/settings/tab-main.php (added)
-
tags/5.1.0/settings/tab-seo-meta.php (added)
-
tags/5.1.0/settings/tab-seo-title.php (added)
-
tags/5.1.0/tabsPosts.php (added)
-
trunk/aicontify.php (modified) (5 diffs)
-
trunk/js/tabsPosts.js (modified) (5 diffs)
-
trunk/languages/aicontify-fa_IR.mo (modified) (previous)
-
trunk/languages/aicontify-fa_IR.po (modified) (6 diffs)
-
trunk/languages/aicontify.pot (modified) (9 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/rest_cache.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
aicontify/trunk/aicontify.php
r3398374 r3398807 4 4 Plugin URI: https://aicontify.com/ 5 5 Description: Your Smart Content Assistant – One Click, Full Content 6 Version: 5. 0.16 Version: 5.1.0 7 7 Author: Hassan Solgi 8 8 Author URI: https://t.me/hassansolgi … … 49 49 50 50 // ==================== Plugin Deactivation Hook ==================== 51 register_deactivation_hook(__FILE__, 'aicont_plugin_deactivation'); 52 function aicont_plugin_deactivation() { 53 // Cleanup on deactivation 54 } 51 add_action('deactivated_plugin', function($plugin) { 52 if ($plugin === 'aicontify-pro/aicontify-pro.php') { 53 delete_option('aicont_active_license'); 54 delete_option('aicont_plugin_license_data'); 55 } 56 }, 10, 2); 55 57 56 58 // ==================== Get API Key / License ==================== 57 59 function aicont_get_api_key() { 58 60 if (!function_exists('is_plugin_active')) { 59 return '';61 return null; 60 62 } 61 63 … … 63 65 $is_pro_active = is_plugin_active($pro_plugin_path); 64 66 65 if ($is_pro_active) { 66 // If PRO plugin is active, return the saved custom license 67 $active_license = get_option('aicont_active_license', ''); 68 $saved_api_key = sanitize_text_field($active_license); 69 return !empty($saved_api_key) ? $saved_api_key : ''; 70 } 71 72 // If PRO plugin is not active, return empty (server will use default) 73 return ''; 67 if (!$is_pro_active) { 68 return null; 69 } 70 71 $active_license = get_option('aicont_active_license', ''); 72 $saved_api_key = trim(sanitize_text_field($active_license)); 73 74 return !empty($saved_api_key) ? $saved_api_key : null; 74 75 } 75 76 … … 126 127 true 127 128 ); 128 129 129 wp_localize_script('aicont-post-tabs', 'aicontify_ajax', [ 130 130 'ajax_url' => admin_url('admin-ajax.php'), 131 'nonce' => wp_create_nonce('aicont_nonce') 131 'nonce' => wp_create_nonce('aicont_nonce'), 132 'license' => aicont_get_api_key() 132 133 ]); 133 134 } … … 246 247 include_once plugin_dir_path(__FILE__) . 'settings.php'; 247 248 include_once plugin_dir_path(__FILE__) . 'tabsPosts.php'; 248 include_once plugin_dir_path(__FILE__) . 'rest_cache.php'; -
aicontify/trunk/js/tabsPosts.js
r3398370 r3398807 58 58 // global 59 59 const keywordInput = document.getElementById("aicont_keyword"); 60 const { __ } = wp.i18n; 60 61 61 62 /** … … 88 89 89 90 function getMessage(key) { 90 const translations = { 91 generating: "Generating and saving content, please wait...", 92 success_generated: "Content generated successfully!", 93 saving_post: "Saving post...", 94 page_refreshing: "Page is refreshing to display changes...", 95 err_keyword_empty: "Please enter a keyword before generating content.", 96 err_connection_failed: 91 const messages = { 92 generating: __( 93 "Generating and saving content, please wait...", 94 "aicontify" 95 ), 96 success_generated: __("Content generated successfully!", "aicontify"), 97 saving_post: __("Saving post...", "aicontify"), 98 page_refreshing: __( 99 "Page is refreshing to display changes...", 100 "aicontify" 101 ), 102 err_keyword_empty: __( 103 "Please enter a keyword before generating content.", 104 "aicontify" 105 ), 106 err_connection_failed: __( 97 107 "Connection failed. Please check your internet connection.", 98 err_server_error: "An unexpected server error occurred.", 99 err_content_empty: "Generated content is empty.", 100 err_save_failed: "Failed to save the post.", 101 err_daily_limit_exceeded: 108 "aicontify" 109 ), 110 err_server_error: __("An unexpected server error occurred.", "aicontify"), 111 err_content_empty: __("Generated content is empty.", "aicontify"), 112 err_save_failed: __("Failed to save the post.", "aicontify"), 113 err_daily_limit_exceeded: __( 102 114 "Daily AI generation limit reached. Try again tomorrow or upgrade.", 115 "aicontify" 116 ), 103 117 }; 104 return wp.i18n.__(translations[key] || key, "aicontify"); 118 119 return messages[key] || key; 105 120 } 106 121 … … 206 221 207 222 function getFaqMessage(key) { 208 const translations = { 209 generating: "Generating FAQs, please wait...", 210 success_generated: "FAQs generated and saved successfully!", 211 saving_post: "Saving FAQs to post...", 212 page_refreshing: "Page is refreshing to display changes...", 213 err_keyword_empty: "Please enter a keyword before generating FAQs.", 214 err_server_error: "Server error occurred while generating FAQs.", 215 err_save_failed: "Failed to save FAQ items.", 216 err_acf_missing: "ACF Pro is required for custom FAQ templates.", 217 err_daily_limit_exceeded: 223 const messages = { 224 generating: __("Generating FAQs, please wait...", "aicontify"), 225 success_generated: __( 226 "FAQs generated and saved successfully!", 227 "aicontify" 228 ), 229 saving_post: __("Saving FAQs to post...", "aicontify"), 230 page_refreshing: __( 231 "Page is refreshing to display changes...", 232 "aicontify" 233 ), 234 err_keyword_empty: __( 235 "Please enter a keyword before generating FAQs.", 236 "aicontify" 237 ), 238 err_server_error: __( 239 "Server error occurred while generating FAQs.", 240 "aicontify" 241 ), 242 err_save_failed: __("Failed to save FAQ items.", "aicontify"), 243 err_acf_missing: __( 244 "ACF Pro is required for custom FAQ templates.", 245 "aicontify" 246 ), 247 err_daily_limit_exceeded: __( 218 248 "Daily AI generation limit reached. Upgrade or try tomorrow.", 249 "aicontify" 250 ), 219 251 }; 220 return wp.i18n.__(translations[key] || key, "aicontify"); 252 253 return messages[key] || key; 221 254 } 222 255 … … 316 349 317 350 function getSeoTitleMessage(key) { 318 const translations = { 319 generating: "Generating SEO title, please wait...", 320 success_generated: "SEO title generated and saved successfully!", 321 page_refreshing: "Page is refreshing to display changes...", 322 err_keyword_empty: 351 const messages = { 352 generating: __("Generating SEO title, please wait...", "aicontify"), 353 success_generated: __( 354 "SEO title generated and saved successfully!", 355 "aicontify" 356 ), 357 page_refreshing: __( 358 "Page is refreshing to display changes...", 359 "aicontify" 360 ), 361 err_keyword_empty: __( 323 362 "Please enter a keyword before generating SEO title.", 324 err_server_error: "Server error occurred while generating SEO title.", 325 err_save_failed: "Failed to save SEO title to Yoast.", 326 err_yoast_missing: "Yoast SEO plugin is not active.", 327 err_daily_limit_exceeded: 363 "aicontify" 364 ), 365 err_server_error: __( 366 "Server error occurred while generating SEO title.", 367 "aicontify" 368 ), 369 err_save_failed: __("Failed to save SEO title to Yoast.", "aicontify"), 370 err_yoast_missing: __("Yoast SEO plugin is not active.", "aicontify"), 371 err_daily_limit_exceeded: __( 328 372 "Daily AI generation limit reached. Upgrade or try tomorrow.", 373 "aicontify" 374 ), 329 375 }; 330 return wp.i18n.__(translations[key] || key, "aicontify"); 376 377 return messages[key] || key; 331 378 } 332 379 … … 437 484 438 485 function getMetaDescMessage(key) { 439 const translations = { 440 generating: "Generating meta description, please wait...", 441 success_generated: "Meta description generated and saved successfully!", 442 page_refreshing: "Page is refreshing to display changes...", 443 err_keyword_empty: 486 const messages = { 487 generating: __( 488 "Generating meta description, please wait...", 489 "aicontify" 490 ), 491 success_generated: __( 492 "Meta description generated and saved successfully!", 493 "aicontify" 494 ), 495 page_refreshing: __( 496 "Page is refreshing to display changes...", 497 "aicontify" 498 ), 499 err_keyword_empty: __( 444 500 "Please enter a keyword before generating meta description.", 445 err_server_error: 501 "aicontify" 502 ), 503 err_server_error: __( 446 504 "Server error occurred while generating meta description.", 447 err_save_failed: "Failed to save meta description to Yoast.", 448 err_yoast_missing: "Yoast SEO plugin is not active.", 449 err_daily_limit_exceeded: 505 "aicontify" 506 ), 507 err_save_failed: __( 508 "Failed to save meta description to Yoast.", 509 "aicontify" 510 ), 511 err_yoast_missing: __("Yoast SEO plugin is not active.", "aicontify"), 512 err_daily_limit_exceeded: __( 450 513 "Daily AI generation limit reached. Upgrade or try tomorrow.", 514 "aicontify" 515 ), 451 516 }; 452 return wp.i18n.__(translations[key] || key, "aicontify"); 517 518 return messages[key] || key; 453 519 } 454 520 -
aicontify/trunk/languages/aicontify-fa_IR.po
r3398370 r3398807 3 3 "Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n" 4 4 "Project-Id-Version: AiContify\n" 5 "POT-Creation-Date: 2025-11-1 7 12:25+0330\n"6 "PO-Revision-Date: 2025-11-1 7 14:29+0330\n"5 "POT-Creation-Date: 2025-11-19 13:59+0330\n" 6 "PO-Revision-Date: 2025-11-19 14:03+0330\n" 7 7 "Language-Team: \n" 8 8 "MIME-Version: 1.0\n" … … 22 22 #: aicontify.php:31 23 23 msgid "AiContify requires PHP 7.4 or higher." 24 msgstr "کانتی فای به PHP نسخه ۷.۴ یا بالاتر نیاز دارد."24 msgstr "کانتیفای به PHP نسخه ۷.۴ یا بالاتر نیاز دارد." 25 25 26 26 #. Plugin Name of the plugin/theme 27 #: aicontify.php:1 50 aicontify.php:151dashboard.php:7 tabsPosts.php:1127 #: aicontify.php:142 aicontify.php:143 dashboard.php:7 tabsPosts.php:11 28 28 msgid "AiContify" 29 msgstr "کانتی فای"30 31 #: aicontify.php:1 61 aicontify.php:16229 msgstr "کانتیفای" 30 31 #: aicontify.php:153 aicontify.php:154 32 32 msgid "Settings" 33 33 msgstr "تنظیمات" 34 34 35 #: aicontify.php:1 70 aicontify.php:17135 #: aicontify.php:162 aicontify.php:163 36 36 msgid "Premium" 37 37 msgstr "پریمیوم" 38 38 39 #: aicontify.php:1 8639 #: aicontify.php:178 40 40 msgid "Supercharge Your Content with AiContify Premium" 41 msgstr "محتوای خود را با کانتی فای پریمیوم قدرتمند کنید"42 43 #: aicontify.php:18 841 msgstr "محتوای خود را با کانتیفای پریمیوم قدرتمند کنید" 42 43 #: aicontify.php:180 44 44 msgid "Unlock advanced AI models, faster content creation, and exclusive tools designed to elevate your WooCommerce content." 45 45 msgstr "به مدلهای پیشرفته هوش مصنوعی، تولید سریعتر محتوا و ابزارهای اختصاصی برای ارتقای محتوای ووکامرس خود دسترسی پیدا کنید." 46 46 47 #: aicontify.php:1 92 aicontify.php:23147 #: aicontify.php:184 aicontify.php:223 48 48 msgid "Ready to Boost Your Content?" 49 49 msgstr "برای تقویت محتوای خود آمادهاید؟" 50 50 51 #: aicontify.php:1 93 aicontify.php:23251 #: aicontify.php:185 aicontify.php:224 52 52 msgid "Join thousands of creators and businesses using AiContify Premium to supercharge their WooCommerce content." 53 msgstr "به هزاران سازنده و کسبوکار بپیوندید که از کانتی فای پریمیوم برای تقویت محتوای ووکامرس خود استفاده میکنند."54 55 #: aicontify.php:1 95 aicontify.php:23453 msgstr "به هزاران سازنده و کسبوکار بپیوندید که از کانتیفای پریمیوم برای تقویت محتوای ووکامرس خود استفاده میکنند." 54 55 #: aicontify.php:187 aicontify.php:226 56 56 msgid "Upgrade to Premium" 57 57 msgstr "ارتقا به پریمیوم" 58 58 59 #: aicontify.php:19 959 #: aicontify.php:191 60 60 msgid "Why Go Premium?" 61 61 msgstr "چرا پریمیوم؟" 62 62 63 #: aicontify.php: 20363 #: aicontify.php:195 64 64 msgid "Advanced AI Models" 65 65 msgstr "مدلهای پیشرفته هوش مصنوعی" 66 66 67 #: aicontify.php: 20467 #: aicontify.php:196 68 68 msgid "Access premium AI models for smarter, higher-quality content generation." 69 69 msgstr "به مدلهای پریمیوم هوش مصنوعی برای تولید محتوای هوشمندتر و باکیفیتتر دسترسی داشته باشید." 70 70 71 #: aicontify.php:20 871 #: aicontify.php:200 72 72 msgid "Faster Generation" 73 73 msgstr "تولید سریعتر" 74 74 75 #: aicontify.php:20 975 #: aicontify.php:201 76 76 msgid "Generate content up to 3x faster than the free version." 77 77 msgstr "تا ۳ برابر سریعتر از نسخه رایگان محتوا تولید کنید." 78 78 79 #: aicontify.php:2 1379 #: aicontify.php:205 80 80 msgid "WooCommerce Product Content" 81 81 msgstr "محتوای محصول ووکامرس" 82 82 83 #: aicontify.php:2 1583 #: aicontify.php:207 84 84 msgid "With a valid premium license, you can generate complete content for WooCommerce products including short and long descriptions. Fully SEO optimized and ready to publish." 85 85 msgstr "با لایسنس پریمیوم معتبر، میتوانید محتوای کامل برای محصولات ووکامرس شامل توضیحات کوتاه و بلند تولید کنید. کاملاً بهینهشده برای سئو و آماده انتشار." 86 86 87 #: aicontify.php:2 2087 #: aicontify.php:212 88 88 msgid "Pro Version Features" 89 89 msgstr "ویژگیهای نسخه حرفهای" 90 90 91 #: aicontify.php:2 2291 #: aicontify.php:214 92 92 msgid "Includes all features from the free version." 93 93 msgstr "شامل تمام ویژگیهای نسخه رایگان." 94 94 95 #: aicontify.php:2 2395 #: aicontify.php:215 96 96 msgid "Full support for Pages and WooCommerce products." 97 97 msgstr "پشتیبانی کامل از صفحات و محصولات ووکامرس." 98 98 99 #: aicontify.php:2 2499 #: aicontify.php:216 100 100 msgid "Faster processing and higher accuracy using advanced AI." 101 101 msgstr "پردازش سریعتر و دقت بالاتر با استفاده از هوش مصنوعی پیشرفته." 102 102 103 #: aicontify.php:2 25dashboard.php:42103 #: aicontify.php:217 dashboard.php:42 104 104 msgid "Separate custom prompt configuration for each section: main article, FAQ, SEO title, meta description, WooCommerce product description." 105 105 msgstr "پیکربندی پرامپت سفارشی جداگانه برای هر بخش: مقاله اصلی، پرسشوپاسخ، عنوان سئو، توضیحات متا، توضیحات محصول ووکامرس." 106 106 107 #: aicontify.php:2 26dashboard.php:43107 #: aicontify.php:218 dashboard.php:43 108 108 msgid "Easy activation through a premium license." 109 109 msgstr "فعالسازی آسان از طریق لایسنس پریمیوم." 110 110 111 #: aicontify.php:2 27111 #: aicontify.php:219 112 112 msgid "Designed for professional users who need precise, customizable AI-generated content for websites and online stores." 113 113 msgstr "طراحیشده برای کاربران حرفهای که به محتوای تولیدشده توسط هوش مصنوعی دقیق و قابل سفارشیسازی برای وبسایتها و فروشگاههای آنلاین نیاز دارند." 114 114 115 #: aicontify.php:23 9115 #: aicontify.php:231 116 116 msgid "Need Help?" 117 117 msgstr "کمک میخواهید؟" 118 118 119 #: aicontify.php:2 40119 #: aicontify.php:232 120 120 msgid "Our support team is available for setup, guidance, and technical questions." 121 121 msgstr "تیم پشتیبانی ما برای راهاندازی، راهنمایی و سوالات فنی در دسترس است." 122 122 123 #: aicontify.php:2 42123 #: aicontify.php:234 124 124 msgid "Telegram:" 125 125 msgstr "تلگرام:" 126 126 127 #: aicontify.php:2 44127 #: aicontify.php:236 128 128 msgid "Email:" 129 129 msgstr "ایمیل:" … … 131 131 #: dashboard.php:12 132 132 msgid "What is AiContify AI Plugin?" 133 msgstr "افزونه هوش مصنوعی کانتی فای چیست؟"133 msgstr "افزونه هوش مصنوعی کانتیفای چیست؟" 134 134 135 135 #: dashboard.php:14 136 136 msgid "AiContify is a free AI-powered plugin for generating high-quality content directly in the WordPress editor. It allows you to create complete articles, FAQs, and SEO-ready elements instantly, without any license or payment." 137 msgstr "کانتی فای یک افزونه رایگان مبتنی بر هوش مصنوعی برای تولید محتوای باکیفیت مستقیماً در ویرایشگر وردپرس است. این افزونه به شما امکان میدهد مقالات کامل، پرسشوپاسخ و عناصر آماده سئو را فوراً ایجاد کنید، بدون نیاز به لایسنس یا پرداخت."137 msgstr "کانتیفای یک افزونه رایگان مبتنی بر هوش مصنوعی برای تولید محتوای باکیفیت مستقیماً در ویرایشگر وردپرس است. این افزونه به شما امکان میدهد مقالات کامل، پرسشوپاسخ و عناصر آماده سئو را فوراً ایجاد کنید، بدون نیاز به لایسنس یا پرداخت." 138 138 139 139 #: dashboard.php:20 … … 241 241 msgstr "محتوای حرفهای، فقط با یک کلیک!" 242 242 243 #: faqPosts.php:10 2 faqPosts.php:114243 #: faqPosts.php:105 244 244 msgid "Frequently Asked Questions" 245 245 msgstr "سوالات متداول" … … 251 251 #: settings.php:82 252 252 msgid "AiContify Settings" 253 msgstr "تنظیمات کانتی فای"253 msgstr "تنظیمات کانتیفای" 254 254 255 255 #: settings.php:264 … … 293 293 msgstr "پرامپت محتوای اصلی" 294 294 295 #: settings/tab-content.php:17 settings/tab-faq.php:17 296 #: settings/tab-seo-meta.php:17 settings/tab-seo-title.php:17 295 #: settings/tab-content.php:17 settings/tab-faq.php:17 settings/tab-seo-meta.php:17 settings/tab-seo-title.php:17 297 296 msgid "Warning: Prompt writing is a professional skill!" 298 297 msgstr "هشدار: نوشتن پرامپت یک مهارت حرفهای است!" 299 298 300 #: settings/tab-content.php:20 settings/tab-faq.php:20 301 #: settings/tab-seo-meta.php:20 settings/tab-seo-title.php:20 299 #: settings/tab-content.php:20 settings/tab-faq.php:20 settings/tab-seo-meta.php:20 settings/tab-seo-title.php:20 302 300 msgid "If you don't have expertise in prompt engineering, using a weak custom prompt can significantly reduce content quality." 303 301 msgstr "اگر در مهندسی پرامپت تخصص ندارید، استفاده از پرامپت سفارشی ضعیف میتواند کیفیت محتوا را بهشدت کاهش دهد." 304 302 305 #: settings/tab-content.php:22 settings/tab-faq.php:22 306 #: settings/tab-seo-meta.php:22 settings/tab-seo-title.php:22 303 #: settings/tab-content.php:22 settings/tab-faq.php:22 settings/tab-seo-meta.php:22 settings/tab-seo-title.php:22 307 304 msgid "Our default prompt is carefully designed by AI experts and produces the best results in 99 percent of cases." 308 305 msgstr "پرامپت پیشفرض ما توسط متخصصان هوش مصنوعی طراحی شده و در ۹۹ درصد موارد بهترین نتیجه را تولید میکند." 309 306 310 #: settings/tab-content.php:25 settings/tab-faq.php:25 311 #: settings/tab-seo-meta.php:25 settings/tab-seo-title.php:25 307 #: settings/tab-content.php:25 settings/tab-faq.php:25 settings/tab-seo-meta.php:25 settings/tab-seo-title.php:25 312 308 msgid "We are prompt engineering specialists." 313 309 msgstr "ما متخصص مهندسی پرامپت هستیم." 314 310 315 #: settings/tab-content.php:26 settings/tab-faq.php:26 316 #: settings/tab-seo-meta.php:26 settings/tab-seo-title.php:26 311 #: settings/tab-content.php:26 settings/tab-faq.php:26 settings/tab-seo-meta.php:26 settings/tab-seo-title.php:26 317 312 msgid "Need a professional prompt? Contact us right now:" 318 313 msgstr "به پرامپت حرفهای نیاز دارید؟ همین حالا با ما تماس بگیرید:" 319 314 320 #: settings/tab-content.php:37 settings/tab-faq.php:37 321 #: settings/tab-seo-meta.php:37 settings/tab-seo-title.php:37 315 #: settings/tab-content.php:37 settings/tab-faq.php:37 settings/tab-seo-meta.php:37 settings/tab-seo-title.php:37 322 316 msgid "Post Settings" 323 317 msgstr "تنظیمات نوشته" 324 318 325 #: settings/tab-content.php:42 settings/tab-content.php:71 326 #: settings/tab-content.php:98 settings/tab-faq.php:42 settings/tab-faq.php:125 327 #: settings/tab-seo-meta.php:42 settings/tab-seo-meta.php:72 328 #: settings/tab-seo-title.php:42 settings/tab-seo-title.php:70 319 #: settings/tab-content.php:42 settings/tab-content.php:71 settings/tab-content.php:98 settings/tab-faq.php:42 settings/tab-faq.php:125 settings/tab-seo-meta.php:42 settings/tab-seo-meta.php:72 settings/tab-seo-title.php:42 settings/tab-seo-title.php:70 329 320 msgid "Custom Prompt (Optional)" 330 321 msgstr "پرامپت سفارشی (اختیاری)" 331 322 332 #: settings/tab-content.php:53 settings/tab-content.php:82 333 #: settings/tab-content.php:109 settings/tab-faq.php:53 334 #: settings/tab-faq.php:136 settings/tab-seo-meta.php:53 335 #: settings/tab-seo-meta.php:83 settings/tab-seo-title.php:53 336 #: settings/tab-seo-title.php:81 323 #: settings/tab-content.php:53 settings/tab-content.php:82 settings/tab-content.php:109 settings/tab-faq.php:53 settings/tab-faq.php:136 settings/tab-seo-meta.php:53 settings/tab-seo-meta.php:83 settings/tab-seo-title.php:53 settings/tab-seo-title.php:81 337 324 msgid "Leave empty to use default." 338 325 msgstr "برای استفاده از پیشفرض خالی بگذارید." 339 326 340 327 #. translators: %s: {keyword} placeholder 341 #: settings/tab-content.php:56 settings/tab-content.php:85 342 #: settings/tab-faq.php:56 settings/tab-faq.php:139 343 #: settings/tab-seo-meta.php:57 settings/tab-seo-meta.php:87 344 #: settings/tab-seo-title.php:56 settings/tab-seo-title.php:84 328 #: settings/tab-content.php:56 settings/tab-content.php:85 settings/tab-faq.php:56 settings/tab-faq.php:139 settings/tab-seo-meta.php:57 settings/tab-seo-meta.php:87 settings/tab-seo-title.php:56 settings/tab-seo-title.php:84 345 329 #, php-format 346 330 msgid "If filled, must include %s." 347 331 msgstr "اگر پر شده باشد، باید شامل %s باشد." 348 332 349 #: settings/tab-content.php:66 settings/tab-faq.php:120 350 #: settings/tab-seo-meta.php:67 settings/tab-seo-title.php:65 333 #: settings/tab-content.php:66 settings/tab-faq.php:120 settings/tab-seo-meta.php:67 settings/tab-seo-title.php:65 351 334 msgid "Product Settings" 352 335 msgstr "تنظیمات محصول" -
aicontify/trunk/languages/aicontify.pot
r3398370 r3398807 4 4 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 5 5 "Project-Id-Version: AiContify\n" 6 "POT-Creation-Date: 2025-11-1 7 12:25+0330\n"7 "PO-Revision-Date: 2025-11-1 7 12:24+0330\n"6 "POT-Creation-Date: 2025-11-19 13:59+0330\n" 7 "PO-Revision-Date: 2025-11-19 13:59+0330\n" 8 8 "Last-Translator: \n" 9 9 "Language-Team: \n" … … 27 27 28 28 #. Plugin Name of the plugin/theme 29 #: aicontify.php:1 50 aicontify.php:151dashboard.php:7 tabsPosts.php:1129 #: aicontify.php:142 aicontify.php:143 dashboard.php:7 tabsPosts.php:11 30 30 msgid "AiContify" 31 31 msgstr "" 32 32 33 #: aicontify.php:1 61 aicontify.php:16233 #: aicontify.php:153 aicontify.php:154 34 34 msgid "Settings" 35 35 msgstr "" 36 36 37 #: aicontify.php:1 70 aicontify.php:17137 #: aicontify.php:162 aicontify.php:163 38 38 msgid "Premium" 39 39 msgstr "" 40 40 41 #: aicontify.php:1 8641 #: aicontify.php:178 42 42 msgid "Supercharge Your Content with AiContify Premium" 43 43 msgstr "" 44 44 45 #: aicontify.php:18 845 #: aicontify.php:180 46 46 msgid "" 47 47 "Unlock advanced AI models, faster content creation, and exclusive tools " … … 49 49 msgstr "" 50 50 51 #: aicontify.php:1 92 aicontify.php:23151 #: aicontify.php:184 aicontify.php:223 52 52 msgid "Ready to Boost Your Content?" 53 53 msgstr "" 54 54 55 #: aicontify.php:1 93 aicontify.php:23255 #: aicontify.php:185 aicontify.php:224 56 56 msgid "" 57 57 "Join thousands of creators and businesses using AiContify Premium to " … … 59 59 msgstr "" 60 60 61 #: aicontify.php:1 95 aicontify.php:23461 #: aicontify.php:187 aicontify.php:226 62 62 msgid "Upgrade to Premium" 63 63 msgstr "" 64 64 65 #: aicontify.php:19 965 #: aicontify.php:191 66 66 msgid "Why Go Premium?" 67 67 msgstr "" 68 68 69 #: aicontify.php: 20369 #: aicontify.php:195 70 70 msgid "Advanced AI Models" 71 71 msgstr "" 72 72 73 #: aicontify.php: 20473 #: aicontify.php:196 74 74 msgid "" 75 75 "Access premium AI models for smarter, higher-quality content generation." 76 76 msgstr "" 77 77 78 #: aicontify.php:20 878 #: aicontify.php:200 79 79 msgid "Faster Generation" 80 80 msgstr "" 81 81 82 #: aicontify.php:20 982 #: aicontify.php:201 83 83 msgid "Generate content up to 3x faster than the free version." 84 84 msgstr "" 85 85 86 #: aicontify.php:2 1386 #: aicontify.php:205 87 87 msgid "WooCommerce Product Content" 88 88 msgstr "" 89 89 90 #: aicontify.php:2 1590 #: aicontify.php:207 91 91 msgid "" 92 92 "With a valid premium license, you can generate complete content for " … … 95 95 msgstr "" 96 96 97 #: aicontify.php:2 2097 #: aicontify.php:212 98 98 msgid "Pro Version Features" 99 99 msgstr "" 100 100 101 #: aicontify.php:2 22101 #: aicontify.php:214 102 102 msgid "Includes all features from the free version." 103 103 msgstr "" 104 104 105 #: aicontify.php:2 23105 #: aicontify.php:215 106 106 msgid "Full support for Pages and WooCommerce products." 107 107 msgstr "" 108 108 109 #: aicontify.php:2 24109 #: aicontify.php:216 110 110 msgid "Faster processing and higher accuracy using advanced AI." 111 111 msgstr "" 112 112 113 #: aicontify.php:2 25dashboard.php:42113 #: aicontify.php:217 dashboard.php:42 114 114 msgid "" 115 115 "Separate custom prompt configuration for each section: main article, FAQ, " … … 117 117 msgstr "" 118 118 119 #: aicontify.php:2 26dashboard.php:43119 #: aicontify.php:218 dashboard.php:43 120 120 msgid "Easy activation through a premium license." 121 121 msgstr "" 122 122 123 #: aicontify.php:2 27123 #: aicontify.php:219 124 124 msgid "" 125 125 "Designed for professional users who need precise, customizable AI-generated " … … 127 127 msgstr "" 128 128 129 #: aicontify.php:23 9129 #: aicontify.php:231 130 130 msgid "Need Help?" 131 131 msgstr "" 132 132 133 #: aicontify.php:2 40133 #: aicontify.php:232 134 134 msgid "" 135 135 "Our support team is available for setup, guidance, and technical questions." 136 136 msgstr "" 137 137 138 #: aicontify.php:2 42138 #: aicontify.php:234 139 139 msgid "Telegram:" 140 140 msgstr "" 141 141 142 #: aicontify.php:2 44142 #: aicontify.php:236 143 143 msgid "Email:" 144 144 msgstr "" … … 265 265 msgstr "" 266 266 267 #: faqPosts.php:10 2 faqPosts.php:114267 #: faqPosts.php:105 268 268 msgid "Frequently Asked Questions" 269 269 msgstr "" … … 673 673 674 674 #. Description of the plugin/theme 675 msgid "" 676 "Your Smart Content Assistant – One Click, Full Content" 675 msgid "Your Smart Content Assistant – One Click, Full Content" 677 676 msgstr "" 678 677 -
aicontify/trunk/readme.txt
r3398374 r3398807 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 5. 0.16 Stable tag: 5.1.0 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 121 121 == Changelog == 122 122 123 = 5.1.0 = November 19, 2025 124 Rest API optimization 125 123 126 = 5.0.0 = November 19, 2025 124 127 Rest API optimization
Note: See TracChangeset
for help on using the changeset viewer.