Plugin Directory

Changeset 3253941


Ignore:
Timestamp:
03/11/2025 10:24:39 AM (12 months ago)
Author:
devutpol
Message:

releasing version 1.1.5

Location:
custom-feed-for-tiktok
Files:
60 added
7 edited

Legend:

Unmodified
Added
Removed
  • custom-feed-for-tiktok/trunk/app/Hooks/Handlers/ShortcodeHandler.php

    r3242615 r3253941  
    6565                $create_time = Arr::get($feed, 'created_at');
    6666                /* translators: %s: Human-readable time difference. */
    67                 $feeds[$index]['time_ago'] = sprintf(__('%s ago'), human_time_diff($create_time));
     67                $feeds[$index]['time_ago'] = sprintf(__('%s ago', 'custom-feed-for-tiktok'), human_time_diff($create_time));
    6868            }
    6969            $shortcodeHandler->makePopupModal($feeds, $settings['header'], $settings['feed_settings'], $templateId, $platform);
  • custom-feed-for-tiktok/trunk/app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php

    r3164196 r3253941  
    358358
    359359                if (empty($errorMessage)) {
     360                    // translators: %s: Account username or display name
    360361                    $errorMessage = sprintf(__('There has been a problem with your account (%s). Please reconnect your account.', 'custom-feed-for-tiktok'), $userName);
    361362                }
    362363
    363364                if($has_account_error_code === 401){
     365                    // translators: %s: Account username or display name
    364366                    $errorMessage = sprintf(__('There has been a problem with your account (%s). The user has not authorized application or revoked permission. Please reconnect your account.', 'custom-feed-for-tiktok'), $userName);
    365367                }
    366368
    367369                if($has_account_error_code === 'invalid_grant'){
     370                    // translators: %s: Account username or display name
    368371                    $errorMessage =  sprintf(__('There has been a problem with your account(%s). Your access token is invalid has expired. Please reconnect your account. Otherwise, the feed will no longer work.', 'custom-feed-for-tiktok'), $userName);
    369372                }
     
    425428            $settings['dynamic']['items'] = [];
    426429            $settings['dynamic']['header'] = [];
    427             $settings['dynamic']['error_message']['error_message'] = __('TikTok feeds are not being displayed due to the "optimize images" option being disabled. If the GDPR settings are set to "Yes," it is necessary to enable the optimize images option.', 'wp-social-reviews');
     430            $settings['dynamic']['error_message']['error_message'] = __('TikTok feeds are not being displayed due to the "optimize images" option being disabled. If the GDPR settings are set to "Yes," it is necessary to enable the optimize images option.', 'custom-feed-for-tiktok');
    428431        }
    429432
     
    539542            }
    540543            else{
    541                 $base_error_message = __('The account ID(%s) associated with your configuration settings has been deleted. To view your feed from this account, please reauthorize and reconnect it.', 'wp-social-reviews');
     544                // translators: %s: Account ID linked to the configuration
     545                $base_error_message = __('The account ID (%s) linked to your configuration has been deleted. To continue displaying your feed from this account, please reauthorize and reconnect it in the configuration settings. Then, go to the template editor, navigate to Source → Select Account, and choose the account again.', 'custom-feed-for-tiktok');
    542546                if ($multipleAccountsConnected) {
    543                     $error_message = __('There are multiple accounts being used on this template. ', 'wp-social-reviews') . sprintf($base_error_message, $id);
     547                    $error_message = __('There are multiple accounts being used on this template. ', 'custom-feed-for-tiktok') . sprintf($base_error_message, $id);
    544548                } else {
    545549                    $error_message = sprintf($base_error_message, $id);
  • custom-feed-for-tiktok/trunk/app/Services/Widgets/Oxygen/TikTokWidget.php

    r3049639 r3253941  
    3838            array(
    3939                'type'      => 'dropdown',
    40                 'name'      => __('Select Template' , "wp-social-reviews"),
     40                'name'      => __('Select Template' , "custom-feed-for-tiktok"),
    4141                'slug'      => 'wpsr_tiktok',
    4242                'value'     => $templates,
     
    5050         * Header
    5151         *****************************/
    52         $tiktok_header_section = $this->addControlSection( "wpsr_tiktok_header_section", __("Header", "wp-social-reviews"), "assets/icon.png", $this );
     52        $tiktok_header_section = $this->addControlSection( "wpsr_tiktok_header_section", __("Header", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    5353
    5454        /*****************************
    5555         * Header username
    5656         *****************************/
    57         $tiktok_header_un = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_username_section", __("Username", "wp-social-reviews"), "assets/icon.png", $this );
     57        $tiktok_header_un = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_username_section", __("Username", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    5858        $tiktok_header_un->addStyleControls(
    5959            array(
    6060                array(
    61                     "name"              => __('Color', "wp-social-reviews"),
     61                    "name"              => __('Color', "custom-feed-for-tiktok"),
    6262                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-name-wrapper a',
    6363                    "property"          => 'color',
    6464                ),
    6565                array(
    66                     "name"              => __('Font Size', "wp-social-reviews"),
     66                    "name"              => __('Font Size', "custom-feed-for-tiktok"),
    6767                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-name-wrapper a',
    6868                    "property"          => 'font-size',
     
    7070                ),
    7171                array(
    72                     "name"              => __('Font Weight', "wp-social-reviews"),
     72                    "name"              => __('Font Weight', "custom-feed-for-tiktok"),
    7373                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-name-wrapper a',
    7474                    "property"          => 'font-weight',
    7575                ),
    7676                array(
    77                     "name"              => __('Line Height', "wp-social-reviews"),
     77                    "name"              => __('Line Height', "custom-feed-for-tiktok"),
    7878                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-name-wrapper a',
    7979                    "property"          => 'line-height',
    8080                ),
    8181                array(
    82                     "name"              => __('Bottom Spacing', "wp-social-reviews"),
     82                    "name"              => __('Bottom Spacing', "custom-feed-for-tiktok"),
    8383                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-name-wrapper a',
    8484                    "property"          => 'margin-bottom',
     
    9292         * Header description
    9393         *****************************/
    94         $tiktok_header_des = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_des_section", __("Description", "wp-social-reviews"), "assets/icon.png", $this );
     94        $tiktok_header_des = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_des_section", __("Description", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    9595        $tiktok_header_des->addStyleControls(
    9696            array(
    9797                array(
    98                     "name"              => __('Color', "wp-social-reviews"),
     98                    "name"              => __('Color', "custom-feed-for-tiktok"),
    9999                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-description p',
    100100                    "property"          => 'color',
    101101                ),
    102102                array(
    103                     "name"              => __('Font Size', "wp-social-reviews"),
     103                    "name"              => __('Font Size', "custom-feed-for-tiktok"),
    104104                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-description p',
    105105                    "property"          => 'font-size',
     
    107107                ),
    108108                array(
    109                     "name"              => __('Font Weight', "wp-social-reviews"),
     109                    "name"              => __('Font Weight', "custom-feed-for-tiktok"),
    110110                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-description p',
    111111                    "property"          => 'font-weight',
    112112                ),
    113113                array(
    114                     "name"              => __('Line Height', "wp-social-reviews"),
     114                    "name"              => __('Line Height', "custom-feed-for-tiktok"),
    115115                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-info-description p',
    116116                    "property"          => 'line-height',
     
    122122         * Header statistics
    123123         *****************************/
    124         $tiktok_header_stat = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_stat_section", __("Statistics", "wp-social-reviews"), "assets/icon.png", $this );
     124        $tiktok_header_stat = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_stat_section", __("Statistics", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    125125        $tiktok_header_stat->addStyleControls(
    126126            array(
    127127                array(
    128                     "name"              => __('Text Color', "wp-social-reviews"),
     128                    "name"              => __('Text Color', "custom-feed-for-tiktok"),
    129129                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-statistics span',
    130130                    "property"          => 'color',
    131131                ),
    132132                array(
    133                     "name"              => __('Font Size', "wp-social-reviews"),
     133                    "name"              => __('Font Size', "custom-feed-for-tiktok"),
    134134                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-statistics span',
    135135                    "property"          => 'font-size',
     
    137137                ),
    138138                array(
    139                     "name"              => __('Font Weight', "wp-social-reviews"),
     139                    "name"              => __('Font Weight', "custom-feed-for-tiktok"),
    140140                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-statistics span',
    141141                    "property"          => 'font-weight',
    142142                ),
    143143                array(
    144                     "name"              => __('Line Height', "wp-social-reviews"),
     144                    "name"              => __('Line Height', "custom-feed-for-tiktok"),
    145145                    "selector"          => '.wpsr-tiktok-feed-header .wpsr-tiktok-feed-user-info-wrapper .wpsr-tiktok-feed-user-info-head .wpsr-tiktok-feed-header-info .wpsr-tiktok-feed-user-info .wpsr-tiktok-feed-user-statistics span',
    146146                    "property"          => 'line-height',
     
    152152         * Header Box
    153153         *****************************/
    154         $tiktok_header_box = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_box_section", __("Box", "wp-social-reviews"), "assets/icon.png", $this );
     154        $tiktok_header_box = $tiktok_header_section->addControlSection( "wpsr_tiktok_header_box_section", __("Box", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    155155        $tiktok_header_box->addStyleControls(
    156156            array(
     
    195195         * Content
    196196         *****************************/
    197         $tiktok_content_section = $this->addControlSection( "wpsr_tiktok_content_section", __("Content", "wp-social-reviews"), "assets/icon.png", $this );
    198         $tiktok_content_section->typographySection( __('Post Text'), '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-feed-description-link .wpsr-feed-description-text', $this );
     197        $tiktok_content_section = $this->addControlSection( "wpsr_tiktok_content_section", __("Content", "custom-feed-for-tiktok"), "assets/icon.png", $this );
     198        $tiktok_content_section->typographySection( __('Post Text', 'custom-feed-for-tiktok'), '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-feed-description-link .wpsr-feed-description-text', $this );
    199199        $tiktok_content_section->addPreset(
    200200            "padding",
    201201            "wpsr_tiktok_content_padding",
    202             __("Padding", "wp-social-reviews"),
     202            __("Padding", "custom-feed-for-tiktok"),
    203203            '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-feed-description-link .wpsr-feed-description-text'
    204204        )->whiteList();
    205205
    206         $tiktok_author_section = $tiktok_content_section->addControlSection( "wpsr_tiktok_author_section", __("Author", "wp-social-reviews"), "assets/icon.png", $this );
     206        $tiktok_author_section = $tiktok_content_section->addControlSection( "wpsr_tiktok_author_section", __("Author", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    207207        $tiktok_author_section->addStyleControls(
    208208            array(
    209209                array(
    210                     "name"              => __('Color', "wp-social-reviews"),
     210                    "name"              => __('Color', "custom-feed-for-tiktok"),
    211211                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-author-name',
    212212                    "property"          => 'color',
    213213                ),
    214214                array(
    215                     "name"              => __('Font Size', "wp-social-reviews"),
     215                    "name"              => __('Font Size', "custom-feed-for-tiktok"),
    216216                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-author-name',
    217217                    "property"          => 'font-size',
     
    219219                ),
    220220                array(
    221                     "name"              => __('Font Weight', "wp-social-reviews"),
     221                    "name"              => __('Font Weight', "custom-feed-for-tiktok"),
    222222                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-author-name',
    223223                    "property"          => 'font-weight',
    224224                ),
    225225                array(
    226                     "name"              => __('Line Height', "wp-social-reviews"),
     226                    "name"              => __('Line Height', "custom-feed-for-tiktok"),
    227227                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-author-name',
    228228                    "property"          => 'line-height',
    229229                ),
    230230                array(
    231                     "name"              => __('Bottom Spacing', "wp-social-reviews"),
     231                    "name"              => __('Bottom Spacing', "custom-feed-for-tiktok"),
    232232                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-author-name',
    233233                    "property"          => 'margin-bottom',
     
    238238        );
    239239
    240         $tiktok_date_section = $tiktok_content_section->addControlSection( "wpsr_tiktok_date_section", __("Date", "wp-social-reviews"), "assets/icon.png", $this );
     240        $tiktok_date_section = $tiktok_content_section->addControlSection( "wpsr_tiktok_date_section", __("Date", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    241241        $tiktok_date_section->addStyleControls(
    242242            array(
    243243                array(
    244                     "name"              => __('Color', "wp-social-reviews"),
     244                    "name"              => __('Color', "custom-feed-for-tiktok"),
    245245                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-time',
    246246                    "property"          => 'color',
    247247                ),
    248248                array(
    249                     "name"              => __('Font Size', "wp-social-reviews"),
     249                    "name"              => __('Font Size', "custom-feed-for-tiktok"),
    250250                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-time',
    251251                    "property"          => 'font-size',
     
    253253                ),
    254254                array(
    255                     "name"              => __('Font Weight', "wp-social-reviews"),
     255                    "name"              => __('Font Weight', "custom-feed-for-tiktok"),
    256256                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-time',
    257257                    "property"          => 'font-weight',
    258258                ),
    259259                array(
    260                     "name"              => __('Line Height', "wp-social-reviews"),
     260                    "name"              => __('Line Height', "custom-feed-for-tiktok"),
    261261                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-time',
    262262                    "property"          => 'line-height',
    263263                ),
    264264                array(
    265                     "name"              => __('Bottom Spacing', "wp-social-reviews"),
     265                    "name"              => __('Bottom Spacing', "custom-feed-for-tiktok"),
    266266                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-time',
    267267                    "property"          => 'margin-bottom',
     
    272272        );
    273273
    274         $tiktok_statistics_count_section = $tiktok_content_section->addControlSection( "wpsr_tiktok_statistics_count_section", __("Statistics Count", "wp-social-reviews"), "assets/icon.png", $this );
     274        $tiktok_statistics_count_section = $tiktok_content_section->addControlSection( "wpsr_tiktok_statistics_count_section", __("Statistics Count", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    275275        $tiktok_statistics_count_section->addStyleControls(
    276276            array(
    277277                array(
    278                     "name"              => __('Color', "wp-social-reviews"),
     278                    "name"              => __('Color', "custom-feed-for-tiktok"),
    279279                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-statistics .wpsr-tiktok-feed-reaction-count',
    280280                    "property"          => 'color',
    281281                ),
    282282                array(
    283                     "name"              => __('Font Size', "wp-social-reviews"),
     283                    "name"              => __('Font Size', "custom-feed-for-tiktok"),
    284284                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-statistics .wpsr-tiktok-feed-reaction-count',
    285285                    "property"          => 'font-size',
     
    287287                ),
    288288                array(
    289                     "name"              => __('Font Weight', "wp-social-reviews"),
     289                    "name"              => __('Font Weight', "custom-feed-for-tiktok"),
    290290                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-statistics .wpsr-tiktok-feed-reaction-count',
    291291                    "property"          => 'font-weight',
    292292                ),
    293293                array(
    294                     "name"              => __('Line Height', "wp-social-reviews"),
     294                    "name"              => __('Line Height', "custom-feed-for-tiktok"),
    295295                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-statistics .wpsr-tiktok-feed-reaction-count',
    296296                    "property"          => 'line-height',
    297297                ),
    298298                array(
    299                     "name"              => __('Bottom Spacing', "wp-social-reviews"),
     299                    "name"              => __('Bottom Spacing', "custom-feed-for-tiktok"),
    300300                    "selector"          => '.wpsr-tiktok-feed-wrapper .wpsr-tiktok-feed-item .wpsr-tiktok-feed-statistics .wpsr-tiktok-feed-reaction-count',
    301301                    "property"          => 'margin-bottom',
     
    310310         *follow btn
    311311         *****************************/
    312         $tiktok_follow_section = $this->addControlSection( "wpsr_tiktok_follow_section", __("Follow Button", "wp-social-reviews"), "assets/icon.png", $this );
     312        $tiktok_follow_section = $this->addControlSection( "wpsr_tiktok_follow_section", __("Follow Button", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    313313        $tiktok_follow_section_fz = $tiktok_follow_section->addStyleControl(
    314314            array(
    315                 "name"              => __('Font Size', "wp-social-reviews"),
     315                "name"              => __('Font Size', "custom-feed-for-tiktok"),
    316316                "selector"          => '.wpsr-tiktok-feed-follow-button-group .wpsr-tiktok-feed-btn a',
    317317                "property"          => 'font-size',
     
    350350         * Pagination
    351351         *****************************/
    352         $pagination_section = $this->addControlSection( "wpsr_tiktok_pagination_section", __("Pagination", "wp-social-reviews"), "assets/icon.png", $this );
    353         $pagination_section->typographySection( __('Typography'), '.wpsr_more', $this );
     352        $pagination_section = $this->addControlSection( "wpsr_tiktok_pagination_section", __("Pagination", "custom-feed-for-tiktok"), "assets/icon.png", $this );
     353        $pagination_section->typographySection( __('Typography', 'custom-feed-for-tiktok'), '.wpsr_more', $this );
    354354        $pagination_section->addStyleControls(
    355355            array(
     
    376376        )->whiteList();
    377377
    378         $pagination_section_border = $pagination_section->addControlSection( "wpsr_tiktok_pagination_border_section", __("Border", "wp-social-reviews"), "assets/icon.png", $this );
     378        $pagination_section_border = $pagination_section->addControlSection( "wpsr_tiktok_pagination_border_section", __("Border", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    379379        $pagination_section_border->addPreset(
    380380            "border",
     
    394394         * Box
    395395         *****************************/
    396         $tiktok_box_section = $this->addControlSection( "wpsr_tiktok_box_section", __("Item Box", "wp-social-reviews"), "assets/icon.png", $this );
     396        $tiktok_box_section = $this->addControlSection( "wpsr_tiktok_box_section", __("Item Box", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    397397        $selector = '.wpsr-tiktok-feed-item .wpsr-tiktok-feed-inner';
    398398        $tiktok_box_section->addStyleControls(
     
    405405            )
    406406        );
    407         $tiktok_box_sp = $tiktok_box_section->addControlSection( "wpsr_tiktok_box_sp_section", __("Spacing", "wp-social-reviews"), "assets/icon.png", $this );
     407        $tiktok_box_sp = $tiktok_box_section->addControlSection( "wpsr_tiktok_box_sp_section", __("Spacing", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    408408        $tiktok_box_sp->addPreset(
    409409            "padding",
     
    420420        )->whiteList();
    421421
    422         $tiktok_box_border = $tiktok_box_section->addControlSection( "wpsr_tiktok_box_border_section", __("Border", "wp-social-reviews"), "assets/icon.png", $this );
     422        $tiktok_box_border = $tiktok_box_section->addControlSection( "wpsr_tiktok_box_border_section", __("Border", "custom-feed-for-tiktok"), "assets/icon.png", $this );
    423423        $tiktok_box_border->addPreset(
    424424            "border",
  • custom-feed-for-tiktok/trunk/custom-feed-for-tiktok-boot.php

    r3242615 r3253941  
    66!defined('WPINC') && die;
    77
    8 define('CUSTOM_FEED_FOR_TIKTOK_VERSION', '1.1.4');
     8define('CUSTOM_FEED_FOR_TIKTOK_VERSION', '1.1.5');
    99define('CUSTOM_FEED_FOR_TIKTOK', true);
    1010define('CUSTOM_FEED_FOR_TIKTOK_URL', plugin_dir_url(__FILE__));
  • custom-feed-for-tiktok/trunk/custom-feed-for-tiktok.php

    r3242615 r3253941  
    44Plugin URI:   https://github.com/WPManageNinja/custom-feed-for-tiktok
    55Description:  Create eye-catchy and responsive TikTok feed on your WordPress website.
    6 Version:      1.1.4
     6Version:      1.1.5
    77Author:       Social Feed - WP Social Ninja Team
    88Author URI:   https://wpsocialninja.com/platforms/tiktok-feed/
  • custom-feed-for-tiktok/trunk/language/custom-feed-for-tiktok.pot

    r3153967 r3253941  
    44"Project-Id-Version: Custom Feed for TikTok\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2024-09-18 09:32+0000\n"
     6"POT-Creation-Date: 2025-03-11 10:10+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1717"X-Domain: custom-feed-for-tiktok"
    1818
     19#. %s: Human-readable time difference.
     20#: app/Hooks/Handlers/ShortcodeHandler.php:67
     21#, php-format
     22msgid "%s ago"
     23msgstr ""
     24
    1925#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:98
    2026msgid "Account Name Color"
     
    2632
    2733#: app/Services/Widgets/TikTokWidget.php:265
     34#: app/Services/Widgets/Oxygen/TikTokWidget.php:206
    2835#: app/Services/Platforms/Feeds/Tiktok/Config.php:204
    2936msgid "Author"
     
    5865
    5966#: app/Services/Widgets/Oxygen/TikTokWidget.php:182
     67#: app/Services/Widgets/Oxygen/TikTokWidget.php:378
    6068#: app/Services/Widgets/Oxygen/TikTokWidget.php:382
     69#: app/Services/Widgets/Oxygen/TikTokWidget.php:422
    6170#: app/Services/Widgets/Oxygen/TikTokWidget.php:426
    6271msgid "Border"
     
    7483#: app/Services/Widgets/TikTokWidget.php:393
    7584#: app/Services/Widgets/TikTokWidget.php:441
     85#: app/Services/Widgets/Oxygen/TikTokWidget.php:82
     86#: app/Services/Widgets/Oxygen/TikTokWidget.php:231
     87#: app/Services/Widgets/Oxygen/TikTokWidget.php:265
     88#: app/Services/Widgets/Oxygen/TikTokWidget.php:299
    7689#: app/Services/Platforms/Feeds/Tiktok/Config.php:137
    7790#: app/Services/Platforms/Feeds/Tiktok/Config.php:156
     
    8093
    8194#: app/Services/Widgets/TikTokWidget.php:489
     95#: app/Services/Widgets/Oxygen/TikTokWidget.php:154
    8296#: app/Services/Platforms/Feeds/Tiktok/Config.php:184
    8397#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:350
     
    89103msgstr ""
    90104
    91 #: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:999
     105#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:1010
    92106msgid "Cache cleared successfully!"
    93107msgstr ""
     
    102116
    103117#: app/Services/Widgets/TikTokWidget.php:468
     118#: app/Services/Widgets/Oxygen/TikTokWidget.php:61
     119#: app/Services/Widgets/Oxygen/TikTokWidget.php:98
     120#: app/Services/Widgets/Oxygen/TikTokWidget.php:210
     121#: app/Services/Widgets/Oxygen/TikTokWidget.php:244
     122#: app/Services/Widgets/Oxygen/TikTokWidget.php:278
    104123#: app/Services/Widgets/Oxygen/TikTokWidget.php:327
    105124#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:208
     
    110129
    111130#: app/Services/Widgets/TikTokWidget.php:257
     131#: app/Services/Widgets/Oxygen/TikTokWidget.php:197
    112132#: app/Services/Platforms/Feeds/Tiktok/Config.php:201
    113133msgid "Content"
     
    122142msgstr ""
    123143
     144#: app/Services/Widgets/Oxygen/TikTokWidget.php:240
     145msgid "Date"
     146msgstr ""
     147
    124148#: app/Services/Widgets/TikTokWidget.php:302
    125149msgid "Date Color"
     
    127151
    128152#: app/Services/Widgets/TikTokWidget.php:412
     153#: app/Services/Widgets/Oxygen/TikTokWidget.php:94
    129154#: app/Services/Platforms/Feeds/Tiktok/Config.php:149
    130155msgid "Description"
     
    140165
    141166#: app/Services/Widgets/TikTokWidget.php:199
     167#: app/Services/Widgets/Oxygen/TikTokWidget.php:312
    142168#: app/Services/Platforms/Feeds/Tiktok/Config.php:284
    143169#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:262
     
    149175msgstr ""
    150176
     177#: app/Services/Widgets/Oxygen/TikTokWidget.php:66
     178#: app/Services/Widgets/Oxygen/TikTokWidget.php:103
     179#: app/Services/Widgets/Oxygen/TikTokWidget.php:133
     180#: app/Services/Widgets/Oxygen/TikTokWidget.php:215
     181#: app/Services/Widgets/Oxygen/TikTokWidget.php:249
     182#: app/Services/Widgets/Oxygen/TikTokWidget.php:283
     183#: app/Services/Widgets/Oxygen/TikTokWidget.php:315
     184msgid "Font Size"
     185msgstr ""
     186
     187#: app/Services/Widgets/Oxygen/TikTokWidget.php:72
     188#: app/Services/Widgets/Oxygen/TikTokWidget.php:109
     189#: app/Services/Widgets/Oxygen/TikTokWidget.php:139
     190#: app/Services/Widgets/Oxygen/TikTokWidget.php:221
     191#: app/Services/Widgets/Oxygen/TikTokWidget.php:255
     192#: app/Services/Widgets/Oxygen/TikTokWidget.php:289
     193msgid "Font Weight"
     194msgstr ""
     195
    151196#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:66
    152197msgid "General"
     
    154199
    155200#: app/Services/Widgets/TikTokWidget.php:356
     201#: app/Services/Widgets/Oxygen/TikTokWidget.php:52
    156202#: app/Services/Platforms/Feeds/Tiktok/Config.php:127
    157203#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:84
     
    167213msgstr ""
    168214
     215#. URI of the plugin
     216msgid "https://github.com/WPManageNinja/custom-feed-for-tiktok"
     217msgstr ""
     218
    169219#. Author URI of the plugin
    170 msgid "https://github.com/devutpol"
    171 msgstr ""
    172 
    173 #. URI of the plugin
    174220msgid "https://wpsocialninja.com/platforms/tiktok-feed/"
    175221msgstr ""
    176222
    177223#: app/Services/Widgets/TikTokWidget.php:557
     224#: app/Services/Widgets/Oxygen/TikTokWidget.php:396
    178225#: app/Services/Platforms/Feeds/Tiktok/Config.php:334
    179226msgid "Item Box"
     
    182229#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:146
    183230msgid "Likes Counter Typography"
     231msgstr ""
     232
     233#: app/Services/Widgets/Oxygen/TikTokWidget.php:77
     234#: app/Services/Widgets/Oxygen/TikTokWidget.php:114
     235#: app/Services/Widgets/Oxygen/TikTokWidget.php:144
     236#: app/Services/Widgets/Oxygen/TikTokWidget.php:226
     237#: app/Services/Widgets/Oxygen/TikTokWidget.php:260
     238#: app/Services/Widgets/Oxygen/TikTokWidget.php:294
     239msgid "Line Height"
    184240msgstr ""
    185241
     
    209265#: app/Services/Widgets/TikTokWidget.php:587
    210266#: app/Services/Widgets/Oxygen/TikTokWidget.php:168
     267#: app/Services/Widgets/Oxygen/TikTokWidget.php:202
    211268#: app/Services/Widgets/Oxygen/TikTokWidget.php:345
    212269#: app/Services/Widgets/Oxygen/TikTokWidget.php:367
     
    216273
    217274#: app/Services/Widgets/TikTokWidget.php:101
     275#: app/Services/Widgets/Oxygen/TikTokWidget.php:352
    218276#: app/Services/Platforms/Feeds/Tiktok/Config.php:309
    219277msgid "Pagination"
     
    235293
    236294#: app/Services/Widgets/TikTokWidget.php:323
     295#: app/Services/Widgets/Oxygen/TikTokWidget.php:198
    237296#: app/Services/Platforms/Feeds/Tiktok/Config.php:236
    238297#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:204
     
    257316msgstr ""
    258317
     318#: app/Services/Widgets/Oxygen/TikTokWidget.php:40
     319msgid "Select Template"
     320msgstr ""
     321
    259322#. Author of the plugin
    260323msgid "Social Feed - WP Social Ninja Team"
     
    266329msgstr ""
    267330
    268 #: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:925
     331#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:933
    269332msgid "Something went wrong"
    270333msgstr ""
    271334
     335#: app/Services/Widgets/Oxygen/TikTokWidget.php:407
     336msgid "Spacing"
     337msgstr ""
     338
    272339#: app/Services/Widgets/TikTokWidget.php:460
     340#: app/Services/Widgets/Oxygen/TikTokWidget.php:124
    273341#: app/Services/Platforms/Feeds/Tiktok/Config.php:168
    274342msgid "Statistics"
     
    279347msgstr ""
    280348
     349#: app/Services/Widgets/Oxygen/TikTokWidget.php:274
    281350#: app/Services/Platforms/Feeds/Tiktok/Config.php:252
    282351#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:238
     
    288357msgstr ""
    289358
    290 #: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:453
     359#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:460
    291360msgid "Success"
    292361msgstr ""
     
    296365msgstr ""
    297366
    298 #: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:482
     367#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:489
    299368msgid "Template Saved Successfully!!"
    300369msgstr ""
     
    305374#: app/Services/Widgets/TikTokWidget.php:372
    306375#: app/Services/Widgets/TikTokWidget.php:420
     376#: app/Services/Widgets/Oxygen/TikTokWidget.php:128
    307377#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:160
    308378#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:184
     
    323393msgstr ""
    324394
    325 #: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:360
     395#. %s: Account ID linked to the configuration
     396#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:545
     397#, php-format
     398msgid ""
     399"The account ID (%s) linked to your configuration has been deleted. To "
     400"continue displaying your feed from this account, please reauthorize and "
     401"reconnect it in the configuration settings. Then, go to the template editor, "
     402"navigate to Source → Select Account, and choose the account again."
     403msgstr ""
     404
     405#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:547
     406msgid "There are multiple accounts being used on this template. "
     407msgstr ""
     408
     409#. %s: Account username or display name
     410#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:361
    326411#, php-format
    327412msgid ""
     
    330415msgstr ""
    331416
    332 #: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:364
     417#. %s: Account username or display name
     418#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:366
    333419#, php-format
    334420msgid ""
     
    337423msgstr ""
    338424
    339 #: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:368
     425#. %s: Account username or display name
     426#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:371
    340427#, php-format
    341428msgid ""
     
    352439#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:34
    353440msgid "TikTok Feeds"
     441msgstr ""
     442
     443#: app/Services/Platforms/Feeds/Tiktok/TiktokFeed.php:430
     444msgid ""
     445"TikTok feeds are not being displayed due to the \"optimize images\" option "
     446"being disabled. If the GDPR settings are set to \"Yes,\" it is necessary to "
     447"enable the optimize images option."
    354448msgstr ""
    355449
     
    362456#: app/Services/Widgets/TikTokWidget.php:433
    363457#: app/Services/Widgets/TikTokWidget.php:481
     458#: app/Services/Widgets/Oxygen/TikTokWidget.php:353
    364459#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:170
    365460#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:194
     
    376471msgstr ""
    377472
     473#: app/Services/Widgets/Oxygen/TikTokWidget.php:57
     474msgid "Username"
     475msgstr ""
     476
    378477#: app/Services/Widgets/Beaver/TikTok/TikTokWidget.php:36
    379478msgid "WP Social Ninja"
     
    384483msgstr ""
    385484
    386 #: app/Views/public/feeds-templates/tiktok/template1.php:16
     485#: app/Views/public/feeds-templates/tiktok/template1.php:17
    387486msgid "You need to upgrade to pro to use this feature."
    388487msgstr ""
  • custom-feed-for-tiktok/trunk/readme.txt

    r3242615 r3253941  
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 1.1.4
     7Stable tag: 1.1.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    184184
    185185== Changelog ==
     1861.1.5
     187- Added missing text domains for better translation support.
     188- Included string comments for translators.
     189
    1861901.1.4
    187191- Fixed TikTok feed display issue on mobile devices
Note: See TracChangeset for help on using the changeset viewer.