Plugin Directory

Changeset 3108255


Ignore:
Timestamp:
06/26/2024 04:26:50 PM (21 months ago)
Author:
ideawp
Message:

Update to version 1.0.6 from GitHub

Location:
gravity-notifications
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gravity-notifications/tags/1.0.6/admin/class-idea-gn-admin.php

    r3105927 r3108255  
    9494        wp_enqueue_media();
    9595    }
     96    /**
     97     * Checks if Gravity form is activated or not, if not creates an admin notice.
     98     *
     99     * @since 1.0.0
     100     *
     101     * @return void prints the admin notice.
     102     */
     103    public function check_gravity_forms_status() {
     104        // Check if Gravity form is activated.
     105        if ( class_exists( 'GFForms' ) ) {
     106            return false;
     107        }
     108
     109        echo wp_kses_post( '<div class="notice notice-error"><p>' );
     110        echo esc_html__( 'Gravity Notifications requires Gravity Forms to function. Please install and activate Gravity Forms to use Gravity Notifications.', 'gravity-notifications' );
     111        echo wp_kses_post( '</p></div>' );
     112    }
    96113
    97114    /**
  • gravity-notifications/tags/1.0.6/gravity-notifications.php

    r3107057 r3108255  
    11<?php
     2
    23/**
    34 * Plugin Name:       Gravity Notifications
    45 * Plugin URI:        https://ideawp.com/plugin/gravity-notifications/
    56 * Description:       Easily send text messages and WhatsApp notifications with Gravity Forms using Twilio and WhatsApp cloud API.
    6  * Version: 1.0.5
     7 * Version: 1.0.6
    78 * Requires Plugins:  gravityforms
    89 * Author:            IdeaWP
     
    2425 * Currently plugin version.
    2526 */
    26 define( 'IDEA_GN_VERSION', '1.0.5' );
     27define( 'IDEA_GN_VERSION', '1.0.6' );
    2728define( 'IDEA_GN_PATH', plugin_dir_path( __FILE__ ) );
    2829define( 'IDEA_GN_URL', plugin_dir_url( __FILE__ ) );
  • gravity-notifications/tags/1.0.6/includes/class-idea-gn.php

    r3107050 r3108255  
    140140    private function define_admin_hooks() {
    141141        $plugin_admin = new Idea_Gn_Admin( $this->get_plugin_name(), $this->get_version() );
     142        add_action( 'admin_notices', array( $plugin_admin, 'check_gravity_forms_status' ) );
    142143        add_action( 'admin_init', array( $plugin_admin, 'clear_transients_after_license_change' ), 1 );
    143144        add_action( 'admin_enqueue_scripts', array( $plugin_admin, 'enqueue_styles' ) );
  • gravity-notifications/tags/1.0.6/languages/gravity-notifications.pot

    r3107057 r3108255  
    77"Content-Type: text/plain; charset=UTF-8\n"
    88"Content-Transfer-Encoding: 8bit\n"
    9 "POT-Creation-Date: 2024-06-25 05:02+0000\n"
     9"POT-Creation-Date: 2024-06-26 16:24+0000\n"
    1010"X-Poedit-Basepath: ..\n"
    1111"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
     
    1515"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1616
    17 #: admin/class-idea-gn-admin.php:89
     17#: admin/class-idea-gn-admin.php:89, temp/admin/class-idea-gn-admin.php:89
    1818msgid "Error reloading templates. Please review your WhatsApp API details."
    1919msgstr ""
    2020
    21 #: admin/class-idea-gn-admin.php:90
     21#: admin/class-idea-gn-admin.php:90, temp/admin/class-idea-gn-admin.php:90
    2222msgid "Create a new Template"
    2323msgstr ""
    2424
    25 #: admin/class-idea-gn-admin.php:106
     25#: admin/class-idea-gn-admin.php:110
     26msgid "Gravity Notifications requires Gravity Forms to function. Please install and activate Gravity Forms to use Gravity Notifications."
     27msgstr ""
     28
     29#: admin/class-idea-gn-admin.php:123, temp/admin/class-idea-gn-admin.php:106
    2630msgid "Settings"
    2731msgstr ""
    2832
    2933#. translators: %s: Setting page link
    30 #: admin/class-idea-gn-settings.php:138
     34#: admin/class-idea-gn-settings.php:138, temp/admin/class-idea-gn-settings.php:138
    3135msgid "Gravity Notifications: To enable WhatsApp/Twilio messaging, please enter the API details in the Gravity Notifications  %1$s"
    3236msgstr ""
    3337
    34 #: admin/class-idea-gn-settings.php:139
     38#: admin/class-idea-gn-settings.php:139, temp/admin/class-idea-gn-settings.php:139
    3539msgid "settings page"
    3640msgstr ""
    3741
    38 #: admin/class-idea-gn-settings.php:116
     42#: admin/class-idea-gn-settings.php:116, temp/admin/class-idea-gn-settings.php:116
    3943msgid "<b>Important</b>: Your Twilio API details are incorrect. Please review and enter the correct details to activate Twilio SMS notifications."
    4044msgstr ""
    4145
    42 #: admin/class-idea-gn-settings.php:128
     46#: admin/class-idea-gn-settings.php:128, temp/admin/class-idea-gn-settings.php:128
    4347msgid "<b>Important</b>: Your WhatsApp API details are incorrect. Please review and enter the correct details to activate WhatsApp notifications."
    4448msgstr ""
    4549
    46 #: admin/class-idea-gn-settings.php:156, admin/class-idea-gn-settings.php:157
     50#: admin/class-idea-gn-settings.php:156, admin/class-idea-gn-settings.php:157, temp/admin/class-idea-gn-settings.php:156, temp/admin/class-idea-gn-settings.php:157
    4751msgid "Gravity Notifications"
    4852msgstr ""
    4953
    50 #: admin/settings.php:43
     54#: admin/settings.php:43, temp/admin/settings.php:43
    5155msgid "API Details"
    5256msgstr ""
    5357
    54 #: admin/settings.php:48
     58#: admin/settings.php:48, temp/admin/settings.php:48
    5559msgid "General"
    5660msgstr ""
    5761
    5862#. translators: URL of the Twillio account.
    59 #: admin/settings.php:60
     63#: admin/settings.php:60, temp/admin/settings.php:60
    6064msgid "You can get the Account SID and API Keys from your <a href=\"%s\" target=\"_blank\">Twillio account</a>."
    6165msgstr ""
    6266
    63 #: admin/settings.php:66
     67#: admin/settings.php:66, temp/admin/settings.php:66
    6468msgid "Account SID"
    6569msgstr ""
    6670
    67 #: admin/settings.php:73
     71#: admin/settings.php:73, temp/admin/settings.php:73
    6872msgid "Auth Token"
    6973msgstr ""
    7074
    71 #: admin/settings.php:80
     75#: admin/settings.php:80, temp/admin/settings.php:80
    7276msgid "From number"
    7377msgstr ""
    7478
    75 #: admin/settings.php:81
     79#: admin/settings.php:81, temp/admin/settings.php:81
    7680msgid "Enter your Twilio phone number. This number serves as the sender for your text messages."
    7781msgstr ""
    7882
    79 #: admin/settings.php:90
     83#: admin/settings.php:90, temp/admin/settings.php:90
    8084msgid "WhatsApp"
    8185msgstr ""
    8286
    83 #: admin/settings.php:96
     87#: admin/settings.php:96, temp/admin/settings.php:96
    8488msgid "WhatsApp Business ID"
    8589msgstr ""
    8690
    87 #: admin/settings.php:103
     91#: admin/settings.php:103, temp/admin/settings.php:103
    8892msgid "WhatsApp Phone ID"
    8993msgstr ""
    9094
    91 #: admin/settings.php:110
     95#: admin/settings.php:110, temp/admin/settings.php:110
    9296msgid "Access Token"
    9397msgstr ""
    9498
    95 #: admin/settings.php:120
     99#: admin/settings.php:120, temp/admin/settings.php:120
    96100msgid "General Settings"
    97101msgstr ""
    98102
    99 #: admin/settings.php:127
     103#: admin/settings.php:127, temp/admin/settings.php:127
    100104msgid "Enable International Phone Input"
    101105msgstr ""
    102106
    103 #: admin/settings.php:128
     107#: admin/settings.php:128, temp/admin/settings.php:128
    104108msgid "When enabled, all phone number fields will be upgraded to International Telephone Input, featuring a country code selector and automatic format validation. <br><br>We highly recommend keeping this setting enabled for accurate phone number collection."
    105109msgstr ""
    106110
    107111#. translators: %s: Settings
    108 #: includes/class-gn-addon.php:103
     112#: includes/class-gn-addon.php:103, temp/includes/class-gn-addon.php:103
    109113msgid "%s Settings"
    110114msgstr ""
    111115
    112116#. translators: %s: Setting page link
    113 #: includes/class-gn-addon.php:107
     117#: includes/class-gn-addon.php:107, temp/includes/class-gn-addon.php:107
    114118msgid "To get started, please configure your %s ."
    115119msgstr ""
    116120
    117121#. translators: %s: Setting page link
    118 #: includes/class-gn-addon.php:226
     122#: includes/class-gn-addon.php:226, temp/includes/class-gn-addon.php:226
    119123msgid "Free version only supports text templates, to use variables, image, video and document templates, please <a href= \"%s\">Upgrade to pro version </a>."
    120124msgstr ""
    121125
    122 #: includes/class-gn-addon.php:236
     126#: includes/class-gn-addon.php:236, temp/includes/class-gn-addon.php:236
    123127msgid "Feed name"
    124128msgstr ""
    125129
    126 #: includes/class-gn-addon.php:239
     130#: includes/class-gn-addon.php:239, temp/includes/class-gn-addon.php:239
    127131msgid "Name of the feed"
    128132msgstr ""
    129133
    130 #: includes/class-gn-addon.php:244
     134#: includes/class-gn-addon.php:244, temp/includes/class-gn-addon.php:244
    131135msgid "Notification Type"
    132136msgstr ""
    133137
    134 #: includes/class-gn-addon.php:249
     138#: includes/class-gn-addon.php:249, temp/includes/class-gn-addon.php:249
    135139msgid "Select notification type"
    136140msgstr ""
    137141
    138 #: includes/class-gn-addon.php:254
     142#: includes/class-gn-addon.php:254, temp/includes/class-gn-addon.php:254
    139143msgid "WhatApp"
    140144msgstr ""
    141145
    142 #: includes/class-gn-addon.php:259
     146#: includes/class-gn-addon.php:259, temp/includes/class-gn-addon.php:259
    143147msgid "SMS (Twilio) "
    144148msgstr ""
    145149
    146 #: includes/class-gn-addon.php:263
     150#: includes/class-gn-addon.php:263, temp/includes/class-gn-addon.php:263
    147151msgid "Type of notification"
    148152msgstr ""
    149153
    150 #: includes/class-gn-addon.php:271, includes/class-gn-addon.php:278
     154#: includes/class-gn-addon.php:271, includes/class-gn-addon.php:278, temp/includes/class-gn-addon.php:271, temp/includes/class-gn-addon.php:278
    151155msgid "Recipient"
    152156msgstr ""
    153157
    154 #: includes/class-gn-addon.php:279
     158#: includes/class-gn-addon.php:279, temp/includes/class-gn-addon.php:279
    155159msgid "Phone number to send this message to. For Twilio trial accounts, you can only send SMS messages to validated numbers. To validate a number, log in to your Twilio account and navigate to the 'Numbers' tab."
    156160msgstr ""
    157161
    158 #: includes/class-gn-addon.php:284
     162#: includes/class-gn-addon.php:284, temp/includes/class-gn-addon.php:284
    159163msgid "WhatsApp Template"
    160164msgstr ""
    161165
    162 #: includes/class-gn-addon.php:295
     166#: includes/class-gn-addon.php:295, temp/includes/class-gn-addon.php:295
    163167msgid "WhatsApp template"
    164168msgstr ""
    165169
    166 #: includes/class-gn-addon.php:296
     170#: includes/class-gn-addon.php:296, temp/includes/class-gn-addon.php:296
    167171msgid "The WhatsApp message template to use to send message to WhatsApp."
    168172msgstr ""
    169173
    170 #: includes/class-gn-addon.php:303
     174#: includes/class-gn-addon.php:303, temp/includes/class-gn-addon.php:303
    171175msgid "Message"
    172176msgstr ""
    173177
    174 #: includes/class-gn-addon.php:309
     178#: includes/class-gn-addon.php:309, temp/includes/class-gn-addon.php:309
    175179msgid "Content"
    176180msgstr ""
    177181
    178 #: includes/class-gn-addon.php:310
     182#: includes/class-gn-addon.php:310, temp/includes/class-gn-addon.php:310
    179183msgid "The content of the message to send."
    180184msgstr ""
    181185
    182 #: includes/class-gn-addon.php:346
     186#: includes/class-gn-addon.php:346, temp/includes/class-gn-addon.php:346
    183187msgid "Name"
    184188msgstr ""
    185189
    186 #: includes/class-idea-gn-twilio.php:184
     190#: includes/class-idea-gn-twilio.php:184, temp/includes/class-idea-gn-twilio.php:184
    187191msgid "Select a Number"
    188192msgstr ""
    189193
    190 #: includes/class-idea-gn-twilio.php:192
     194#: includes/class-idea-gn-twilio.php:192, temp/includes/class-idea-gn-twilio.php:192
    191195msgid "Phone Fields"
    192196msgstr ""
    193197
    194 #: includes/class-idea-gn-whatsapp.php:145, includes/class-idea-gn-whatsapp.php:169
     198#: includes/class-idea-gn-whatsapp.php:145, includes/class-idea-gn-whatsapp.php:169, temp/includes/class-idea-gn-whatsapp.php:145, temp/includes/class-idea-gn-whatsapp.php:169
    195199msgid "Select a template"
    196200msgstr ""
    197201
    198 #: includes/class-idea-gn-whatsapp.php:152
     202#: includes/class-idea-gn-whatsapp.php:152, temp/includes/class-idea-gn-whatsapp.php:152
    199203msgid "Templates"
    200204msgstr ""
    201205
    202206#. translators: %s: Variable
    203 #: includes/class-idea-gn-whatsapp.php:295
     207#: includes/class-idea-gn-whatsapp.php:295, temp/includes/class-idea-gn-whatsapp.php:295
    204208msgid "Variable %s"
    205209msgstr ""
    206210
    207 #: includes/class-idea-gn-whatsapp.php:329
     211#: includes/class-idea-gn-whatsapp.php:329, temp/includes/class-idea-gn-whatsapp.php:329
    208212msgid "Media file URL"
    209213msgstr ""
    210214
    211 #: includes/class-idea-gn-whatsapp.php:339
     215#: includes/class-idea-gn-whatsapp.php:339, temp/includes/class-idea-gn-whatsapp.php:339
    212216msgid "Choose a media file"
    213217msgstr ""
    214218
    215 #: includes/class-idea-gn-whatsapp.php:353
     219#: includes/class-idea-gn-whatsapp.php:353, temp/includes/class-idea-gn-whatsapp.php:353
    216220msgid "Enable Condition"
    217221msgstr ""
    218222
    219 #: includes/class-idea-gn-whatsapp.php:354
     223#: includes/class-idea-gn-whatsapp.php:354, temp/includes/class-idea-gn-whatsapp.php:354
    220224msgid "Process this simple feed if"
    221225msgstr ""
  • gravity-notifications/tags/1.0.6/readme.txt

    r3107057 r3108255  
    55Tested up to: 6.5
    66Requires PHP: 5.6
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88License: GPLv3
    99URI: http://www.gnu.org/licenses/gpl-3.0.html
  • gravity-notifications/trunk/admin/class-idea-gn-admin.php

    r3105927 r3108255  
    9494        wp_enqueue_media();
    9595    }
     96    /**
     97     * Checks if Gravity form is activated or not, if not creates an admin notice.
     98     *
     99     * @since 1.0.0
     100     *
     101     * @return void prints the admin notice.
     102     */
     103    public function check_gravity_forms_status() {
     104        // Check if Gravity form is activated.
     105        if ( class_exists( 'GFForms' ) ) {
     106            return false;
     107        }
     108
     109        echo wp_kses_post( '<div class="notice notice-error"><p>' );
     110        echo esc_html__( 'Gravity Notifications requires Gravity Forms to function. Please install and activate Gravity Forms to use Gravity Notifications.', 'gravity-notifications' );
     111        echo wp_kses_post( '</p></div>' );
     112    }
    96113
    97114    /**
  • gravity-notifications/trunk/gravity-notifications.php

    r3107057 r3108255  
    11<?php
     2
    23/**
    34 * Plugin Name:       Gravity Notifications
    45 * Plugin URI:        https://ideawp.com/plugin/gravity-notifications/
    56 * Description:       Easily send text messages and WhatsApp notifications with Gravity Forms using Twilio and WhatsApp cloud API.
    6  * Version: 1.0.5
     7 * Version: 1.0.6
    78 * Requires Plugins:  gravityforms
    89 * Author:            IdeaWP
     
    2425 * Currently plugin version.
    2526 */
    26 define( 'IDEA_GN_VERSION', '1.0.5' );
     27define( 'IDEA_GN_VERSION', '1.0.6' );
    2728define( 'IDEA_GN_PATH', plugin_dir_path( __FILE__ ) );
    2829define( 'IDEA_GN_URL', plugin_dir_url( __FILE__ ) );
  • gravity-notifications/trunk/includes/class-idea-gn.php

    r3107050 r3108255  
    140140    private function define_admin_hooks() {
    141141        $plugin_admin = new Idea_Gn_Admin( $this->get_plugin_name(), $this->get_version() );
     142        add_action( 'admin_notices', array( $plugin_admin, 'check_gravity_forms_status' ) );
    142143        add_action( 'admin_init', array( $plugin_admin, 'clear_transients_after_license_change' ), 1 );
    143144        add_action( 'admin_enqueue_scripts', array( $plugin_admin, 'enqueue_styles' ) );
  • gravity-notifications/trunk/languages/gravity-notifications.pot

    r3107057 r3108255  
    77"Content-Type: text/plain; charset=UTF-8\n"
    88"Content-Transfer-Encoding: 8bit\n"
    9 "POT-Creation-Date: 2024-06-25 05:02+0000\n"
     9"POT-Creation-Date: 2024-06-26 16:24+0000\n"
    1010"X-Poedit-Basepath: ..\n"
    1111"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
     
    1515"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1616
    17 #: admin/class-idea-gn-admin.php:89
     17#: admin/class-idea-gn-admin.php:89, temp/admin/class-idea-gn-admin.php:89
    1818msgid "Error reloading templates. Please review your WhatsApp API details."
    1919msgstr ""
    2020
    21 #: admin/class-idea-gn-admin.php:90
     21#: admin/class-idea-gn-admin.php:90, temp/admin/class-idea-gn-admin.php:90
    2222msgid "Create a new Template"
    2323msgstr ""
    2424
    25 #: admin/class-idea-gn-admin.php:106
     25#: admin/class-idea-gn-admin.php:110
     26msgid "Gravity Notifications requires Gravity Forms to function. Please install and activate Gravity Forms to use Gravity Notifications."
     27msgstr ""
     28
     29#: admin/class-idea-gn-admin.php:123, temp/admin/class-idea-gn-admin.php:106
    2630msgid "Settings"
    2731msgstr ""
    2832
    2933#. translators: %s: Setting page link
    30 #: admin/class-idea-gn-settings.php:138
     34#: admin/class-idea-gn-settings.php:138, temp/admin/class-idea-gn-settings.php:138
    3135msgid "Gravity Notifications: To enable WhatsApp/Twilio messaging, please enter the API details in the Gravity Notifications  %1$s"
    3236msgstr ""
    3337
    34 #: admin/class-idea-gn-settings.php:139
     38#: admin/class-idea-gn-settings.php:139, temp/admin/class-idea-gn-settings.php:139
    3539msgid "settings page"
    3640msgstr ""
    3741
    38 #: admin/class-idea-gn-settings.php:116
     42#: admin/class-idea-gn-settings.php:116, temp/admin/class-idea-gn-settings.php:116
    3943msgid "<b>Important</b>: Your Twilio API details are incorrect. Please review and enter the correct details to activate Twilio SMS notifications."
    4044msgstr ""
    4145
    42 #: admin/class-idea-gn-settings.php:128
     46#: admin/class-idea-gn-settings.php:128, temp/admin/class-idea-gn-settings.php:128
    4347msgid "<b>Important</b>: Your WhatsApp API details are incorrect. Please review and enter the correct details to activate WhatsApp notifications."
    4448msgstr ""
    4549
    46 #: admin/class-idea-gn-settings.php:156, admin/class-idea-gn-settings.php:157
     50#: admin/class-idea-gn-settings.php:156, admin/class-idea-gn-settings.php:157, temp/admin/class-idea-gn-settings.php:156, temp/admin/class-idea-gn-settings.php:157
    4751msgid "Gravity Notifications"
    4852msgstr ""
    4953
    50 #: admin/settings.php:43
     54#: admin/settings.php:43, temp/admin/settings.php:43
    5155msgid "API Details"
    5256msgstr ""
    5357
    54 #: admin/settings.php:48
     58#: admin/settings.php:48, temp/admin/settings.php:48
    5559msgid "General"
    5660msgstr ""
    5761
    5862#. translators: URL of the Twillio account.
    59 #: admin/settings.php:60
     63#: admin/settings.php:60, temp/admin/settings.php:60
    6064msgid "You can get the Account SID and API Keys from your <a href=\"%s\" target=\"_blank\">Twillio account</a>."
    6165msgstr ""
    6266
    63 #: admin/settings.php:66
     67#: admin/settings.php:66, temp/admin/settings.php:66
    6468msgid "Account SID"
    6569msgstr ""
    6670
    67 #: admin/settings.php:73
     71#: admin/settings.php:73, temp/admin/settings.php:73
    6872msgid "Auth Token"
    6973msgstr ""
    7074
    71 #: admin/settings.php:80
     75#: admin/settings.php:80, temp/admin/settings.php:80
    7276msgid "From number"
    7377msgstr ""
    7478
    75 #: admin/settings.php:81
     79#: admin/settings.php:81, temp/admin/settings.php:81
    7680msgid "Enter your Twilio phone number. This number serves as the sender for your text messages."
    7781msgstr ""
    7882
    79 #: admin/settings.php:90
     83#: admin/settings.php:90, temp/admin/settings.php:90
    8084msgid "WhatsApp"
    8185msgstr ""
    8286
    83 #: admin/settings.php:96
     87#: admin/settings.php:96, temp/admin/settings.php:96
    8488msgid "WhatsApp Business ID"
    8589msgstr ""
    8690
    87 #: admin/settings.php:103
     91#: admin/settings.php:103, temp/admin/settings.php:103
    8892msgid "WhatsApp Phone ID"
    8993msgstr ""
    9094
    91 #: admin/settings.php:110
     95#: admin/settings.php:110, temp/admin/settings.php:110
    9296msgid "Access Token"
    9397msgstr ""
    9498
    95 #: admin/settings.php:120
     99#: admin/settings.php:120, temp/admin/settings.php:120
    96100msgid "General Settings"
    97101msgstr ""
    98102
    99 #: admin/settings.php:127
     103#: admin/settings.php:127, temp/admin/settings.php:127
    100104msgid "Enable International Phone Input"
    101105msgstr ""
    102106
    103 #: admin/settings.php:128
     107#: admin/settings.php:128, temp/admin/settings.php:128
    104108msgid "When enabled, all phone number fields will be upgraded to International Telephone Input, featuring a country code selector and automatic format validation. <br><br>We highly recommend keeping this setting enabled for accurate phone number collection."
    105109msgstr ""
    106110
    107111#. translators: %s: Settings
    108 #: includes/class-gn-addon.php:103
     112#: includes/class-gn-addon.php:103, temp/includes/class-gn-addon.php:103
    109113msgid "%s Settings"
    110114msgstr ""
    111115
    112116#. translators: %s: Setting page link
    113 #: includes/class-gn-addon.php:107
     117#: includes/class-gn-addon.php:107, temp/includes/class-gn-addon.php:107
    114118msgid "To get started, please configure your %s ."
    115119msgstr ""
    116120
    117121#. translators: %s: Setting page link
    118 #: includes/class-gn-addon.php:226
     122#: includes/class-gn-addon.php:226, temp/includes/class-gn-addon.php:226
    119123msgid "Free version only supports text templates, to use variables, image, video and document templates, please <a href= \"%s\">Upgrade to pro version </a>."
    120124msgstr ""
    121125
    122 #: includes/class-gn-addon.php:236
     126#: includes/class-gn-addon.php:236, temp/includes/class-gn-addon.php:236
    123127msgid "Feed name"
    124128msgstr ""
    125129
    126 #: includes/class-gn-addon.php:239
     130#: includes/class-gn-addon.php:239, temp/includes/class-gn-addon.php:239
    127131msgid "Name of the feed"
    128132msgstr ""
    129133
    130 #: includes/class-gn-addon.php:244
     134#: includes/class-gn-addon.php:244, temp/includes/class-gn-addon.php:244
    131135msgid "Notification Type"
    132136msgstr ""
    133137
    134 #: includes/class-gn-addon.php:249
     138#: includes/class-gn-addon.php:249, temp/includes/class-gn-addon.php:249
    135139msgid "Select notification type"
    136140msgstr ""
    137141
    138 #: includes/class-gn-addon.php:254
     142#: includes/class-gn-addon.php:254, temp/includes/class-gn-addon.php:254
    139143msgid "WhatApp"
    140144msgstr ""
    141145
    142 #: includes/class-gn-addon.php:259
     146#: includes/class-gn-addon.php:259, temp/includes/class-gn-addon.php:259
    143147msgid "SMS (Twilio) "
    144148msgstr ""
    145149
    146 #: includes/class-gn-addon.php:263
     150#: includes/class-gn-addon.php:263, temp/includes/class-gn-addon.php:263
    147151msgid "Type of notification"
    148152msgstr ""
    149153
    150 #: includes/class-gn-addon.php:271, includes/class-gn-addon.php:278
     154#: includes/class-gn-addon.php:271, includes/class-gn-addon.php:278, temp/includes/class-gn-addon.php:271, temp/includes/class-gn-addon.php:278
    151155msgid "Recipient"
    152156msgstr ""
    153157
    154 #: includes/class-gn-addon.php:279
     158#: includes/class-gn-addon.php:279, temp/includes/class-gn-addon.php:279
    155159msgid "Phone number to send this message to. For Twilio trial accounts, you can only send SMS messages to validated numbers. To validate a number, log in to your Twilio account and navigate to the 'Numbers' tab."
    156160msgstr ""
    157161
    158 #: includes/class-gn-addon.php:284
     162#: includes/class-gn-addon.php:284, temp/includes/class-gn-addon.php:284
    159163msgid "WhatsApp Template"
    160164msgstr ""
    161165
    162 #: includes/class-gn-addon.php:295
     166#: includes/class-gn-addon.php:295, temp/includes/class-gn-addon.php:295
    163167msgid "WhatsApp template"
    164168msgstr ""
    165169
    166 #: includes/class-gn-addon.php:296
     170#: includes/class-gn-addon.php:296, temp/includes/class-gn-addon.php:296
    167171msgid "The WhatsApp message template to use to send message to WhatsApp."
    168172msgstr ""
    169173
    170 #: includes/class-gn-addon.php:303
     174#: includes/class-gn-addon.php:303, temp/includes/class-gn-addon.php:303
    171175msgid "Message"
    172176msgstr ""
    173177
    174 #: includes/class-gn-addon.php:309
     178#: includes/class-gn-addon.php:309, temp/includes/class-gn-addon.php:309
    175179msgid "Content"
    176180msgstr ""
    177181
    178 #: includes/class-gn-addon.php:310
     182#: includes/class-gn-addon.php:310, temp/includes/class-gn-addon.php:310
    179183msgid "The content of the message to send."
    180184msgstr ""
    181185
    182 #: includes/class-gn-addon.php:346
     186#: includes/class-gn-addon.php:346, temp/includes/class-gn-addon.php:346
    183187msgid "Name"
    184188msgstr ""
    185189
    186 #: includes/class-idea-gn-twilio.php:184
     190#: includes/class-idea-gn-twilio.php:184, temp/includes/class-idea-gn-twilio.php:184
    187191msgid "Select a Number"
    188192msgstr ""
    189193
    190 #: includes/class-idea-gn-twilio.php:192
     194#: includes/class-idea-gn-twilio.php:192, temp/includes/class-idea-gn-twilio.php:192
    191195msgid "Phone Fields"
    192196msgstr ""
    193197
    194 #: includes/class-idea-gn-whatsapp.php:145, includes/class-idea-gn-whatsapp.php:169
     198#: includes/class-idea-gn-whatsapp.php:145, includes/class-idea-gn-whatsapp.php:169, temp/includes/class-idea-gn-whatsapp.php:145, temp/includes/class-idea-gn-whatsapp.php:169
    195199msgid "Select a template"
    196200msgstr ""
    197201
    198 #: includes/class-idea-gn-whatsapp.php:152
     202#: includes/class-idea-gn-whatsapp.php:152, temp/includes/class-idea-gn-whatsapp.php:152
    199203msgid "Templates"
    200204msgstr ""
    201205
    202206#. translators: %s: Variable
    203 #: includes/class-idea-gn-whatsapp.php:295
     207#: includes/class-idea-gn-whatsapp.php:295, temp/includes/class-idea-gn-whatsapp.php:295
    204208msgid "Variable %s"
    205209msgstr ""
    206210
    207 #: includes/class-idea-gn-whatsapp.php:329
     211#: includes/class-idea-gn-whatsapp.php:329, temp/includes/class-idea-gn-whatsapp.php:329
    208212msgid "Media file URL"
    209213msgstr ""
    210214
    211 #: includes/class-idea-gn-whatsapp.php:339
     215#: includes/class-idea-gn-whatsapp.php:339, temp/includes/class-idea-gn-whatsapp.php:339
    212216msgid "Choose a media file"
    213217msgstr ""
    214218
    215 #: includes/class-idea-gn-whatsapp.php:353
     219#: includes/class-idea-gn-whatsapp.php:353, temp/includes/class-idea-gn-whatsapp.php:353
    216220msgid "Enable Condition"
    217221msgstr ""
    218222
    219 #: includes/class-idea-gn-whatsapp.php:354
     223#: includes/class-idea-gn-whatsapp.php:354, temp/includes/class-idea-gn-whatsapp.php:354
    220224msgid "Process this simple feed if"
    221225msgstr ""
  • gravity-notifications/trunk/readme.txt

    r3107057 r3108255  
    55Tested up to: 6.5
    66Requires PHP: 5.6
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88License: GPLv3
    99URI: http://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.