Plugin Directory

Changeset 3274990


Ignore:
Timestamp:
04/16/2025 05:13:11 PM (11 months ago)
Author:
pluginnetwork
Message:

v1.3.2 updated

Location:
wpauto
Files:
119 added
14 edited

Legend:

Unmodified
Added
Removed
  • wpauto/trunk/admin/class.admin-menu.php

    r3271115 r3274990  
    11<?php
     2
     3if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    24
    35class WPAuto_Admin_Menu {
     
    4345            if( $current_screen->id == 'toplevel_page_wpauto' ) {
    4446               
    45                 wp_enqueue_script( 'chart', 'https://cdn.jsdelivr.net/npm/chart.js', array( 'jquery' ), '4.3.0', true );
     47                wp_enqueue_script( 'chart', WPAUTO_URL . 'admin/assets/js/chart.js', array( 'jquery' ), '4.3.0', true );
    4648                wp_enqueue_script( 'wpauto-dashboard', WPAUTO_URL . 'admin/assets/js/wpauto-dashboard.js', array( 'jquery' ), '1.0', true );   
    4749
     
    6163
    6264            if( $current_screen->id == 'wpauto_page_wpauto_settings' ) {
    63                 //wp_enqueue_media();           
    64                 //wp_enqueue_style( 'select2', WPAUTO_URL . 'admin/assets/css/select2.min.css', array(), '4.1.0', 'all' );
    65                 //wp_enqueue_script( 'select2', WPAUTO_URL . 'admin/assets/js/select2.full.min.js', array( 'jquery' ), '4.1.0' );
    6665                wp_enqueue_script( 'wpauto-dashboard', WPAUTO_URL . 'admin/plugin-options/assets/js/plugin-settings.js', array( 'jquery' ), '1.0', true );
    6766            }
     
    7069       
    7170        wp_enqueue_style( 'wpauto-dark-admin', WPAUTO_URL . 'admin/assets/css/wpauto-dark-admin.css', array(), PM_WPAuto::$version, 'all' );
    72         wp_enqueue_script( 'jquery-ui', 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js', array( 'jquery' ), '1.12.1', true );
    7371        wp_enqueue_style( 'jquery-confirm', WPAUTO_URL . 'admin/assets/css/jquery-confirm.css', array(), '3.3.4', 'all' );
    74         wp_enqueue_script( 'jquery-confirm', WPAUTO_URL . 'admin/assets/js/jquery-confirm.js', array( 'jquery' ), '3.3.4', true );
    75         wp_enqueue_script( 'wpauto-general', WPAUTO_URL . 'admin/assets/js/wpauto-general.js', array( 'jquery' ), '1.0', true );
     72        wp_enqueue_script( 'jquery-confirm', WPAUTO_URL . 'admin/assets/js/jquery-confirm.js', array( 'jquery', 'jquery-ui-core' ), '3.3.4', true );
     73        wp_enqueue_script( 'wpauto-general', WPAUTO_URL . 'admin/assets/js/wpauto-general.js', array( 'jquery', 'jquery-ui-core' ), '1.0', true );
    7674        wp_enqueue_style( 'wpauto-font', WPAUTO_URL . 'admin/assets/css/wpauto-font.css', array(), '1.0', 'all' );
    7775       
     
    8280            'assets' => WPAUTO_URL . 'admin/assets/'
    8381        );
    84         wp_localize_script( 'wpauto-general', 'aip_gen_obj', $wpauto_gen_args );
    85        
    86         //$day_wise_data = get_option( 'wpauto_day_wise_data', [] );
    87        
    88        
    89 
    90        
     82        wp_localize_script( 'wpauto-general', 'aip_gen_obj', $wpauto_gen_args );       
    9183       
    9284       
  • wpauto/trunk/admin/pages/all-campaigns.php

    r3243410 r3274990  
    44 * WPAuto Settings Page
    55 */
     6 
     7if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    68
    79?>
  • wpauto/trunk/admin/pages/dashboard.php

    r3271115 r3274990  
    44 * Plugin Options
    55 */
     6 
     7if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    68 
    79?>
  • wpauto/trunk/admin/pages/seo.php

    r3243410 r3274990  
    44 * WPAuto SEO Settings Page
    55 */
     6 
     7if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    68 
    79// Framework file connection
  • wpauto/trunk/admin/pages/settings.php

    r3271115 r3274990  
    44 * WPAuto Settings Page
    55 */
     6
     7if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    68
    79require_once WPAUTO_DIR . "admin/plugin-options/config.php";
  • wpauto/trunk/admin/parts/admin-footer.php

    r3243410 r3274990  
    44 * WPAuto Admin Header
    55 */
     6 
     7if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    68
    79function wpauto_admin_footer_function() {
  • wpauto/trunk/admin/parts/header.php

    r3271115 r3274990  
    44 * WPAuto Admin Header
    55 */
     6 
     7if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    68 
    79$active_page = [
  • wpauto/trunk/admin/plugin-options/config.php

    r3243410 r3274990  
    11<?php
     2
     3if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    24
    35class WPAuto_Campaign_Settings {
  • wpauto/trunk/admin/plugin-options/framework.php

    r3271115 r3274990  
    11<?php
     2
     3if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     4
    25class WPAuto_Options {
    36   
  • wpauto/trunk/inc/class.external-cron.php

    r3271115 r3274990  
    33 * Cron file process all or single campaign
    44 */
     5 
     6if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    57
    68// no cache
  • wpauto/trunk/inc/wpauto-ajax.php

    r3271115 r3274990  
    11<?php
     2
     3if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    24
    35class WPAuto_AJAX {
  • wpauto/trunk/languages/wpauto.pot

    r3243410 r3274990  
    22msgstr ""
    33"Project-Id-Version: WPAuto\n"
    4 "POT-Creation-Date: 2025-02-13 14:50+0530\n"
    5 "PO-Revision-Date: 2025-02-13 14:50+0530\n"
     4"POT-Creation-Date: 2025-04-15 18:52+0530\n"
     5"PO-Revision-Date: 2025-04-15 18:52+0530\n"
    66"Last-Translator: \n"
    7 "Language-Team: wpauto\n"
     7"Language-Team: pluginnetwork\n"
    88"Language: en_US\n"
    99"MIME-Version: 1.0\n"
     
    1919"X-Poedit-SearchPath-0: .\n"
    2020
    21 #: admin/class.admin-menu.php:94 admin/class.admin-menu.php:95
     21#: admin/class.admin-menu.php:91 admin/class.admin-menu.php:92
     22#: admin/parts/header.php:21
    2223msgid "WPAuto"
    2324msgstr ""
    2425
    25 #: admin/class.admin-menu.php:106 admin/class.admin-menu.php:107
    26 #: admin/parts/header.php:23
     26#: admin/class.admin-menu.php:103 admin/class.admin-menu.php:104
     27#: admin/parts/header.php:24
    2728msgid "Dashboard"
    2829msgstr ""
    2930
    30 #: admin/class.admin-menu.php:116 admin/class.admin-menu.php:117
    31 #: admin/parts/header.php:24
     31#: admin/class.admin-menu.php:113 admin/class.admin-menu.php:114
     32#: admin/parts/header.php:25
    3233msgid "All Campaigns"
    3334msgstr ""
    3435
    35 #: admin/class.admin-menu.php:129 admin/class.admin-menu.php:130
    36 #: admin/parts/header.php:26 seo/admin/plugin-options/config.php:134
     36#: admin/class.admin-menu.php:126 admin/class.admin-menu.php:127
     37#: admin/parts/header.php:27 seo/admin/plugin-options/config.php:119
    3738msgid "SEO"
    3839msgstr ""
    3940
    40 #: admin/class.admin-menu.php:139 admin/class.admin-menu.php:140
    41 #: admin/parts/header.php:27
     41#: admin/class.admin-menu.php:136 admin/class.admin-menu.php:137
     42#: admin/parts/header.php:28
    4243msgid "Settings"
    4344msgstr ""
    4445
    45 #: admin/pages/all-campaigns.php:11 seo/admin/pages/log.php:30
    46 msgid "WPAuto Log"
    47 msgstr ""
    48 
    49 #: admin/pages/dashboard.php:11 admin/parts/header.php:25
     46#: admin/class.admin-menu.php:146 admin/class.admin-menu.php:147
     47#: admin/pages/seo.php:55
     48msgid "SEO Table"
     49msgstr ""
     50
     51#: admin/class.admin-menu.php:156 admin/class.admin-menu.php:157
     52msgid "SEO Logs"
     53msgstr ""
     54
     55#: admin/pages/dashboard.php:16 admin/parts/header.php:26
    5056msgid "New Campaign"
    5157msgstr ""
    5258
    53 #: admin/pages/dashboard.php:27
     59#: admin/pages/dashboard.php:34
    5460msgid "Last processed 7 days records."
    5561msgstr ""
    5662
    57 #: admin/pages/dashboard.php:42
     63#: admin/pages/dashboard.php:37 admin/pages/dashboard.php:61
     64#: admin/parts/header.php:29 wpauto-init.php:34
     65msgid "Get Pro"
     66msgstr ""
     67
     68#: admin/pages/dashboard.php:50
    5869msgid "WPAuto Logs"
    5970msgstr ""
    6071
    61 #: admin/pages/dashboard.php:43 admin/plugin-options/config.php:90
    62 msgid "Get Pro"
    63 msgstr ""
    64 
    65 #: admin/pages/dashboard.php:56 admin/pages/dashboard.php:216
     72#: admin/pages/dashboard.php:64 admin/pages/dashboard.php:242
    6673msgid "ID"
    6774msgstr ""
    6875
    69 #: admin/pages/dashboard.php:57
     76#: admin/pages/dashboard.php:65
    7077msgid "Campaign Name"
    7178msgstr ""
    7279
    73 #: admin/pages/dashboard.php:58
     80#: admin/pages/dashboard.php:66
    7481msgid "Initial Log"
    7582msgstr ""
    7683
    77 #: admin/pages/dashboard.php:81
     84#: admin/pages/dashboard.php:89
    7885msgid "Blogs/Tutorial"
    7986msgstr ""
    8087
    81 #: admin/pages/dashboard.php:83
    82 msgid "WPAuto Plugin Features make content posting easy with ChatGPT"
    83 msgstr ""
    84 
    85 #: admin/pages/dashboard.php:84
    86 msgid ""
    87 "WPAuto Plugin’s easy-to-use dashboard gives you complete control over "
    88 "automatic content posting"
    89 msgstr ""
    90 
    91 #: admin/pages/dashboard.php:85
    92 msgid ""
    93 "We offer a full range of features, from basic to advanced, that help you "
    94 "import content from ChatGPT"
    95 msgstr ""
    96 
    97 #: admin/pages/dashboard.php:86
    98 msgid ""
    99 "WPAuto Plugin automatically posts content to your WordPress site using "
    100 "features like ChatGPT"
    101 msgstr ""
    102 
    103 #: admin/pages/dashboard.php:88
     88#: admin/pages/dashboard.php:91
     89msgid "How to Auto Post Articles or Content using WPAuto Pro?"
     90msgstr ""
     91
     92#: admin/pages/dashboard.php:92
     93msgid "How to generate SEO Meta Automatically Using WPAuto?"
     94msgstr ""
     95
     96#: admin/pages/dashboard.php:93
     97msgid "How to generate or get the OpenAI ChatGPT API Key?"
     98msgstr ""
     99
     100#: admin/pages/dashboard.php:94
     101msgid "How to generate or get the OpenRouter API Key?"
     102msgstr ""
     103
     104#: admin/pages/dashboard.php:96
    104105msgid "View All"
    105106msgstr ""
    106107
    107 #: admin/pages/dashboard.php:116 seo/admin/pages/dashboard.php:38
     108#: admin/pages/dashboard.php:103
     109msgid "Review Us"
     110msgstr ""
     111
     112#: admin/pages/dashboard.php:108
     113msgid "WordPress.org"
     114msgstr ""
     115
     116#: admin/pages/dashboard.php:113
     117msgid "Trustpilot"
     118msgstr ""
     119
     120#: admin/pages/dashboard.php:141
     121msgid "WPAuto SEO Overview"
     122msgstr ""
     123
     124#: admin/pages/dashboard.php:145 seo/admin/pages/dashboard.php:44
     125#: seo/admin/pages/table.php:80
     126msgid "Post"
     127msgstr ""
     128
     129#: admin/pages/dashboard.php:151 seo/admin/pages/dashboard.php:50
     130#: seo/admin/pages/table.php:80
     131msgid "Page"
     132msgstr ""
     133
     134#: admin/pages/dashboard.php:157 seo/admin/pages/dashboard.php:56
     135msgid "Products"
     136msgstr ""
     137
     138#: admin/pages/dashboard.php:163 seo/admin/pages/dashboard.php:62
     139msgid "Total"
     140msgstr ""
     141
     142#: admin/pages/dashboard.php:174
     143msgid "WPAuto SEO Table"
     144msgstr ""
     145
     146#: admin/pages/dashboard.php:175
     147msgid "Go To Table"
     148msgstr ""
     149
     150#: admin/pages/dashboard.php:191 seo/admin/pages/dashboard.php:89
     151#: seo/admin/pages/table.php:101 seo/admin/plugin-options/config.php:132
     152#: seo/admin/plugin-options/config.php:150
     153#: seo/admin/plugin-options/config.php:167
     154msgid "Title"
     155msgstr ""
     156
     157#: admin/pages/dashboard.php:192 seo/admin/pages/dashboard.php:90
     158#: seo/admin/pages/table.php:102
     159msgid "AI Title"
     160msgstr ""
     161
     162#: admin/pages/dashboard.php:193 seo/admin/pages/dashboard.php:91
     163#: seo/admin/pages/table.php:103
     164msgid "AI Description"
     165msgstr ""
     166
     167#: admin/pages/dashboard.php:229 seo/admin/pages/dashboard.php:145
     168msgid "WPAuto SEO Logs"
     169msgstr ""
     170
     171#: admin/pages/dashboard.php:230
     172msgid "Go to SEO Log"
     173msgstr ""
     174
     175#: admin/pages/dashboard.php:243 seo/admin/pages/dashboard.php:146
     176msgid "Log Details"
     177msgstr ""
     178
     179#: admin/pages/dashboard.php:264
     180msgid "Documentation"
     181msgstr ""
     182
     183#: admin/pages/dashboard.php:269
     184msgid "Help Center"
     185msgstr ""
     186
     187#: admin/pages/seo.php:21 seo/admin/pages/settings.php:18
     188msgid "WPAuto SEO Settings"
     189msgstr ""
     190
     191#: admin/pages/seo.php:62
     192msgid "Update"
     193msgstr ""
     194
     195#: admin/pages/seo.php:63
     196msgid "AI Settings"
     197msgstr ""
     198
     199#: admin/pages/seo.php:64
     200msgid "Meta Settings"
     201msgstr ""
     202
     203#: admin/pages/seo.php:65
     204msgid "SEO Settings"
     205msgstr ""
     206
     207#: admin/pages/seo.php:66
     208msgid "Translator Settings"
     209msgstr ""
     210
     211#: admin/pages/seo.php:67
     212msgid "Cron Settings"
     213msgstr ""
     214
     215#: admin/pages/settings.php:18
     216msgid "WPAuto Settings"
     217msgstr ""
     218
     219#: admin/pages/settings.php:36
     220msgid "Save"
     221msgstr ""
     222
     223#: admin/parts/admin-footer.php:14
     224msgid "Select campaign type for content generation"
     225msgstr ""
     226
     227#: admin/parts/admin-footer.php:19 seo/inc/class.wpauto-seo-ajax.php:86
     228#: seo/inc/wpauto-seo-server-toi-733b.php:30
     229msgid "OpenAI GPT"
     230msgstr ""
     231
     232#: admin/parts/admin-footer.php:25 admin/plugin-options/config.php:72
     233#: seo/inc/class.wpauto-seo-ajax.php:83
     234#: seo/inc/wpauto-seo-server-toi-733b.php:27
     235msgid "OpenRouter"
     236msgstr ""
     237
     238#: admin/parts/admin-footer.php:31
     239msgid "Feed"
     240msgstr ""
     241
     242#: admin/parts/admin-footer.php:37
     243msgid "Multi"
     244msgstr ""
     245
     246#: admin/parts/admin-footer.php:43
     247msgid "Single"
     248msgstr ""
     249
     250#: admin/parts/admin-footer.php:49 admin/plugin-options/config.php:116
     251msgid "Amazon"
     252msgstr ""
     253
     254#: admin/plugin-options/config.php:44
     255msgid "OpenAI"
     256msgstr ""
     257
     258#: admin/plugin-options/config.php:57
     259msgid "OpenAI GPT Model"
     260msgstr ""
     261
     262#: admin/plugin-options/config.php:92
     263msgid "Image"
     264msgstr ""
     265
     266#: admin/plugin-options/config.php:104 seo/admin/plugin-options/config.php:207
     267msgid "Translator"
     268msgstr ""
     269
     270#: admin/plugin-options/config.php:128
     271msgid "Spinner Settings"
     272msgstr ""
     273
     274#: admin/plugin-options/config.php:140 seo/admin/plugin-options/config.php:231
     275msgid "Cron"
     276msgstr ""
     277
     278#: admin/plugin-options/framework.php:204
     279msgid "Search new keyword..."
     280msgstr ""
     281
     282#: admin/plugin-options/framework.php:223
     283msgid "Bulk keyword box"
     284msgstr ""
     285
     286#: admin/plugin-options/framework.php:224
     287msgid "All Keywords"
     288msgstr ""
     289
     290#: admin/plugin-options/framework.php:253
     291#: admin/plugin-options/framework.php:616
     292#: admin/plugin-options/framework.php:691
     293#: admin/plugin-options/framework.php:769
     294msgid "Add more"
     295msgstr ""
     296
     297#: admin/plugin-options/framework.php:432
     298msgid "Starting post time:"
     299msgstr ""
     300
     301#: admin/plugin-options/framework.php:449
     302msgid "Ending post time:"
     303msgstr ""
     304
     305#: admin/plugin-options/framework.php:512
     306msgid "Choose custom hours:minutes"
     307msgstr ""
     308
     309#: admin/plugin-options/framework.php:656
     310msgid "Meta Key"
     311msgstr ""
     312
     313#: admin/plugin-options/framework.php:663
     314msgid "Value/Shortcode"
     315msgstr ""
     316
     317#: admin/plugin-options/framework.php:731
     318msgid "Text"
     319msgstr ""
     320
     321#: admin/plugin-options/framework.php:735
     322msgid "Link"
     323msgstr ""
     324
     325#: admin/plugin-options/framework.php:739
     326msgid "Number of Changes"
     327msgstr ""
     328
     329#: admin/plugin-options/framework.php:998
     330msgid "From Language"
     331msgstr ""
     332
     333#: admin/plugin-options/framework.php:1010
     334msgid "To Language"
     335msgstr ""
     336
     337#: admin/plugin-options/framework.php:1153
     338#: seo/admin/plugin-options/framework.php:469
     339msgid "Upload Image"
     340msgstr ""
     341
     342#: admin/plugin-options/framework.php:1154
     343#: seo/admin/plugin-options/framework.php:470
     344msgid "Remove Image"
     345msgstr ""
     346
     347#: admin/plugin-options/framework.php:1429
     348msgid "Enter url"
     349msgstr ""
     350
     351#: admin/plugin-options/framework.php:1442
     352msgid "Visible"
     353msgstr ""
     354
     355#: admin/plugin-options/framework.php:1443
     356msgid "Disabled"
     357msgstr ""
     358
     359#: admin/plugin-options/framework.php:1444
     360msgid "Left"
     361msgstr ""
     362
     363#: admin/plugin-options/framework.php:1445
     364msgid "Center"
     365msgstr ""
     366
     367#: admin/plugin-options/framework.php:1446
     368msgid "Right"
     369msgstr ""
     370
     371#: admin/plugin-options/framework.php:1447
     372msgid "Normal"
     373msgstr ""
     374
     375#: admin/plugin-options/framework.php:1448
     376msgid "Sticky"
     377msgstr ""
     378
     379#: seo/admin/class.admin-menu.php:125
     380msgid "First"
     381msgstr ""
     382
     383#: seo/admin/class.admin-menu.php:127
     384msgid "previous"
     385msgstr ""
     386
     387#: seo/admin/class.admin-menu.php:142
     388msgid "next"
     389msgstr ""
     390
     391#: seo/admin/class.admin-menu.php:146
     392msgid "Last"
     393msgstr ""
     394
     395#: seo/admin/meta/class.wpauto-meta.php:46
     396msgid "WPAuto SEO"
     397msgstr ""
     398
     399#: seo/admin/meta/class.wpauto-meta.php:128
     400#: seo/inc/class.wpauto-seo-ajax.php:31
     401#, php-format
     402msgid ""
     403"Check whether current post type is choosed or not from settings page -> "
     404"<strong>Enable AI Meta for %1$s</strong>: %2$s"
     405msgstr ""
     406
     407#: seo/admin/meta/class.wpauto-meta.php:135
     408#: seo/admin/meta/class.wpauto-meta.php:161 seo/admin/pages/log.php:81
     409#: seo/inc/class.wpauto-seo-ajax.php:38 seo/inc/class.wpauto-seo-ajax.php:65
     410msgid "Go to Settings"
     411msgstr ""
     412
     413#: seo/admin/meta/class.wpauto-meta.php:155
     414#: seo/inc/class.wpauto-seo-ajax.php:59
     415#, php-format
     416msgid ""
     417"Check whether installed/actived SEO plugin is choosed or not from settings "
     418"page -> <strong>Choose Installed SEO Plugin</strong>: %s"
     419msgstr ""
     420
     421#: seo/admin/meta/class.wpauto-meta.php:177
     422msgid "Generate All with AI"
     423msgstr ""
     424
     425#: seo/admin/meta/class.wpauto-meta.php:182
     426msgid "Regenerate All with AI"
     427msgstr ""
     428
     429#: seo/admin/meta/class.wpauto-meta.php:204
     430msgid "Selected SEO Plugin:"
     431msgstr ""
     432
     433#: seo/admin/meta/class.wpauto-meta.php:208
     434#: seo/admin/meta/class.wpauto-meta.php:220
     435#: seo/admin/meta/class.wpauto-meta.php:232
     436#: seo/admin/meta/class.wpauto-meta.php:246 seo/admin/pages/table.php:107
     437#: seo/admin/pages/table.php:115
     438msgid "Regenerate"
     439msgstr ""
     440
     441#: seo/admin/meta/class.wpauto-meta.php:208
     442#: seo/admin/meta/class.wpauto-meta.php:220
     443#: seo/admin/meta/class.wpauto-meta.php:232
     444#: seo/admin/meta/class.wpauto-meta.php:246 seo/admin/pages/table.php:115
     445msgid "Generate"
     446msgstr ""
     447
     448#: seo/admin/meta/class.wpauto-meta.php:211
     449msgid "AI Meta Title:"
     450msgstr ""
     451
     452#: seo/admin/meta/class.wpauto-meta.php:214
     453msgid "meta title"
     454msgstr ""
     455
     456#: seo/admin/meta/class.wpauto-meta.php:223
     457msgid "AI Meta Description:"
     458msgstr ""
     459
     460#: seo/admin/meta/class.wpauto-meta.php:226
     461msgid "meta description"
     462msgstr ""
     463
     464#: seo/admin/meta/class.wpauto-meta.php:235
     465msgid "AI Focus Keyword:"
     466msgstr ""
     467
     468#: seo/admin/meta/class.wpauto-meta.php:238
     469msgid "meta keywords"
     470msgstr ""
     471
     472#: seo/admin/meta/class.wpauto-meta.php:249
     473msgid "AI Post Tags:"
     474msgstr ""
     475
     476#: seo/admin/meta/class.wpauto-meta.php:252
     477msgid "post tags"
     478msgstr ""
     479
     480#: seo/admin/meta/class.wpauto-meta.php:263
     481msgid "Loader"
     482msgstr ""
     483
     484#: seo/admin/meta/class.wpauto-meta.php:265
     485msgid "Run after publishing the post"
     486msgstr ""
     487
     488#: seo/admin/pages/dashboard.php:13 seo/admin/pages/log.php:21
     489#: seo/admin/pages/table.php:37
     490msgid "WPAuto SEO Dashboard"
     491msgstr ""
     492
     493#: seo/admin/pages/dashboard.php:40
    108494msgid "Processed"
    109495msgstr ""
    110496
    111 #: admin/pages/dashboard.php:120 seo/admin/pages/dashboard.php:42
    112 #: seo/admin/pages/table.php:72
    113 msgid "Post"
    114 msgstr ""
    115 
    116 #: admin/pages/dashboard.php:126 seo/admin/pages/dashboard.php:48
    117 #: seo/admin/pages/table.php:72
    118 msgid "Page"
    119 msgstr ""
    120 
    121 #: admin/pages/dashboard.php:132 seo/admin/pages/dashboard.php:54
    122 msgid "Products"
    123 msgstr ""
    124 
    125 #: admin/pages/dashboard.php:138 seo/admin/pages/dashboard.php:60
    126 msgid "Total"
    127 msgstr ""
    128 
    129 #: admin/pages/dashboard.php:149 seo/admin/pages/dashboard.php:70
     497#: seo/admin/pages/dashboard.php:72
    130498msgid "WPAuto SEO Processed Table"
    131499msgstr ""
    132500
    133 #: admin/pages/dashboard.php:150 seo/admin/pages/dashboard.php:71
     501#: seo/admin/pages/dashboard.php:73
    134502msgid "Table"
    135503msgstr ""
    136504
    137 #: admin/pages/dashboard.php:166 seo/admin/pages/dashboard.php:87
    138 #: seo/admin/pages/table.php:93 seo/admin/plugin-options/config.php:164
     505#: seo/admin/pages/dashboard.php:127
     506msgid "AI Request per Day"
     507msgstr ""
     508
     509#: seo/admin/pages/log.php:34
     510msgid "WPAuto SEO Log"
     511msgstr ""
     512
     513#: seo/admin/pages/log.php:45
     514msgid "Index"
     515msgstr ""
     516
     517#: seo/admin/pages/log.php:46
     518msgid "Details"
     519msgstr ""
     520
     521#: seo/admin/pages/log.php:78
     522#, php-format
     523msgid ""
     524"There is no record stored yet. Run the prompt of WPAuto SEO from post/page/"
     525"product. Before that, check settings properly -> WPAuto SEO Settings: %s"
     526msgstr ""
     527
     528#: seo/admin/pages/settings.php:50 seo/admin/pages/settings.php:51
     529msgid "Save Settings"
     530msgstr ""
     531
     532#: seo/admin/pages/table.php:77
     533msgid "Select Type: "
     534msgstr ""
     535
     536#: seo/admin/pages/table.php:80
     537msgid "Product"
     538msgstr ""
     539
     540#: seo/admin/pages/table.php:89
     541msgid "Search keyword"
     542msgstr ""
     543
     544#: seo/admin/pages/table.php:104
     545msgid "AI Keywords"
     546msgstr ""
     547
     548#: seo/admin/pages/table.php:105
     549msgid "AI Tags"
     550msgstr ""
     551
     552#: seo/admin/pages/table.php:106 seo/admin/pages/table.php:128
     553msgid "Edit"
     554msgstr ""
     555
     556#: seo/admin/pages/table.php:144
     557msgid "Sorry, no posts matched your criteria."
     558msgstr ""
     559
     560#: seo/admin/plugin-options/config.php:22
     561msgid "General"
     562msgstr ""
     563
     564#: seo/admin/plugin-options/config.php:28
     565msgid "Enable WPAuto SEO"
     566msgstr ""
     567
     568#: seo/admin/plugin-options/config.php:35
     569msgid "GPT"
     570msgstr ""
     571
     572#: seo/admin/plugin-options/config.php:41
     573msgid "Select AI"
     574msgstr ""
     575
     576#: seo/admin/plugin-options/config.php:51
     577msgid "Choose GPT Model"
     578msgstr ""
     579
     580#: seo/admin/plugin-options/config.php:68
     581msgid "Choose OpenRouter Model"
     582msgstr ""
     583
     584#: seo/admin/plugin-options/config.php:78
     585msgid "Choose an Installed SEO Plugin"
     586msgstr ""
     587
     588#: seo/admin/plugin-options/config.php:81
     589msgid ""
     590"Select the installed SEO plugin on your site. This allows the generated SEO "
     591"metadata to be placed in the selected SEO plugin."
     592msgstr ""
     593
     594#: seo/admin/plugin-options/config.php:86
     595msgid "Meta"
     596msgstr ""
     597
     598#: seo/admin/plugin-options/config.php:92
     599msgid "Meta Title Characters Length"
     600msgstr ""
     601
     602#: seo/admin/plugin-options/config.php:98
     603msgid "Meta Description Characters Length"
     604msgstr ""
     605
     606#: seo/admin/plugin-options/config.php:104
     607msgid "Number of Meta Tags"
     608msgstr ""
     609
     610#: seo/admin/plugin-options/config.php:106
     611msgid ""
     612"Mention the number of WordPress tags to generate (e.g., enter \"2\" to "
     613"generate two tags)."
     614msgstr ""
     615
     616#: seo/admin/plugin-options/config.php:111
     617msgid "Number of Keywords"
     618msgstr ""
     619
     620#: seo/admin/plugin-options/config.php:113
     621msgid ""
     622"Mention the number of keywords to generate (e.g., enter \"2\" to generate "
     623"two keywords. But this may limit by choosen SEo plugin)."
     624msgstr ""
     625
     626#: seo/admin/plugin-options/config.php:125
     627msgid "Enable Post Meta"
     628msgstr ""
     629
     630#: seo/admin/plugin-options/config.php:126
     631msgid ""
     632"Enable this option to generate and add meta information for SEO in the post. "
     633"Uncheck the field for which you don\"t want the meta to be generated."
     634msgstr ""
     635
     636#: seo/admin/plugin-options/config.php:133
     637#: seo/admin/plugin-options/config.php:151
     638#: seo/admin/plugin-options/config.php:168
     639msgid "Description"
     640msgstr ""
     641
     642#: seo/admin/plugin-options/config.php:134
     643#: seo/admin/plugin-options/config.php:152
     644#: seo/admin/plugin-options/config.php:169
     645msgid "Keyword"
     646msgstr ""
     647
     648#: seo/admin/plugin-options/config.php:135
     649#: seo/admin/plugin-options/config.php:170
     650msgid "Tags"
     651msgstr ""
     652
     653#: seo/admin/plugin-options/config.php:143
     654msgid "Enable Page Meta"
     655msgstr ""
     656
     657#: seo/admin/plugin-options/config.php:144
     658msgid ""
     659"Enable this option to generate and add meta information for SEO in the Page. "
     660"Uncheck the field for which you don\"t want the meta to be generated."
     661msgstr ""
     662
     663#: seo/admin/plugin-options/config.php:160
     664msgid "Enable Product Meta"
     665msgstr ""
     666
     667#: seo/admin/plugin-options/config.php:161
     668msgid ""
     669"Enable this option to generate and add meta information for SEO in the "
     670"Products. Uncheck the field for which you don\"t want the meta to be "
     671"generated."
     672msgstr ""
     673
     674#: seo/admin/plugin-options/config.php:178
     675msgid "Overwrite SEO Meta Title"
     676msgstr ""
     677
     678#: seo/admin/plugin-options/config.php:179
     679msgid ""
     680"Check this option to overwrite the meta title. If meta already exists in the "
     681"post type, it will be overwritten once. Uncheck to keep the existing meta "
     682"title."
     683msgstr ""
     684
     685#: seo/admin/plugin-options/config.php:185
     686msgid "Overwrite SEO Meta Description"
     687msgstr ""
     688
     689#: seo/admin/plugin-options/config.php:186
     690msgid ""
     691"Check this option to overwrite the meta description. If meta already exists "
     692"in the post type, it will be overwritten once. Uncheck to keep the existing "
     693"meta title."
     694msgstr ""
     695
    139696#: seo/admin/plugin-options/config.php:192
    140 #: seo/admin/plugin-options/config.php:219
    141 msgid "Title"
    142 msgstr ""
    143 
    144 #: admin/pages/dashboard.php:167 seo/admin/pages/dashboard.php:88
    145 #: seo/admin/pages/table.php:94
    146 msgid "AI Title"
    147 msgstr ""
    148 
    149 #: admin/pages/dashboard.php:168 seo/admin/pages/dashboard.php:89
    150 #: seo/admin/pages/table.php:95
    151 msgid "AI Description"
    152 msgstr ""
    153 
    154 #: admin/pages/dashboard.php:203
    155 msgid "WPAuto SEO Logs"
    156 msgstr ""
    157 
    158 #: admin/pages/dashboard.php:204
    159 msgid "Go to SEO Log"
    160 msgstr ""
    161 
    162 #: admin/pages/dashboard.php:217 seo/admin/pages/dashboard.php:144
    163 msgid "Log Details"
    164 msgstr ""
    165 
    166 #: admin/pages/dashboard.php:238
    167 msgid "Documentation"
    168 msgstr ""
    169 
    170 #: admin/pages/dashboard.php:243
    171 msgid "Help Center"
    172 msgstr ""
    173 
    174 #: admin/pages/seo-workingon.php:13 admin/pages/settings.php:13
    175 msgid "WPAuto Settings"
    176 msgstr ""
    177 
    178 #: admin/pages/seo-workingon.php:31 admin/pages/seo-workingon.php:35
    179 #: seo/admin/pages/settings.php:48 seo/admin/pages/settings.php:49
    180 msgid "Save Settings"
    181 msgstr ""
    182 
    183 #: admin/pages/seo.php:16
    184 msgid "WPAuto SEO Settings"
    185 msgstr ""
    186 
    187 #: admin/pages/seo.php:48 seo/admin/class.admin-menu.php:66
    188 #: seo/admin/class.admin-menu.php:67
    189 msgid "SEO Table"
    190 msgstr ""
    191 
    192 #: admin/pages/seo.php:55
    193 msgid "Update"
    194 msgstr ""
    195 
    196 #: admin/pages/seo.php:56
    197 msgid "AI Settings"
    198 msgstr ""
    199 
    200 #: admin/pages/seo.php:57
    201 msgid "Meta Settings"
    202 msgstr ""
    203 
    204 #: admin/pages/seo.php:58
    205 msgid "SEO Settings"
    206 msgstr ""
    207 
    208 #: admin/pages/seo.php:59
    209 msgid "Translator Settings"
    210 msgstr ""
    211 
    212 #: admin/pages/seo.php:60
    213 msgid "Cron Settings"
    214 msgstr ""
    215 
    216 #: admin/pages/settings.php:26
    217 msgid "Save"
    218 msgstr ""
    219 
    220 #: admin/parts/admin-footer.php:12
    221 msgid "Select campaign type for content generation"
    222 msgstr ""
    223 
    224 #: admin/parts/admin-footer.php:17 seo/inc/wpauto-seo-server-toi-733b.php:27
    225 msgid "OpenAI GPT"
    226 msgstr ""
    227 
    228 #: admin/parts/admin-footer.php:23 admin/plugin-options/config.php:70
    229 #: seo/inc/wpauto-seo-server-toi-733b.php:24
    230 msgid "OpenRouter"
    231 msgstr ""
    232 
    233 #: admin/parts/admin-footer.php:29
    234 msgid "Feed"
    235 msgstr ""
    236 
    237 #: admin/parts/admin-footer.php:35
    238 msgid "Multi"
    239 msgstr ""
    240 
    241 #: admin/parts/admin-footer.php:41
    242 msgid "Single"
    243 msgstr ""
    244 
    245 #: admin/parts/admin-footer.php:47
    246 msgid "Amazon"
    247 msgstr ""
    248 
    249 #: admin/parts/header.php:20
    250 msgid "WPAuto"
    251 msgstr ""
    252 
    253 #: admin/plugin-options/config.php:42
    254 msgid "OpenAI"
    255 msgstr ""
    256 
    257 #: admin/plugin-options/config.php:55
    258 msgid "OpenAI GPT Model"
    259 msgstr ""
    260 
    261 #: admin/plugin-options/framework.php:144
    262 msgid "Unlock the Full Power of WPAuto with Pro!"
    263 msgstr ""
    264 
    265 #: admin/plugin-options/framework.php:147
    266 msgid "Go Pro today and supercharge your WordPress automation!"
    267 msgstr ""
    268 
    269 #: admin/plugin-options/framework.php:202
    270 msgid "Search new keyword..."
    271 msgstr ""
    272 
    273 #: admin/plugin-options/framework.php:221
    274 msgid "Bulk keyword box"
    275 msgstr ""
    276 
    277 #: admin/plugin-options/framework.php:222
    278 msgid "All Keywords"
    279 msgstr ""
    280 
    281 #: admin/plugin-options/framework.php:251
    282 #: admin/plugin-options/framework.php:612
    283 #: admin/plugin-options/framework.php:687
    284 #: admin/plugin-options/framework.php:765
    285 msgid "Add more"
    286 msgstr ""
    287 
    288 #: admin/plugin-options/framework.php:428
    289 msgid "Starting post time:"
    290 msgstr ""
    291 
    292 #: admin/plugin-options/framework.php:445
    293 msgid "Ending post time:"
    294 msgstr ""
    295 
    296 #: admin/plugin-options/framework.php:508
    297 msgid "Choose custom hours:minutes"
    298 msgstr ""
    299 
    300 #: admin/plugin-options/framework.php:652
    301 msgid "Meta Key"
    302 msgstr ""
    303 
    304 #: admin/plugin-options/framework.php:659
    305 msgid "Value/Shortcode"
    306 msgstr ""
    307 
    308 #: admin/plugin-options/framework.php:727
    309 msgid "Text"
    310 msgstr ""
    311 
    312 #: admin/plugin-options/framework.php:731
    313 msgid "Link"
    314 msgstr ""
    315 
    316 #: admin/plugin-options/framework.php:735
    317 msgid "Number of Changes"
    318 msgstr ""
    319 
    320 #: admin/plugin-options/framework.php:994
    321 msgid "From Language"
    322 msgstr ""
    323 
    324 #: admin/plugin-options/framework.php:1006
    325 msgid "To Language"
    326 msgstr ""
    327 
    328 #: admin/plugin-options/framework.php:1149
    329 #: seo/admin/plugin-options/framework.php:444
    330 msgid "Upload Image"
    331 msgstr ""
    332 
    333 #: admin/plugin-options/framework.php:1150
    334 #: seo/admin/plugin-options/framework.php:445
    335 msgid "Remove Image"
    336 msgstr ""
    337 
    338 #: admin/plugin-options/framework.php:1425
    339 msgid "Enter url"
    340 msgstr ""
    341 
    342 #: admin/plugin-options/framework.php:1438
    343 msgid "Visible"
    344 msgstr ""
    345 
    346 #: admin/plugin-options/framework.php:1439
    347 msgid "Disabled"
    348 msgstr ""
    349 
    350 #: admin/plugin-options/framework.php:1440
    351 msgid "Left"
    352 msgstr ""
    353 
    354 #: admin/plugin-options/framework.php:1441
    355 msgid "Center"
    356 msgstr ""
    357 
    358 #: admin/plugin-options/framework.php:1442
    359 msgid "Right"
    360 msgstr ""
    361 
    362 #: admin/plugin-options/framework.php:1443
    363 msgid "Normal"
    364 msgstr ""
    365 
    366 #: admin/plugin-options/framework.php:1444
    367 msgid "Sticky"
    368 msgstr ""
    369 
    370 #: license-manager.php:255
    371 msgid "License Details"
    372 msgstr ""
    373 
    374 #: license-manager.php:270
    375 msgid "License status"
    376 msgstr ""
    377 
    378 #: license-manager.php:274
    379 msgid "Purchased on"
    380 msgstr ""
    381 
    382 #: license-manager.php:278
    383 msgid "Expiry"
    384 msgstr ""
    385 
    386 #: seo/admin/class.admin-menu.php:76 seo/admin/class.admin-menu.php:77
    387 msgid "SEO Logs"
    388 msgstr ""
    389 
    390 #: seo/admin/class.admin-menu.php:99 seo/admin/class.admin-menu.php:159
    391 msgid "First"
    392 msgstr ""
    393 
    394 #: seo/admin/class.admin-menu.php:100
    395 msgid "Prev"
    396 msgstr ""
    397 
    398 #: seo/admin/class.admin-menu.php:101
    399 msgid "Next"
    400 msgstr ""
    401 
    402 #: seo/admin/class.admin-menu.php:102 seo/admin/class.admin-menu.php:180
    403 msgid "Last"
    404 msgstr ""
    405 
    406 #: seo/admin/class.admin-menu.php:161
    407 msgid "previous"
    408 msgstr ""
    409 
    410 #: seo/admin/class.admin-menu.php:176
    411 msgid "next"
    412 msgstr ""
    413 
    414 #: seo/admin/meta/class.wpauto-meta.php:43
    415 msgid "WPAuto SEO"
    416 msgstr ""
    417 
    418 #: seo/admin/meta/class.wpauto-meta.php:121
    419 #: seo/inc/class.wpauto-seo-ajax.php:25
     697msgid "Overwrite SEO Focus Keyword"
     698msgstr ""
     699
     700#: seo/admin/plugin-options/config.php:193
     701msgid ""
     702"Check this option to overwrite the Focus Keyword. If meta already exists in "
     703"the post type, it will be overwritten once. Uncheck to keep the existing "
     704"meta title."
     705msgstr ""
     706
     707#: seo/admin/plugin-options/config.php:199
     708msgid "Overwrite WordPress Post/Product Tags"
     709msgstr ""
     710
     711#: seo/admin/plugin-options/config.php:200
     712msgid ""
     713"Check this option to overwrite the Tag. If tag already exists in the post "
     714"type, it will be overwritten once. Uncheck to keep the existing meta title."
     715msgstr ""
     716
     717#: seo/admin/plugin-options/config.php:215
     718msgid "Choose Language"
     719msgstr ""
     720
     721#: seo/admin/plugin-options/config.php:218
     722msgid "Select the desired output language. This uses Google Translator."
     723msgstr ""
     724
     725#: seo/admin/plugin-options/config.php:224
     726msgid "Enable AI Translator"
     727msgstr ""
     728
     729#: seo/admin/plugin-options/config.php:225
     730msgid ""
     731"Enable this option to translate content using AI. Select your desired "
     732"language in the \"Choose Language\" field."
     733msgstr ""
     734
     735#: seo/admin/plugin-options/config.php:237
     736msgid "Set Time Interval"
     737msgstr ""
     738
     739#: seo/admin/plugin-options/config.php:244
     740msgid "Choose Time Unit(Minutes/Hours/Days)"
     741msgstr ""
     742
     743#: seo/admin/plugin-options/config.php:246
     744msgid "Minutes"
     745msgstr ""
     746
     747#: seo/admin/plugin-options/config.php:247
     748msgid "Hours"
     749msgstr ""
     750
     751#: seo/admin/plugin-options/config.php:248
     752msgid "Days"
     753msgstr ""
     754
     755#: seo/admin/plugin-options/config.php:256
     756msgid "Pause Auto-Run"
     757msgstr ""
     758
     759#: seo/admin/plugin-options/config.php:261
     760msgid "Enable External SEO Cron"
     761msgstr ""
     762
     763#: seo/admin/plugin-options/framework.php:122
     764msgid "SEO Cron URL: "
     765msgstr ""
     766
     767#: seo/inc/class.wpauto-seo-ai.php:297
     768msgid ""
     769"Overwrite failed. Due to \"Overwrite SEO Meta Title\" option is disabled."
     770msgstr ""
     771
     772#: seo/inc/class.wpauto-seo-ai.php:314
     773msgid ""
     774"Overwrite failed. Due to \"Overwrite SEO Meta Description\" option is "
     775"disabled."
     776msgstr ""
     777
     778#: seo/inc/class.wpauto-seo-ai.php:331
    420779#, php-format
    421 msgid ""
    422 "Check whether current post type is choosed or not from settings page -> "
    423 "<strong>Enable AI Meta for %s</strong>: %s"
    424 msgstr ""
    425 
    426 #: seo/admin/meta/class.wpauto-meta.php:121
    427 #: seo/admin/meta/class.wpauto-meta.php:135 seo/admin/pages/log.php:60
    428 #: seo/inc/class.wpauto-seo-ajax.php:25
    429 #: seo/inc/class.wpauto-seo-ajax.php:40
    430 msgid "Go to Settings"
    431 msgstr ""
    432 
    433 #: seo/admin/meta/class.wpauto-meta.php:135
    434 #: seo/inc/class.wpauto-seo-ajax.php:40
     780msgid "Focus keyword option not available for %s"
     781msgstr ""
     782
     783#: seo/inc/class.wpauto-seo-ai.php:347
     784msgid ""
     785"Overwrite failed. Due to \"Overwrite SEO Meta Keyword\" option is disabled."
     786msgstr ""
     787
     788#: seo/inc/class.wpauto-seo-ai.php:369
     789msgid ""
     790"Overwrite failed. Due to \"Overwrite SEO Meta Tags\" option is disabled."
     791msgstr ""
     792
     793#: seo/inc/class.wpauto-seo-ai.php:386
    435794#, php-format
    436 msgid ""
    437 "Check whether installed/actived seo plugin is choosed or not from settings "
    438 "page -> <strong>Choose Installed SEO Plugin</strong>: %s"
    439 msgstr ""
    440 
    441 #: seo/admin/meta/class.wpauto-meta.php:148
    442 msgid "Generate All with AI"
    443 msgstr ""
    444 
    445 #: seo/admin/meta/class.wpauto-meta.php:153
    446 msgid "Regenerate All with AI"
    447 msgstr ""
    448 
    449 #: seo/admin/meta/class.wpauto-meta.php:175
    450 msgid "Selected SEO Plugin:"
    451 msgstr ""
    452 
    453 #: seo/admin/meta/class.wpauto-meta.php:179
    454 #: seo/admin/meta/class.wpauto-meta.php:191
    455 #: seo/admin/meta/class.wpauto-meta.php:203
    456 #: seo/admin/meta/class.wpauto-meta.php:217 seo/admin/pages/table.php:99
    457 #: seo/admin/pages/table.php:107
    458 msgid "Regenerate"
    459 msgstr ""
    460 
    461 #: seo/admin/meta/class.wpauto-meta.php:179
    462 #: seo/admin/meta/class.wpauto-meta.php:191
    463 #: seo/admin/meta/class.wpauto-meta.php:203
    464 #: seo/admin/meta/class.wpauto-meta.php:217 seo/admin/pages/table.php:107
    465 msgid "Generate"
    466 msgstr ""
    467 
    468 #: seo/admin/meta/class.wpauto-meta.php:182
    469 msgid "AI Meta Title:"
    470 msgstr ""
    471 
    472 #: seo/admin/meta/class.wpauto-meta.php:185
    473 msgid "meta title"
    474 msgstr ""
    475 
    476 #: seo/admin/meta/class.wpauto-meta.php:194
    477 msgid "AI Meta Description:"
    478 msgstr ""
    479 
    480 #: seo/admin/meta/class.wpauto-meta.php:197
    481 msgid "meta description"
    482 msgstr ""
    483 
    484 #: seo/admin/meta/class.wpauto-meta.php:206
    485 msgid "AI Focus Keyword:"
    486 msgstr ""
    487 
    488 #: seo/admin/meta/class.wpauto-meta.php:209
    489 msgid "meta keywords"
    490 msgstr ""
    491 
    492 #: seo/admin/meta/class.wpauto-meta.php:220
    493 msgid "AI Post Tags:"
    494 msgstr ""
    495 
    496 #: seo/admin/meta/class.wpauto-meta.php:223
    497 msgid "post tags"
    498 msgstr ""
    499 
    500 #: seo/admin/meta/class.wpauto-meta.php:234
    501 msgid "Loader"
    502 msgstr ""
    503 
    504 #: seo/admin/meta/class.wpauto-meta.php:236
    505 msgid "Run after publishing the post"
    506 msgstr ""
    507 
    508 #: seo/admin/pages/dashboard.php:11 seo/admin/pages/log.php:16
    509 #: seo/admin/pages/table.php:32
    510 msgid "WPAuto SEO Dashboard"
    511 msgstr ""
    512 
    513 #: seo/admin/pages/dashboard.php:125
    514 msgid "AI Request per Day"
    515 msgstr ""
    516 
    517 #: seo/admin/pages/dashboard.php:143
    518 msgid "WPAuto SEO Logs"
    519 msgstr ""
    520 
    521 #: seo/admin/pages/log.php:41
    522 msgid "Index"
    523 msgstr ""
    524 
    525 #: seo/admin/pages/log.php:42
    526 msgid "Details"
    527 msgstr ""
    528 
    529 #: seo/admin/pages/log.php:60
    530 #, php-format
    531 msgid ""
    532 "There is no record stored yet. Run the prompt of WPAuto SEO from post/"
    533 "page/product. Before that check settings properly -> WPAuto SEO Settings: "
    534 "%s"
    535 msgstr ""
    536 
    537 #: seo/admin/pages/settings.php:16
    538 msgid "WPAuto SEO Settings"
    539 msgstr ""
    540 
    541 #: seo/admin/pages/table.php:69
    542 msgid "Select Type: "
    543 msgstr ""
    544 
    545 #: seo/admin/pages/table.php:72
    546 msgid "Product"
    547 msgstr ""
    548 
    549 #: seo/admin/pages/table.php:81
    550 msgid "Search keyword"
    551 msgstr ""
    552 
    553 #: seo/admin/pages/table.php:96
    554 msgid "AI Keywords"
    555 msgstr ""
    556 
    557 #: seo/admin/pages/table.php:97
    558 msgid "AI Tags"
    559 msgstr ""
    560 
    561 #: seo/admin/pages/table.php:98 seo/admin/pages/table.php:120
    562 msgid "Edit"
    563 msgstr ""
    564 
    565 #: seo/admin/pages/table.php:136
    566 msgid "Sorry, no posts matched your criteria."
    567 msgstr ""
    568 
    569 #: seo/admin/plugin-options/config.php:20
    570 msgid "General"
    571 msgstr ""
    572 
    573 #: seo/admin/plugin-options/config.php:26
    574 msgid "Enable WPAuto SEO"
    575 msgstr ""
    576 
    577 #: seo/admin/plugin-options/config.php:34
    578 msgid "GPT"
    579 msgstr ""
    580 
    581 #: seo/admin/plugin-options/config.php:48
    582 msgid "Choose AI"
    583 msgstr ""
    584 
    585 #: seo/admin/plugin-options/config.php:58
    586 msgid "GPT Model"
    587 msgstr ""
    588 
    589 #: seo/admin/plugin-options/config.php:75
    590 msgid "OpenRouter Model"
    591 msgstr ""
    592 
    593 #: seo/admin/plugin-options/config.php:96
    594 msgid "Select Installed SEO plugin"
    595 msgstr ""
    596 
    597 #: seo/admin/plugin-options/config.php:99
    598 msgid ""
    599 "Choose your site's SEO plugin from the dropdown. This option is needed for "
    600 "3rd party seo plugin meta title, descriptions and keywords overwrite "
    601 "purpose. "
    602 msgstr ""
    603 
    604 #: seo/admin/plugin-options/config.php:105
    605 msgid "Meta"
    606 msgstr ""
    607 
    608 #: seo/admin/plugin-options/config.php:111
    609 msgid "Meta Title Characters Length"
    610 msgstr ""
    611 
    612 #: seo/admin/plugin-options/config.php:118
    613 msgid "Meta Description Characters Length"
    614 msgstr ""
    615 
    616 #: seo/admin/plugin-options/config.php:125
    617 msgid "Number of Meta Tags"
    618 msgstr ""
    619 
    620 #: seo/admin/plugin-options/config.php:127
    621 msgid ""
    622 "Mention the desired number of tags to generate using WPAuto SEO. Example 2"
    623 msgstr ""
    624 
    625 #: seo/admin/plugin-options/config.php:154
    626 msgid "Enable Post Meta"
    627 msgstr ""
    628 
    629 #: seo/admin/plugin-options/config.php:155
    630 msgid ""
    631 "Select the fields to generate meta title, meta descriptions, tags and "
    632 "keyword for posts using WPAuto SEO"
    633 msgstr ""
    634 
    635 #: seo/admin/plugin-options/config.php:165
    636 #: seo/admin/plugin-options/config.php:193
    637 #: seo/admin/plugin-options/config.php:220
    638 msgid "Description"
    639 msgstr ""
    640 
    641 #: seo/admin/plugin-options/config.php:166
    642 #: seo/admin/plugin-options/config.php:194
    643 #: seo/admin/plugin-options/config.php:221
    644 msgid "Keyword"
    645 msgstr ""
    646 
    647 #: seo/admin/plugin-options/config.php:167
    648 #: seo/admin/plugin-options/config.php:222
    649 msgid "Tags"
    650 msgstr ""
    651 
    652 #: seo/admin/plugin-options/config.php:182
    653 msgid "Enable Page Meta"
    654 msgstr ""
    655 
    656 #: seo/admin/plugin-options/config.php:183
    657 msgid ""
    658 "Select the fields to generate meta title, meta descriptions and keyword for "
    659 "pages using WPAuto SEO"
    660 msgstr ""
    661 
    662 #: seo/admin/plugin-options/config.php:209
    663 msgid "Enable Product Meta"
    664 msgstr ""
    665 
    666 #: seo/admin/plugin-options/config.php:210
    667 msgid ""
    668 "Select the fields to generate meta title, meta descriptions, tags and "
    669 "keyword for products using WPAuto SEO"
    670 msgstr ""
    671 
    672 #: seo/admin/plugin-options/config.php:244
    673 msgid "Overwrite SEO Meta Title"
    674 msgstr ""
    675 
    676 #: seo/admin/plugin-options/config.php:245
    677 msgid "Enable to allow overwrite existing meta title."
    678 msgstr ""
    679 
    680 #: seo/admin/plugin-options/config.php:251
    681 msgid "Overwrite SEO Meta Description"
    682 msgstr ""
    683 
    684 #: seo/admin/plugin-options/config.php:252
    685 msgid "Enable to allow overwrite existing meta description."
    686 msgstr ""
    687 
    688 #: seo/admin/plugin-options/config.php:258
    689 msgid "Overwrite SEO Focus Keyword"
    690 msgstr ""
    691 
    692 #: seo/admin/plugin-options/config.php:259
    693 msgid "Enable to allow overwrite existing focus keyword."
    694 msgstr ""
    695 
    696 #: seo/admin/plugin-options/config.php:265
    697 msgid "Overwrite WordPress Post/Product Tags"
    698 msgstr ""
    699 
    700 #: seo/admin/plugin-options/config.php:266
    701 msgid "Enable to allow overwrite existing tags in posts and products."
    702 msgstr ""
    703 
    704 #: seo/admin/plugin-options/config.php:290
    705 msgid "Translator"
    706 msgstr ""
    707 
    708 #: seo/admin/plugin-options/config.php:298
    709 msgid "Choose Language"
    710 msgstr ""
    711 
    712 #: seo/admin/plugin-options/config.php:301
    713 msgid "Choose your desired output language."
    714 msgstr ""
    715 
    716 #: seo/admin/plugin-options/config.php:307
    717 msgid "Enable AI Translator"
    718 msgstr ""
    719 
    720 #: seo/admin/plugin-options/config.php:308
    721 msgid "Enable to use AI Translator or default to Google translator."
    722 msgstr ""
    723 
    724 #: seo/admin/plugin-options/config.php:315
    725 msgid "Cron"
    726 msgstr ""
    727 
    728 #: seo/admin/plugin-options/config.php:328
    729 msgid "Run to update meta data for every posts/pages/products"
    730 msgstr ""
    731 
    732 #: seo/admin/plugin-options/config.php:335
    733 msgid "Frequency per Minutes/Hours/Days"
    734 msgstr ""
    735 
    736 #: seo/admin/plugin-options/config.php:337
    737 msgid "Minutes"
    738 msgstr ""
    739 
    740 #: seo/admin/plugin-options/config.php:338
    741 msgid "Hours"
    742 msgstr ""
    743 
    744 #: seo/admin/plugin-options/config.php:339
    745 msgid "Days"
    746 msgstr ""
    747 
    748 #: seo/admin/plugin-options/config.php:347
    749 msgid "Pause current campaign auto run?"
    750 msgstr ""
    751 
    752 #: seo/inc/wpauto-seo-server-toi-733b.php:202
     795msgid " Meta %s information successfully added."
     796msgstr ""
     797
     798#: seo/inc/class.wpauto-seo-ai.php:492
     799msgid "Meta information successfully added."
     800msgstr ""
     801
     802#: seo/inc/class.wpauto-seo-ai.php:500
     803msgid ""
     804"All informations already exists. Please check \"Overwrite SEO Meta\" Options "
     805"in Settings."
     806msgstr ""
     807
     808#: seo/inc/class.wpauto-seo-ajax.php:106
     809#: seo/inc/wpauto-seo-server-toi-733b.php:113
     810#: seo/inc/wpauto-seo-server-toi-733b.php:211
    753811#, php-format
    754812msgid "%s AI API key is missing.."
    755813msgstr ""
    756814
    757 #: seo/inc/wpauto-seo-server-toi-733b.php:254
     815#: seo/inc/class.wpauto-seo-schedule.php:37
     816msgid "Every 1 Minute"
     817msgstr ""
     818
     819#: seo/inc/wpauto-seo-server-toi-733b.php:242
    758820msgid "!Try after sometime.."
    759821msgstr ""
    760822
    761 #: seo/inc/class.wpauto-seo-ai.php:292
    762 msgid ""
    763 "Overwrite failed. Due to \"Overwrite SEO Meta Title\" option is disabled."
    764 msgstr ""
    765 
    766 #: seo/inc/class.wpauto-seo-ai.php:309
    767 msgid ""
    768 "Overwrite failed. Due to \"Overwrite SEO Meta Description\" option is "
    769 "disabled."
    770 msgstr ""
    771 
    772 #: seo/inc/class.wpauto-seo-ai.php:321
    773 #, php-format
    774 msgid "Focus keyword option not available for %s"
    775 msgstr ""
    776 
    777 #: seo/inc/class.wpauto-seo-ai.php:335
    778 msgid ""
    779 "Overwrite failed. Due to \"Overwrite SEO Meta Keyword\" option is disabled."
    780 msgstr ""
    781 
    782 #: seo/inc/class.wpauto-seo-ai.php:357
    783 msgid ""
    784 "Overwrite failed. Due to \"Overwrite SEO Meta Tags\" option is disabled."
    785 msgstr ""
    786 
    787 #: seo/inc/class.wpauto-seo-ai.php:376
    788 #, php-format
    789 msgid " Meta %s information successfully added."
    790 msgstr ""
    791 
    792 #: seo/inc/class.wpauto-seo-ai.php:490
    793 msgid "Meta information successfully added."
    794 msgstr ""
    795 
    796 #: seo/inc/class.wpauto-seo-ai.php:498
    797 msgid ""
    798 "All informations already exists. Please check \"Overwrite SEO Meta\" Options "
    799 "in Settings."
    800 msgstr ""
    801 
    802 #: seo/inc/class.wpauto-seo-schedule.php:32
    803 msgid "once a minute"
    804 msgstr ""
    805 
    806 #: seo/init.php:94
     823#: seo/init.php:96
    807824msgid "Not yet selected"
    808825msgstr ""
    809826
    810 #: seo/init.php:95
     827#: seo/init.php:97
    811828msgid "Yoast"
    812829msgstr ""
    813830
    814 #: seo/init.php:96
     831#: seo/init.php:98
    815832msgid "Rank Math"
    816833msgstr ""
    817834
    818 #: seo/init.php:97
     835#: seo/init.php:99
    819836msgid "All in One SEO"
    820837msgstr ""
    821838
    822 #: seo/init.php:98
     839#: seo/init.php:100
    823840msgid "SEO Press"
    824841msgstr ""
    825842
    826 #: seo/init.php:99
     843#: seo/init.php:101
    827844msgid "The SEO Framework"
    828845msgstr ""
    829846
    830 #: seo/init.php:100
     847#: seo/init.php:102
    831848msgid "Squirrly SEO"
    832849msgstr ""
    833850
    834 #: seo/init.php:101
     851#: seo/init.php:103
    835852msgid "SEO Simple Pack"
    836853msgstr ""
    837854
    838 #: seo/init.php:102
     855#: seo/init.php:104
    839856msgid "Simple SEO"
    840857msgstr ""
    841858
    842 #: seo/init.php:103
     859#: seo/init.php:105
    843860msgid "WP Meta SEO"
    844861msgstr ""
    845862
    846 #: seo/init.php:104
     863#: seo/init.php:106
    847864msgid "Slim SEO"
    848865msgstr ""
     866
     867#: seo/init.php:107
     868msgid "SmartCrawl SEO"
     869msgstr ""
     870
     871#: wpauto-init.php:33
     872msgid "Support"
     873msgstr ""
  • wpauto/trunk/readme.txt

    r3271122 r3274990  
    55Tested up to: 6.7.2
    66Requires PHP: 7.0
    7 Stable tag: 1.3.1
     7Stable tag: 1.3.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9999== Changelog ==
    100100
     101= 1.3.2 ( 2025-04-16 ) =
     102
     103- Improvement: Fixed some minor bugs
     104
    101105= 1.3.0 ( 2025-04-10 ) =
    102106
  • wpauto/trunk/wpauto.php

    r3271122 r3274990  
    44 * Plugin URI: https://aipublish.com
    55 * Description: Generate SEO Friendly Meta title, descriptions, tags, keywords using OpenAI ChatGPT or 300+ AI Models using OpenRouter.
    6  * Version: 1.3.1
     6 * Version: 1.3.2
    77 * Author: AI Publish
    88 * Author URI: https://aipublish.com
Note: See TracChangeset for help on using the changeset viewer.