Changeset 3108255
- Timestamp:
- 06/26/2024 04:26:50 PM (21 months ago)
- Location:
- gravity-notifications
- Files:
-
- 10 edited
- 1 copied
-
tags/1.0.6 (copied) (copied from gravity-notifications/trunk)
-
tags/1.0.6/admin/class-idea-gn-admin.php (modified) (1 diff)
-
tags/1.0.6/gravity-notifications.php (modified) (2 diffs)
-
tags/1.0.6/includes/class-idea-gn.php (modified) (1 diff)
-
tags/1.0.6/languages/gravity-notifications.pot (modified) (2 diffs)
-
tags/1.0.6/readme.txt (modified) (1 diff)
-
trunk/admin/class-idea-gn-admin.php (modified) (1 diff)
-
trunk/gravity-notifications.php (modified) (2 diffs)
-
trunk/includes/class-idea-gn.php (modified) (1 diff)
-
trunk/languages/gravity-notifications.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gravity-notifications/tags/1.0.6/admin/class-idea-gn-admin.php
r3105927 r3108255 94 94 wp_enqueue_media(); 95 95 } 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 } 96 113 97 114 /** -
gravity-notifications/tags/1.0.6/gravity-notifications.php
r3107057 r3108255 1 1 <?php 2 2 3 /** 3 4 * Plugin Name: Gravity Notifications 4 5 * Plugin URI: https://ideawp.com/plugin/gravity-notifications/ 5 6 * Description: Easily send text messages and WhatsApp notifications with Gravity Forms using Twilio and WhatsApp cloud API. 6 * Version: 1.0. 57 * Version: 1.0.6 7 8 * Requires Plugins: gravityforms 8 9 * Author: IdeaWP … … 24 25 * Currently plugin version. 25 26 */ 26 define( 'IDEA_GN_VERSION', '1.0. 5' );27 define( 'IDEA_GN_VERSION', '1.0.6' ); 27 28 define( 'IDEA_GN_PATH', plugin_dir_path( __FILE__ ) ); 28 29 define( 'IDEA_GN_URL', plugin_dir_url( __FILE__ ) ); -
gravity-notifications/tags/1.0.6/includes/class-idea-gn.php
r3107050 r3108255 140 140 private function define_admin_hooks() { 141 141 $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' ) ); 142 143 add_action( 'admin_init', array( $plugin_admin, 'clear_transients_after_license_change' ), 1 ); 143 144 add_action( 'admin_enqueue_scripts', array( $plugin_admin, 'enqueue_styles' ) ); -
gravity-notifications/tags/1.0.6/languages/gravity-notifications.pot
r3107057 r3108255 7 7 "Content-Type: text/plain; charset=UTF-8\n" 8 8 "Content-Transfer-Encoding: 8bit\n" 9 "POT-Creation-Date: 2024-06-2 5 05:02+0000\n"9 "POT-Creation-Date: 2024-06-26 16:24+0000\n" 10 10 "X-Poedit-Basepath: ..\n" 11 11 "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" … … 15 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 16 16 17 #: admin/class-idea-gn-admin.php:89 17 #: admin/class-idea-gn-admin.php:89, temp/admin/class-idea-gn-admin.php:89 18 18 msgid "Error reloading templates. Please review your WhatsApp API details." 19 19 msgstr "" 20 20 21 #: admin/class-idea-gn-admin.php:90 21 #: admin/class-idea-gn-admin.php:90, temp/admin/class-idea-gn-admin.php:90 22 22 msgid "Create a new Template" 23 23 msgstr "" 24 24 25 #: admin/class-idea-gn-admin.php:106 25 #: admin/class-idea-gn-admin.php:110 26 msgid "Gravity Notifications requires Gravity Forms to function. Please install and activate Gravity Forms to use Gravity Notifications." 27 msgstr "" 28 29 #: admin/class-idea-gn-admin.php:123, temp/admin/class-idea-gn-admin.php:106 26 30 msgid "Settings" 27 31 msgstr "" 28 32 29 33 #. 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 31 35 msgid "Gravity Notifications: To enable WhatsApp/Twilio messaging, please enter the API details in the Gravity Notifications %1$s" 32 36 msgstr "" 33 37 34 #: admin/class-idea-gn-settings.php:139 38 #: admin/class-idea-gn-settings.php:139, temp/admin/class-idea-gn-settings.php:139 35 39 msgid "settings page" 36 40 msgstr "" 37 41 38 #: admin/class-idea-gn-settings.php:116 42 #: admin/class-idea-gn-settings.php:116, temp/admin/class-idea-gn-settings.php:116 39 43 msgid "<b>Important</b>: Your Twilio API details are incorrect. Please review and enter the correct details to activate Twilio SMS notifications." 40 44 msgstr "" 41 45 42 #: admin/class-idea-gn-settings.php:128 46 #: admin/class-idea-gn-settings.php:128, temp/admin/class-idea-gn-settings.php:128 43 47 msgid "<b>Important</b>: Your WhatsApp API details are incorrect. Please review and enter the correct details to activate WhatsApp notifications." 44 48 msgstr "" 45 49 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 47 51 msgid "Gravity Notifications" 48 52 msgstr "" 49 53 50 #: admin/settings.php:43 54 #: admin/settings.php:43, temp/admin/settings.php:43 51 55 msgid "API Details" 52 56 msgstr "" 53 57 54 #: admin/settings.php:48 58 #: admin/settings.php:48, temp/admin/settings.php:48 55 59 msgid "General" 56 60 msgstr "" 57 61 58 62 #. translators: URL of the Twillio account. 59 #: admin/settings.php:60 63 #: admin/settings.php:60, temp/admin/settings.php:60 60 64 msgid "You can get the Account SID and API Keys from your <a href=\"%s\" target=\"_blank\">Twillio account</a>." 61 65 msgstr "" 62 66 63 #: admin/settings.php:66 67 #: admin/settings.php:66, temp/admin/settings.php:66 64 68 msgid "Account SID" 65 69 msgstr "" 66 70 67 #: admin/settings.php:73 71 #: admin/settings.php:73, temp/admin/settings.php:73 68 72 msgid "Auth Token" 69 73 msgstr "" 70 74 71 #: admin/settings.php:80 75 #: admin/settings.php:80, temp/admin/settings.php:80 72 76 msgid "From number" 73 77 msgstr "" 74 78 75 #: admin/settings.php:81 79 #: admin/settings.php:81, temp/admin/settings.php:81 76 80 msgid "Enter your Twilio phone number. This number serves as the sender for your text messages." 77 81 msgstr "" 78 82 79 #: admin/settings.php:90 83 #: admin/settings.php:90, temp/admin/settings.php:90 80 84 msgid "WhatsApp" 81 85 msgstr "" 82 86 83 #: admin/settings.php:96 87 #: admin/settings.php:96, temp/admin/settings.php:96 84 88 msgid "WhatsApp Business ID" 85 89 msgstr "" 86 90 87 #: admin/settings.php:103 91 #: admin/settings.php:103, temp/admin/settings.php:103 88 92 msgid "WhatsApp Phone ID" 89 93 msgstr "" 90 94 91 #: admin/settings.php:110 95 #: admin/settings.php:110, temp/admin/settings.php:110 92 96 msgid "Access Token" 93 97 msgstr "" 94 98 95 #: admin/settings.php:120 99 #: admin/settings.php:120, temp/admin/settings.php:120 96 100 msgid "General Settings" 97 101 msgstr "" 98 102 99 #: admin/settings.php:127 103 #: admin/settings.php:127, temp/admin/settings.php:127 100 104 msgid "Enable International Phone Input" 101 105 msgstr "" 102 106 103 #: admin/settings.php:128 107 #: admin/settings.php:128, temp/admin/settings.php:128 104 108 msgid "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." 105 109 msgstr "" 106 110 107 111 #. translators: %s: Settings 108 #: includes/class-gn-addon.php:103 112 #: includes/class-gn-addon.php:103, temp/includes/class-gn-addon.php:103 109 113 msgid "%s Settings" 110 114 msgstr "" 111 115 112 116 #. 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 114 118 msgid "To get started, please configure your %s ." 115 119 msgstr "" 116 120 117 121 #. 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 119 123 msgid "Free version only supports text templates, to use variables, image, video and document templates, please <a href= \"%s\">Upgrade to pro version </a>." 120 124 msgstr "" 121 125 122 #: includes/class-gn-addon.php:236 126 #: includes/class-gn-addon.php:236, temp/includes/class-gn-addon.php:236 123 127 msgid "Feed name" 124 128 msgstr "" 125 129 126 #: includes/class-gn-addon.php:239 130 #: includes/class-gn-addon.php:239, temp/includes/class-gn-addon.php:239 127 131 msgid "Name of the feed" 128 132 msgstr "" 129 133 130 #: includes/class-gn-addon.php:244 134 #: includes/class-gn-addon.php:244, temp/includes/class-gn-addon.php:244 131 135 msgid "Notification Type" 132 136 msgstr "" 133 137 134 #: includes/class-gn-addon.php:249 138 #: includes/class-gn-addon.php:249, temp/includes/class-gn-addon.php:249 135 139 msgid "Select notification type" 136 140 msgstr "" 137 141 138 #: includes/class-gn-addon.php:254 142 #: includes/class-gn-addon.php:254, temp/includes/class-gn-addon.php:254 139 143 msgid "WhatApp" 140 144 msgstr "" 141 145 142 #: includes/class-gn-addon.php:259 146 #: includes/class-gn-addon.php:259, temp/includes/class-gn-addon.php:259 143 147 msgid "SMS (Twilio) " 144 148 msgstr "" 145 149 146 #: includes/class-gn-addon.php:263 150 #: includes/class-gn-addon.php:263, temp/includes/class-gn-addon.php:263 147 151 msgid "Type of notification" 148 152 msgstr "" 149 153 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 151 155 msgid "Recipient" 152 156 msgstr "" 153 157 154 #: includes/class-gn-addon.php:279 158 #: includes/class-gn-addon.php:279, temp/includes/class-gn-addon.php:279 155 159 msgid "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." 156 160 msgstr "" 157 161 158 #: includes/class-gn-addon.php:284 162 #: includes/class-gn-addon.php:284, temp/includes/class-gn-addon.php:284 159 163 msgid "WhatsApp Template" 160 164 msgstr "" 161 165 162 #: includes/class-gn-addon.php:295 166 #: includes/class-gn-addon.php:295, temp/includes/class-gn-addon.php:295 163 167 msgid "WhatsApp template" 164 168 msgstr "" 165 169 166 #: includes/class-gn-addon.php:296 170 #: includes/class-gn-addon.php:296, temp/includes/class-gn-addon.php:296 167 171 msgid "The WhatsApp message template to use to send message to WhatsApp." 168 172 msgstr "" 169 173 170 #: includes/class-gn-addon.php:303 174 #: includes/class-gn-addon.php:303, temp/includes/class-gn-addon.php:303 171 175 msgid "Message" 172 176 msgstr "" 173 177 174 #: includes/class-gn-addon.php:309 178 #: includes/class-gn-addon.php:309, temp/includes/class-gn-addon.php:309 175 179 msgid "Content" 176 180 msgstr "" 177 181 178 #: includes/class-gn-addon.php:310 182 #: includes/class-gn-addon.php:310, temp/includes/class-gn-addon.php:310 179 183 msgid "The content of the message to send." 180 184 msgstr "" 181 185 182 #: includes/class-gn-addon.php:346 186 #: includes/class-gn-addon.php:346, temp/includes/class-gn-addon.php:346 183 187 msgid "Name" 184 188 msgstr "" 185 189 186 #: includes/class-idea-gn-twilio.php:184 190 #: includes/class-idea-gn-twilio.php:184, temp/includes/class-idea-gn-twilio.php:184 187 191 msgid "Select a Number" 188 192 msgstr "" 189 193 190 #: includes/class-idea-gn-twilio.php:192 194 #: includes/class-idea-gn-twilio.php:192, temp/includes/class-idea-gn-twilio.php:192 191 195 msgid "Phone Fields" 192 196 msgstr "" 193 197 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 195 199 msgid "Select a template" 196 200 msgstr "" 197 201 198 #: includes/class-idea-gn-whatsapp.php:152 202 #: includes/class-idea-gn-whatsapp.php:152, temp/includes/class-idea-gn-whatsapp.php:152 199 203 msgid "Templates" 200 204 msgstr "" 201 205 202 206 #. 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 204 208 msgid "Variable %s" 205 209 msgstr "" 206 210 207 #: includes/class-idea-gn-whatsapp.php:329 211 #: includes/class-idea-gn-whatsapp.php:329, temp/includes/class-idea-gn-whatsapp.php:329 208 212 msgid "Media file URL" 209 213 msgstr "" 210 214 211 #: includes/class-idea-gn-whatsapp.php:339 215 #: includes/class-idea-gn-whatsapp.php:339, temp/includes/class-idea-gn-whatsapp.php:339 212 216 msgid "Choose a media file" 213 217 msgstr "" 214 218 215 #: includes/class-idea-gn-whatsapp.php:353 219 #: includes/class-idea-gn-whatsapp.php:353, temp/includes/class-idea-gn-whatsapp.php:353 216 220 msgid "Enable Condition" 217 221 msgstr "" 218 222 219 #: includes/class-idea-gn-whatsapp.php:354 223 #: includes/class-idea-gn-whatsapp.php:354, temp/includes/class-idea-gn-whatsapp.php:354 220 224 msgid "Process this simple feed if" 221 225 msgstr "" -
gravity-notifications/tags/1.0.6/readme.txt
r3107057 r3108255 5 5 Tested up to: 6.5 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 License: GPLv3 9 9 URI: http://www.gnu.org/licenses/gpl-3.0.html -
gravity-notifications/trunk/admin/class-idea-gn-admin.php
r3105927 r3108255 94 94 wp_enqueue_media(); 95 95 } 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 } 96 113 97 114 /** -
gravity-notifications/trunk/gravity-notifications.php
r3107057 r3108255 1 1 <?php 2 2 3 /** 3 4 * Plugin Name: Gravity Notifications 4 5 * Plugin URI: https://ideawp.com/plugin/gravity-notifications/ 5 6 * Description: Easily send text messages and WhatsApp notifications with Gravity Forms using Twilio and WhatsApp cloud API. 6 * Version: 1.0. 57 * Version: 1.0.6 7 8 * Requires Plugins: gravityforms 8 9 * Author: IdeaWP … … 24 25 * Currently plugin version. 25 26 */ 26 define( 'IDEA_GN_VERSION', '1.0. 5' );27 define( 'IDEA_GN_VERSION', '1.0.6' ); 27 28 define( 'IDEA_GN_PATH', plugin_dir_path( __FILE__ ) ); 28 29 define( 'IDEA_GN_URL', plugin_dir_url( __FILE__ ) ); -
gravity-notifications/trunk/includes/class-idea-gn.php
r3107050 r3108255 140 140 private function define_admin_hooks() { 141 141 $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' ) ); 142 143 add_action( 'admin_init', array( $plugin_admin, 'clear_transients_after_license_change' ), 1 ); 143 144 add_action( 'admin_enqueue_scripts', array( $plugin_admin, 'enqueue_styles' ) ); -
gravity-notifications/trunk/languages/gravity-notifications.pot
r3107057 r3108255 7 7 "Content-Type: text/plain; charset=UTF-8\n" 8 8 "Content-Transfer-Encoding: 8bit\n" 9 "POT-Creation-Date: 2024-06-2 5 05:02+0000\n"9 "POT-Creation-Date: 2024-06-26 16:24+0000\n" 10 10 "X-Poedit-Basepath: ..\n" 11 11 "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" … … 15 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 16 16 17 #: admin/class-idea-gn-admin.php:89 17 #: admin/class-idea-gn-admin.php:89, temp/admin/class-idea-gn-admin.php:89 18 18 msgid "Error reloading templates. Please review your WhatsApp API details." 19 19 msgstr "" 20 20 21 #: admin/class-idea-gn-admin.php:90 21 #: admin/class-idea-gn-admin.php:90, temp/admin/class-idea-gn-admin.php:90 22 22 msgid "Create a new Template" 23 23 msgstr "" 24 24 25 #: admin/class-idea-gn-admin.php:106 25 #: admin/class-idea-gn-admin.php:110 26 msgid "Gravity Notifications requires Gravity Forms to function. Please install and activate Gravity Forms to use Gravity Notifications." 27 msgstr "" 28 29 #: admin/class-idea-gn-admin.php:123, temp/admin/class-idea-gn-admin.php:106 26 30 msgid "Settings" 27 31 msgstr "" 28 32 29 33 #. 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 31 35 msgid "Gravity Notifications: To enable WhatsApp/Twilio messaging, please enter the API details in the Gravity Notifications %1$s" 32 36 msgstr "" 33 37 34 #: admin/class-idea-gn-settings.php:139 38 #: admin/class-idea-gn-settings.php:139, temp/admin/class-idea-gn-settings.php:139 35 39 msgid "settings page" 36 40 msgstr "" 37 41 38 #: admin/class-idea-gn-settings.php:116 42 #: admin/class-idea-gn-settings.php:116, temp/admin/class-idea-gn-settings.php:116 39 43 msgid "<b>Important</b>: Your Twilio API details are incorrect. Please review and enter the correct details to activate Twilio SMS notifications." 40 44 msgstr "" 41 45 42 #: admin/class-idea-gn-settings.php:128 46 #: admin/class-idea-gn-settings.php:128, temp/admin/class-idea-gn-settings.php:128 43 47 msgid "<b>Important</b>: Your WhatsApp API details are incorrect. Please review and enter the correct details to activate WhatsApp notifications." 44 48 msgstr "" 45 49 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 47 51 msgid "Gravity Notifications" 48 52 msgstr "" 49 53 50 #: admin/settings.php:43 54 #: admin/settings.php:43, temp/admin/settings.php:43 51 55 msgid "API Details" 52 56 msgstr "" 53 57 54 #: admin/settings.php:48 58 #: admin/settings.php:48, temp/admin/settings.php:48 55 59 msgid "General" 56 60 msgstr "" 57 61 58 62 #. translators: URL of the Twillio account. 59 #: admin/settings.php:60 63 #: admin/settings.php:60, temp/admin/settings.php:60 60 64 msgid "You can get the Account SID and API Keys from your <a href=\"%s\" target=\"_blank\">Twillio account</a>." 61 65 msgstr "" 62 66 63 #: admin/settings.php:66 67 #: admin/settings.php:66, temp/admin/settings.php:66 64 68 msgid "Account SID" 65 69 msgstr "" 66 70 67 #: admin/settings.php:73 71 #: admin/settings.php:73, temp/admin/settings.php:73 68 72 msgid "Auth Token" 69 73 msgstr "" 70 74 71 #: admin/settings.php:80 75 #: admin/settings.php:80, temp/admin/settings.php:80 72 76 msgid "From number" 73 77 msgstr "" 74 78 75 #: admin/settings.php:81 79 #: admin/settings.php:81, temp/admin/settings.php:81 76 80 msgid "Enter your Twilio phone number. This number serves as the sender for your text messages." 77 81 msgstr "" 78 82 79 #: admin/settings.php:90 83 #: admin/settings.php:90, temp/admin/settings.php:90 80 84 msgid "WhatsApp" 81 85 msgstr "" 82 86 83 #: admin/settings.php:96 87 #: admin/settings.php:96, temp/admin/settings.php:96 84 88 msgid "WhatsApp Business ID" 85 89 msgstr "" 86 90 87 #: admin/settings.php:103 91 #: admin/settings.php:103, temp/admin/settings.php:103 88 92 msgid "WhatsApp Phone ID" 89 93 msgstr "" 90 94 91 #: admin/settings.php:110 95 #: admin/settings.php:110, temp/admin/settings.php:110 92 96 msgid "Access Token" 93 97 msgstr "" 94 98 95 #: admin/settings.php:120 99 #: admin/settings.php:120, temp/admin/settings.php:120 96 100 msgid "General Settings" 97 101 msgstr "" 98 102 99 #: admin/settings.php:127 103 #: admin/settings.php:127, temp/admin/settings.php:127 100 104 msgid "Enable International Phone Input" 101 105 msgstr "" 102 106 103 #: admin/settings.php:128 107 #: admin/settings.php:128, temp/admin/settings.php:128 104 108 msgid "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." 105 109 msgstr "" 106 110 107 111 #. translators: %s: Settings 108 #: includes/class-gn-addon.php:103 112 #: includes/class-gn-addon.php:103, temp/includes/class-gn-addon.php:103 109 113 msgid "%s Settings" 110 114 msgstr "" 111 115 112 116 #. 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 114 118 msgid "To get started, please configure your %s ." 115 119 msgstr "" 116 120 117 121 #. 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 119 123 msgid "Free version only supports text templates, to use variables, image, video and document templates, please <a href= \"%s\">Upgrade to pro version </a>." 120 124 msgstr "" 121 125 122 #: includes/class-gn-addon.php:236 126 #: includes/class-gn-addon.php:236, temp/includes/class-gn-addon.php:236 123 127 msgid "Feed name" 124 128 msgstr "" 125 129 126 #: includes/class-gn-addon.php:239 130 #: includes/class-gn-addon.php:239, temp/includes/class-gn-addon.php:239 127 131 msgid "Name of the feed" 128 132 msgstr "" 129 133 130 #: includes/class-gn-addon.php:244 134 #: includes/class-gn-addon.php:244, temp/includes/class-gn-addon.php:244 131 135 msgid "Notification Type" 132 136 msgstr "" 133 137 134 #: includes/class-gn-addon.php:249 138 #: includes/class-gn-addon.php:249, temp/includes/class-gn-addon.php:249 135 139 msgid "Select notification type" 136 140 msgstr "" 137 141 138 #: includes/class-gn-addon.php:254 142 #: includes/class-gn-addon.php:254, temp/includes/class-gn-addon.php:254 139 143 msgid "WhatApp" 140 144 msgstr "" 141 145 142 #: includes/class-gn-addon.php:259 146 #: includes/class-gn-addon.php:259, temp/includes/class-gn-addon.php:259 143 147 msgid "SMS (Twilio) " 144 148 msgstr "" 145 149 146 #: includes/class-gn-addon.php:263 150 #: includes/class-gn-addon.php:263, temp/includes/class-gn-addon.php:263 147 151 msgid "Type of notification" 148 152 msgstr "" 149 153 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 151 155 msgid "Recipient" 152 156 msgstr "" 153 157 154 #: includes/class-gn-addon.php:279 158 #: includes/class-gn-addon.php:279, temp/includes/class-gn-addon.php:279 155 159 msgid "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." 156 160 msgstr "" 157 161 158 #: includes/class-gn-addon.php:284 162 #: includes/class-gn-addon.php:284, temp/includes/class-gn-addon.php:284 159 163 msgid "WhatsApp Template" 160 164 msgstr "" 161 165 162 #: includes/class-gn-addon.php:295 166 #: includes/class-gn-addon.php:295, temp/includes/class-gn-addon.php:295 163 167 msgid "WhatsApp template" 164 168 msgstr "" 165 169 166 #: includes/class-gn-addon.php:296 170 #: includes/class-gn-addon.php:296, temp/includes/class-gn-addon.php:296 167 171 msgid "The WhatsApp message template to use to send message to WhatsApp." 168 172 msgstr "" 169 173 170 #: includes/class-gn-addon.php:303 174 #: includes/class-gn-addon.php:303, temp/includes/class-gn-addon.php:303 171 175 msgid "Message" 172 176 msgstr "" 173 177 174 #: includes/class-gn-addon.php:309 178 #: includes/class-gn-addon.php:309, temp/includes/class-gn-addon.php:309 175 179 msgid "Content" 176 180 msgstr "" 177 181 178 #: includes/class-gn-addon.php:310 182 #: includes/class-gn-addon.php:310, temp/includes/class-gn-addon.php:310 179 183 msgid "The content of the message to send." 180 184 msgstr "" 181 185 182 #: includes/class-gn-addon.php:346 186 #: includes/class-gn-addon.php:346, temp/includes/class-gn-addon.php:346 183 187 msgid "Name" 184 188 msgstr "" 185 189 186 #: includes/class-idea-gn-twilio.php:184 190 #: includes/class-idea-gn-twilio.php:184, temp/includes/class-idea-gn-twilio.php:184 187 191 msgid "Select a Number" 188 192 msgstr "" 189 193 190 #: includes/class-idea-gn-twilio.php:192 194 #: includes/class-idea-gn-twilio.php:192, temp/includes/class-idea-gn-twilio.php:192 191 195 msgid "Phone Fields" 192 196 msgstr "" 193 197 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 195 199 msgid "Select a template" 196 200 msgstr "" 197 201 198 #: includes/class-idea-gn-whatsapp.php:152 202 #: includes/class-idea-gn-whatsapp.php:152, temp/includes/class-idea-gn-whatsapp.php:152 199 203 msgid "Templates" 200 204 msgstr "" 201 205 202 206 #. 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 204 208 msgid "Variable %s" 205 209 msgstr "" 206 210 207 #: includes/class-idea-gn-whatsapp.php:329 211 #: includes/class-idea-gn-whatsapp.php:329, temp/includes/class-idea-gn-whatsapp.php:329 208 212 msgid "Media file URL" 209 213 msgstr "" 210 214 211 #: includes/class-idea-gn-whatsapp.php:339 215 #: includes/class-idea-gn-whatsapp.php:339, temp/includes/class-idea-gn-whatsapp.php:339 212 216 msgid "Choose a media file" 213 217 msgstr "" 214 218 215 #: includes/class-idea-gn-whatsapp.php:353 219 #: includes/class-idea-gn-whatsapp.php:353, temp/includes/class-idea-gn-whatsapp.php:353 216 220 msgid "Enable Condition" 217 221 msgstr "" 218 222 219 #: includes/class-idea-gn-whatsapp.php:354 223 #: includes/class-idea-gn-whatsapp.php:354, temp/includes/class-idea-gn-whatsapp.php:354 220 224 msgid "Process this simple feed if" 221 225 msgstr "" -
gravity-notifications/trunk/readme.txt
r3107057 r3108255 5 5 Tested up to: 6.5 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 License: GPLv3 9 9 URI: http://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.