Plugin Directory

Changeset 2790103


Ignore:
Timestamp:
09/26/2022 06:50:54 AM (4 years ago)
Author:
traxconn
Message:

v1.1.3 - Release update.

Location:
talkino
Files:
83 added
4 edited

Legend:

Unmodified
Added
Removed
  • talkino/trunk/includes/admin/class-talkino-customizer.php

    r2783792 r2790103  
    9797        $messages['talkino_agents'] = array(
    9898            0  => '', // Unused. Messages start at index 1.
    99             1  => esc_html__( 'Agent updated.' ),
     99            1  => esc_html__( 'Agent updated. Please clear your cache if you are using any caching plugin.' ),
    100100            2  => esc_html__( 'Agent field updated.' ),
    101101            3  => esc_html__( 'Agent field deleted.'),
    102102            4  => esc_html__( 'Agent updated.' ),
    103103            5  => isset( $_GET['revision'] ) ? sprintf( esc_html__( 'Agent restored to revision from %s' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
    104             6  => esc_html__( 'Agent published.' ),
     104            6  => esc_html__( 'Agent published. Please clear your cache if you are using any caching plugin.' ),
    105105            7  => esc_html__( 'Agent saved.' ),
    106106            8  => esc_html__( 'Agent submitted.' ),
     
    129129            'locked'    => _n( '%s agent not updated, somebody is editing it.', '%s agents not updated, somebody is editing them.', $bulk_counts['locked'] ),
    130130            'deleted'   => _n( '%s agent permanently deleted.', '%s agents permanently deleted.', $bulk_counts['deleted'] ),
    131             'trashed'   => _n( '%s agent moved to the Trash.', '%s agents moved to the Trash.', $bulk_counts['trashed'] ),
     131            'trashed'   => _n( '%s agent moved to the Trash. Please clear your cache if you are using any caching plugin.', '%s agents moved to the Trash. Please clear your cache if you are using any cache plugin.', $bulk_counts['trashed'] ),
    132132            'untrashed' => _n( '%s agent restored from the Trash.', '%s agents restored from the Trash.', $bulk_counts['untrashed'] ),
    133133        );
  • talkino/trunk/languages/talkino.pot

    r2789550 r2790103  
    44"Project-Id-Version: Talkino\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2022-09-24 04:04+0000\n"
     6"POT-Creation-Date: 2022-09-26 06:26+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • talkino/trunk/readme.txt

    r2789585 r2790103  
    77Requires at least: 4.9
    88Tested up to: 6.0.2
    9 Stable tag: 1.1.2
     9Stable tag: 1.1.3
    1010Requires PHP: 5.6
    1111License: GPLv2 or later
     
    171171== Changelog ==
    172172
     173= 1.1.3, Sep 26, 2022 =
     174* Improvement: Updated the notification message after added, edited, and removed agent.
     175
    173176= 1.1.2, Sep 24, 2022 =
    174177* Fixed: Fatal error that happens in PHP 7.3.
  • talkino/trunk/talkino.php

    r2789556 r2790103  
    99 * Plugin URI:        https://traxconn.com/
    1010 * Description:       Talkino allows you to integrate multi social messengers and contact into your website and enable your users to contact you using multi social messengers' accounts.
    11  * Version:           1.1.2
     11 * Version:           1.1.3
    1212 * Author:            Traxconn
    1313 * Requires at least: 4.9
     
    2929 * Current plugin version.
    3030 */
    31 define( 'TALKINO_VERSION', '1.1.2' );
     31define( 'TALKINO_VERSION', '1.1.3' );
    3232
    3333/**
Note: See TracChangeset for help on using the changeset viewer.