Changeset 3178882
- Timestamp:
- 10/30/2024 02:42:49 PM (17 months ago)
- Location:
- icecream-elementor-addon/trunk
- Files:
-
- 6 edited
-
admin/admin.php (modified) (1 diff)
-
icecreameaddon.php (modified) (2 diffs)
-
languages/icecreameaddon-fa_IR.mo (modified) (previous)
-
languages/icecreameaddon-fa_IR.po (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
widgets/assets/css/btn1-widget.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
icecream-elementor-addon/trunk/admin/admin.php
r2713549 r3178882 3 3 if ( !defined( 'ABSPATH' ) ) exit; 4 4 5 include plugin_dir_path( __FILE__ ) . 'admin-html.php'; 6 include plugin_dir_path( __FILE__ ) . 'admin-style.php'; 5 require_once 'AdminTrait.php'; 6 7 class Admin { 8 use AdminTrait; 9 10 public function __construct() { 11 add_action( 'admin_menu', [$this, 'menu'] ); 12 add_action( 'admin_enqueue_scripts', [$this, 'enqueue_styles'] );; 13 } 14 15 public function menu() { 16 add_submenu_page( 17 'tools.php', 18 __( 'IceCream Elementor Addon', 'icecreameaddon' ), 19 __( 'IceCream Elementor Addon', 'icecreameaddon' ), 20 'manage_options', 21 'icecreameaddon', 22 [$this, 'menu_callback'] 23 ); 24 } 25 26 public function enqueue_styles() { 27 wp_enqueue_style( 'icecreameaddon_style', IAE_BASE_URL . '/admin/admin.css' ); 28 } 29 } -
icecream-elementor-addon/trunk/icecreameaddon.php
r2904296 r3178882 4 4 * Plugin Name: IceCream Elementor Addon 5 5 * Description: Elementor awesome and free element. 6 * Author: WPRocketLab7 * Author URI: https:// wprocketlab.com6 * Author: Reza Masoumpour 7 * Author URI: https://themio.ir/ 8 8 * Requires at least: 5.0 9 * Version: 1.2.09 * Version: 2.0.0 10 10 * Licence: GPL v2 or later 11 11 * Licence URI: https://www.gnu.org/licenses/gpl-2.0.html … … 14 14 */ 15 15 16 17 16 if ( !defined( 'ABSPATH' ) ) exit; 18 17 19 include plugin_dir_path( __FILE__ ) . 'admin/admin.php'; 18 class Core { 19 public function __construct() { 20 $this->define_constats(); 21 $this->load_includes(); 22 $this->load_textdomain(); 23 $this->register_addons(); 24 new Admin(); 25 } 20 26 21 include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); 27 public function define_constats() { 28 define( 'IAE_BASE', dirname( __FILE__ ) ); 29 define( 'IAE_BASE_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) ); 30 } 22 31 23 if ( is_plugin_active( 'elementor/elementor.php' ) ) { 24 include plugin_dir_path( __FILE__ ) . 'elementor.php'; 32 public function load_includes() { 33 include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); 34 require_once IAE_BASE . '/admin/Admin.php'; 35 } 36 37 public function load_textdomain() { 38 load_plugin_textdomain( 'icecreameaddon', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' ); 39 } 40 41 public function register_addons() { 42 add_action( 'elementor/widgets/register', [ $this, 'addons'] ); 43 add_action( 'elementor/elements/categories_registered', [ $this, 'addons_categories' ] ); 44 } 45 46 public function addons( $widgets_manager ) { 47 $addons_list = [ 'Icecream_Btn1', 'Icecream_Image1', 'Icecream_Image2', 48 'Icecream_Image3', 'Icecream_Team1', 'Icecream_Team2', 'Icecream_Team3', 'Icecream_Team4', 49 'Icecream_Team5' ]; 50 51 foreach ( $addons_list as $addon ) { 52 require_once( __DIR__ . '/widgets/' . $addon . '.php' ); 53 $widget_class = '\\' . $addon; 54 if ( class_exists( $widget_class ) ) { 55 $widgets_manager->register( new $widget_class() ); 56 } 57 } 58 } 59 60 public function addons_categories( $elements_manager ) { 61 $elements_manager->add_category( 62 'icecream_cat', [ 63 'title' => esc_html__( 'IceCream Elementor Addon', 'icecreameaddon' ), 64 'icon' => 'fa fa-plug', 65 ] 66 ); 67 } 25 68 } 69 new Core(); 70 -
icecream-elementor-addon/trunk/languages/icecreameaddon-fa_IR.po
r2713549 r3178882 2 2 msgstr "" 3 3 "Project-Id-Version: IceCream Elementor Addon\n" 4 "POT-Creation-Date: 202 2-04-21 08:46+0430\n"5 "PO-Revision-Date: 202 2-04-21 08:49+0430\n"4 "POT-Creation-Date: 2024-10-30 12:51+0330\n" 5 "PO-Revision-Date: 2024-10-30 12:51+0330\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 17 17 "X-Poedit-SourceCharset: UTF-8\n" 18 18 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 19 "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c; _n_noop:1,2;"20 "_n x_noop:3c,1,2;__ngettext_noop:1,2\n"19 "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" 20 "_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 21 21 "X-Poedit-SearchPath-0: .\n" 22 22 "X-Poedit-SearchPathExcluded-0: *.js\n" 23 23 24 24 #. Plugin Name of the plugin/theme 25 #: admin/ admin-html.php:11 admin/admin-html.php:12 admin/admin-html.php:2126 #: elementor.php:2125 #: admin/Admin.php:18 admin/Admin.php:19 admin/AdminTrait.php:9 26 #: icecreameaddon.php:58 27 27 msgid "IceCream Elementor Addon" 28 28 msgstr "ادآن بستنی یخی المنتور" 29 29 30 #: widgets/icecream-btn1-widget.php:12 31 msgid "Fancy Button" 30 #: widgets/Icecream_Btn1.php:14 31 #, fuzzy 32 #| msgid "Fancy Button" 33 msgid "Expand Button" 32 34 msgstr "دکمه شگفتانگیز" 33 35 34 #: widgets/icecream-btn1-widget.php:45 widgets/icecream-image1-widget.php:40 35 #: widgets/icecream-image2-widget.php:50 widgets/icecream-image3-widget.php:40 36 #: widgets/Icecream_Btn1.php:49 widgets/Icecream_Image1.php:40 37 #: widgets/Icecream_Image2.php:50 widgets/Icecream_Image3.php:40 38 #: widgets/Icecream_Team1.php:40 widgets/Icecream_Team2.php:40 39 #: widgets/Icecream_Team3.php:40 widgets/Icecream_Team4.php:40 40 #: widgets/Icecream_Team5.php:41 36 41 msgid "Content" 37 42 msgstr "محتوا" 38 43 39 #: widgets/ icecream-btn1-widget.php:5244 #: widgets/Icecream_Btn1.php:57 widgets/Icecream_Btn1.php:181 40 45 msgid "Text" 41 46 msgstr "متن" 42 47 43 #: widgets/ icecream-btn1-widget.php:5448 #: widgets/Icecream_Btn1.php:59 widgets/Icecream_Btn1.php:106 44 49 msgid "Button" 45 50 msgstr "دکمه" 46 51 47 #: widgets/icecream-btn1-widget.php:63 widgets/icecream-image1-widget.php:76 48 #: widgets/icecream-image2-widget.php:137 widgets/icecream-image3-widget.php:57 52 #: widgets/Icecream_Btn1.php:67 widgets/Icecream_Team3.php:338 53 #, fuzzy 54 #| msgid "Description" 55 msgid "Direction" 56 msgstr "توضیحات" 57 58 #: widgets/Icecream_Btn1.php:71 widgets/Icecream_Image1.php:95 59 #: widgets/Icecream_Team1.php:301 widgets/Icecream_Team1.php:372 60 #: widgets/Icecream_Team2.php:322 widgets/Icecream_Team2.php:393 61 #: widgets/Icecream_Team2.php:519 widgets/Icecream_Team3.php:342 62 #: widgets/Icecream_Team3.php:521 widgets/Icecream_Team3.php:592 63 #: widgets/Icecream_Team3.php:663 widgets/Icecream_Team3.php:735 64 #: widgets/Icecream_Team4.php:320 widgets/Icecream_Team4.php:392 65 #: widgets/Icecream_Team4.php:464 widgets/Icecream_Team5.php:410 66 #: widgets/Icecream_Team5.php:481 widgets/Icecream_Team5.php:553 67 msgid "Left" 68 msgstr "چپ" 69 70 #: widgets/Icecream_Btn1.php:75 widgets/Icecream_Image1.php:103 71 #: widgets/Icecream_Team1.php:309 widgets/Icecream_Team1.php:380 72 #: widgets/Icecream_Team2.php:330 widgets/Icecream_Team2.php:401 73 #: widgets/Icecream_Team2.php:527 widgets/Icecream_Team3.php:346 74 #: widgets/Icecream_Team3.php:529 widgets/Icecream_Team3.php:600 75 #: widgets/Icecream_Team3.php:671 widgets/Icecream_Team3.php:743 76 #: widgets/Icecream_Team4.php:328 widgets/Icecream_Team4.php:400 77 #: widgets/Icecream_Team4.php:472 widgets/Icecream_Team5.php:418 78 #: widgets/Icecream_Team5.php:489 widgets/Icecream_Team5.php:561 79 msgid "Right" 80 msgstr "راست" 81 82 #: widgets/Icecream_Btn1.php:92 widgets/Icecream_Btn1.php:140 83 #: widgets/Icecream_Team1.php:105 widgets/Icecream_Team1.php:129 84 #: widgets/Icecream_Team1.php:153 widgets/Icecream_Team1.php:177 85 #: widgets/Icecream_Team1.php:201 widgets/Icecream_Team1.php:225 86 #: widgets/Icecream_Team2.php:105 widgets/Icecream_Team2.php:129 87 #: widgets/Icecream_Team2.php:153 widgets/Icecream_Team2.php:177 88 #: widgets/Icecream_Team2.php:201 widgets/Icecream_Team2.php:225 89 #: widgets/Icecream_Team3.php:114 widgets/Icecream_Team3.php:138 90 #: widgets/Icecream_Team3.php:162 widgets/Icecream_Team3.php:186 91 #: widgets/Icecream_Team3.php:210 widgets/Icecream_Team3.php:234 92 #: widgets/Icecream_Team4.php:105 widgets/Icecream_Team4.php:129 93 #: widgets/Icecream_Team4.php:153 widgets/Icecream_Team4.php:177 94 #: widgets/Icecream_Team4.php:201 widgets/Icecream_Team4.php:225 95 #: widgets/Icecream_Team5.php:106 widgets/Icecream_Team5.php:130 96 #: widgets/Icecream_Team5.php:154 widgets/Icecream_Team5.php:178 97 #: widgets/Icecream_Team5.php:202 widgets/Icecream_Team5.php:226 98 msgid "Icon" 99 msgstr "آیکن" 100 101 #: widgets/Icecream_Btn1.php:114 102 #, fuzzy 103 #| msgid "Button background" 104 msgid "Background-color" 105 msgstr "پسزمینه دکمه" 106 107 #: widgets/Icecream_Btn1.php:126 108 #, fuzzy 109 #| msgid "Hover background" 110 msgid "Hover Background-color" 111 msgstr "پسزمینه هاور" 112 113 #: widgets/Icecream_Btn1.php:148 114 msgid "Width" 115 msgstr "اندازه" 116 117 #: widgets/Icecream_Btn1.php:167 widgets/Icecream_Btn1.php:197 118 #: widgets/Icecream_Image2.php:97 widgets/Icecream_Team1.php:286 119 #: widgets/Icecream_Team1.php:357 widgets/Icecream_Team1.php:418 120 #: widgets/Icecream_Team2.php:307 widgets/Icecream_Team2.php:378 121 #: widgets/Icecream_Team2.php:439 widgets/Icecream_Team3.php:506 122 #: widgets/Icecream_Team3.php:577 widgets/Icecream_Team3.php:648 123 #: widgets/Icecream_Team3.php:709 widgets/Icecream_Team4.php:305 124 #: widgets/Icecream_Team4.php:377 widgets/Icecream_Team4.php:438 125 #: widgets/Icecream_Team5.php:395 widgets/Icecream_Team5.php:466 126 #: widgets/Icecream_Team5.php:527 127 msgid "Color" 128 msgstr "رنگ" 129 130 #: widgets/Icecream_Btn1.php:209 widgets/Icecream_Team1.php:242 131 #: widgets/Icecream_Team1.php:429 widgets/Icecream_Team2.php:450 132 #: widgets/Icecream_Team3.php:720 widgets/Icecream_Team4.php:449 133 #: widgets/Icecream_Team5.php:538 134 #, fuzzy 135 #| msgid "Button color" 136 msgid "Hover color" 137 msgstr "رنگ دکمه" 138 139 #: widgets/Icecream_Image1.php:12 140 msgid "Image 1" 141 msgstr "تصویر 1" 142 143 #: widgets/Icecream_Image1.php:47 widgets/Icecream_Image2.php:58 144 #: widgets/Icecream_Team1.php:48 widgets/Icecream_Team2.php:48 145 #: widgets/Icecream_Team3.php:48 widgets/Icecream_Team4.php:48 146 #: widgets/Icecream_Team5.php:49 147 msgid "Choose Image" 148 msgstr "انتخاب تصویر" 149 150 #: widgets/Icecream_Image1.php:57 widgets/Icecream_Image2.php:71 151 #: widgets/Icecream_Team1.php:339 widgets/Icecream_Team2.php:360 152 #: widgets/Icecream_Team3.php:559 widgets/Icecream_Team4.php:359 153 #: widgets/Icecream_Team5.php:448 154 msgid "Title" 155 msgstr "عنوان" 156 157 #: widgets/Icecream_Image1.php:59 158 msgid "Default title" 159 msgstr "عنوان پیشفرض" 160 161 #: widgets/Icecream_Image1.php:65 widgets/Icecream_Team1.php:79 162 #: widgets/Icecream_Team2.php:79 widgets/Icecream_Team3.php:89 163 #: widgets/Icecream_Team3.php:630 widgets/Icecream_Team4.php:79 164 #: widgets/Icecream_Team5.php:80 165 msgid "Description" 166 msgstr "توضیحات" 167 168 #: widgets/Icecream_Image1.php:68 169 msgid "Default description" 170 msgstr "توضیحات پیشفرض" 171 172 #: widgets/Icecream_Image1.php:76 widgets/Icecream_Image2.php:137 173 #: widgets/Icecream_Image3.php:57 49 174 msgid "General Style" 50 175 msgstr "استایل کلی" 51 176 52 #: widgets/icecream-btn1-widget.php:70 53 msgid "Button background" 54 msgstr "پسزمینه دکمه" 55 56 #: widgets/icecream-btn1-widget.php:81 57 msgid "Button color" 58 msgstr "رنگ دکمه" 59 60 #: widgets/icecream-btn1-widget.php:92 61 msgid "Hover background" 62 msgstr "پسزمینه هاور" 63 64 #: widgets/icecream-btn1-widget.php:103 65 msgid "Text typography" 66 msgstr "تایپوگرافی متن" 67 68 #: widgets/icecream-image1-widget.php:12 69 msgid "Image 1" 70 msgstr "تصویر 1" 71 72 #: widgets/icecream-image1-widget.php:47 widgets/icecream-image2-widget.php:58 73 msgid "Choose Image" 74 msgstr "انتخاب تصویر" 75 76 #: widgets/icecream-image1-widget.php:57 widgets/icecream-image2-widget.php:71 77 msgid "Title" 78 msgstr "عنوان" 79 80 #: widgets/icecream-image1-widget.php:59 81 msgid "Default title" 82 msgstr "عنوان پیشفرض" 83 84 #: widgets/icecream-image1-widget.php:65 85 msgid "Description" 86 msgstr "توضیحات" 87 88 #: widgets/icecream-image1-widget.php:68 89 msgid "Default description" 90 msgstr "توضیحات پیشفرض" 91 92 #: widgets/icecream-image1-widget.php:84 177 #: widgets/Icecream_Image1.php:84 93 178 msgid "Box Shadow" 94 179 msgstr "سایه متن" 95 180 96 #: widgets/icecream-image1-widget.php:91 181 #: widgets/Icecream_Image1.php:91 widgets/Icecream_Team1.php:297 182 #: widgets/Icecream_Team1.php:368 widgets/Icecream_Team2.php:318 183 #: widgets/Icecream_Team2.php:389 widgets/Icecream_Team2.php:515 184 #: widgets/Icecream_Team3.php:517 widgets/Icecream_Team3.php:588 185 #: widgets/Icecream_Team3.php:659 widgets/Icecream_Team3.php:731 186 #: widgets/Icecream_Team4.php:316 widgets/Icecream_Team4.php:388 187 #: widgets/Icecream_Team4.php:460 widgets/Icecream_Team5.php:406 188 #: widgets/Icecream_Team5.php:477 widgets/Icecream_Team5.php:549 97 189 msgid "Alignment" 98 190 msgstr "چینش" 99 191 100 #: widgets/icecream-image1-widget.php:95 101 msgid "Left" 102 msgstr "چپ" 103 104 #: widgets/icecream-image1-widget.php:99 192 #: widgets/Icecream_Image1.php:99 widgets/Icecream_Team1.php:305 193 #: widgets/Icecream_Team1.php:376 widgets/Icecream_Team2.php:326 194 #: widgets/Icecream_Team2.php:397 widgets/Icecream_Team2.php:523 195 #: widgets/Icecream_Team3.php:525 widgets/Icecream_Team3.php:596 196 #: widgets/Icecream_Team3.php:667 widgets/Icecream_Team3.php:739 197 #: widgets/Icecream_Team4.php:324 widgets/Icecream_Team4.php:396 198 #: widgets/Icecream_Team4.php:468 widgets/Icecream_Team5.php:414 199 #: widgets/Icecream_Team5.php:485 widgets/Icecream_Team5.php:557 105 200 msgid "Center" 106 201 msgstr "مرکز" 107 202 108 #: widgets/icecream-image1-widget.php:103 109 msgid "Right" 110 msgstr "راست" 111 112 #: widgets/icecream-image1-widget.php:117 203 #: widgets/Icecream_Image1.php:117 113 204 msgid "Image Style" 114 205 msgstr "استایل تصویر" 115 206 116 #: widgets/ icecream-image1-widget.php:124207 #: widgets/Icecream_Image1.php:124 117 208 msgid "Border radius" 118 209 msgstr "گردی حاشیه" 119 210 120 #: widgets/ icecream-image1-widget.php:143211 #: widgets/Icecream_Image1.php:143 121 212 msgid "Image movement on hover" 122 213 msgstr "حرکت تصویر با هاور" 123 214 124 #: widgets/ icecream-image1-widget.php:165215 #: widgets/Icecream_Image1.php:165 125 216 msgid "Title Style" 126 217 msgstr "استایل عنوان" 127 218 128 #: widgets/icecream-image1-widget.php:172 129 #: widgets/icecream-image1-widget.php:198 219 #: widgets/Icecream_Image1.php:172 widgets/Icecream_Image1.php:198 130 220 msgid "Title Color" 131 221 msgstr "رنگ عنوان" 132 222 133 #: widgets/ icecream-image1-widget.php:191223 #: widgets/Icecream_Image1.php:191 134 224 msgid "Description Style" 135 225 msgstr "استایل توضیحات" 136 226 137 #: widgets/ icecream-image2-widget.php:15227 #: widgets/Icecream_Image2.php:15 138 228 msgid "Menu Image" 139 229 msgstr "تصویر منو" 140 230 141 #: widgets/ icecream-image2-widget.php:73231 #: widgets/Icecream_Image2.php:73 142 232 msgid "Item1" 143 233 msgstr "آیتم 1" 144 234 145 #: widgets/ icecream-image2-widget.php:81235 #: widgets/Icecream_Image2.php:81 146 236 msgid "Link" 147 237 msgstr "لینک" 148 238 149 #: widgets/icecream-image2-widget.php:83 widgets/icecream-image2-widget.php:114 150 #: widgets/icecream-image2-widget.php:119 151 #: widgets/icecream-image2-widget.php:124 239 #: widgets/Icecream_Image2.php:83 widgets/Icecream_Image2.php:114 240 #: widgets/Icecream_Image2.php:119 widgets/Icecream_Image2.php:124 152 241 msgid "#" 153 242 msgstr "#" 154 243 155 #: widgets/icecream-image2-widget.php:97 156 msgid "Color" 157 msgstr "رنگ" 158 159 #: widgets/icecream-image2-widget.php:108 244 #: widgets/Icecream_Image2.php:108 160 245 msgid "Menu items" 161 246 msgstr "آیتمهای منو" 162 247 163 #: widgets/ icecream-image2-widget.php:113248 #: widgets/Icecream_Image2.php:113 164 249 msgid "Home" 165 250 msgstr "خانه" 166 251 167 #: widgets/ icecream-image2-widget.php:118252 #: widgets/Icecream_Image2.php:118 168 253 msgid "About" 169 254 msgstr "درباره" 170 255 171 #: widgets/ icecream-image2-widget.php:123256 #: widgets/Icecream_Image2.php:123 172 257 msgid "Contact" 173 258 msgstr "تماس" 174 259 175 #: widgets/ icecream-image2-widget.php:145260 #: widgets/Icecream_Image2.php:145 176 261 msgid "Menu back color" 177 262 msgstr "رنگ پسزمینه منو" 178 263 179 #: widgets/ icecream-image2-widget.php:157264 #: widgets/Icecream_Image2.php:157 180 265 msgid "Image hover back color" 181 266 msgstr "رنگ پسزمینه با هاور تصویر" 182 267 183 #: widgets/ icecream-image2-widget.php:169268 #: widgets/Icecream_Image2.php:169 184 269 msgid "Items typography" 185 270 msgstr "تایپوگرافی آیتمها" 186 271 187 #: widgets/ icecream-image3-widget.php:12272 #: widgets/Icecream_Image3.php:12 188 273 msgid "Image Gallery" 189 274 msgstr "گالری تصویر" 190 275 191 #: widgets/ icecream-image3-widget.php:47276 #: widgets/Icecream_Image3.php:47 192 277 msgid "Add Images" 193 278 msgstr "افزودن تصاویر" 279 280 #: widgets/Icecream_Team1.php:12 281 msgid "Team 1" 282 msgstr "" 283 284 #: widgets/Icecream_Team1.php:69 widgets/Icecream_Team1.php:268 285 #: widgets/Icecream_Team2.php:69 widgets/Icecream_Team2.php:289 286 #: widgets/Icecream_Team3.php:69 widgets/Icecream_Team3.php:488 287 #: widgets/Icecream_Team4.php:69 widgets/Icecream_Team4.php:287 288 #: widgets/Icecream_Team5.php:70 widgets/Icecream_Team5.php:377 289 msgid "Name" 290 msgstr "" 291 292 #: widgets/Icecream_Team1.php:71 widgets/Icecream_Team2.php:71 293 #: widgets/Icecream_Team3.php:71 widgets/Icecream_Team4.php:71 294 #: widgets/Icecream_Team5.php:72 295 #, fuzzy 296 #| msgid "WPRocketLab" 297 msgid "Rocket" 298 msgstr "WPRocketLab" 299 300 #: widgets/Icecream_Team1.php:72 widgets/Icecream_Team2.php:72 301 #: widgets/Icecream_Team3.php:72 widgets/Icecream_Team4.php:72 302 #: widgets/Icecream_Team5.php:73 303 msgid "Member name" 304 msgstr "" 305 306 #: widgets/Icecream_Team1.php:81 widgets/Icecream_Team2.php:81 307 #: widgets/Icecream_Team3.php:81 widgets/Icecream_Team4.php:81 308 #: widgets/Icecream_Team5.php:82 309 msgid "CEO" 310 msgstr "" 311 312 #: widgets/Icecream_Team1.php:82 widgets/Icecream_Team2.php:82 313 #: widgets/Icecream_Team3.php:82 widgets/Icecream_Team4.php:82 314 #: widgets/Icecream_Team5.php:83 315 msgid "Member position" 316 msgstr "" 317 318 #: widgets/Icecream_Team1.php:89 widgets/Icecream_Team2.php:89 319 #: widgets/Icecream_Team3.php:98 widgets/Icecream_Team4.php:89 320 #: widgets/Icecream_Team5.php:90 321 #, fuzzy 322 #| msgid "Link" 323 msgid "Link 1" 324 msgstr "لینک" 325 326 #: widgets/Icecream_Team1.php:91 widgets/Icecream_Team2.php:91 327 #: widgets/Icecream_Team3.php:100 widgets/Icecream_Team4.php:91 328 #: widgets/Icecream_Team5.php:92 329 #, fuzzy 330 #| msgid "https://wprocketlab.com" 331 msgid "https://fb.com/..." 332 msgstr "https://wprocketlab.com" 333 334 #: widgets/Icecream_Team1.php:113 widgets/Icecream_Team2.php:113 335 #: widgets/Icecream_Team3.php:122 widgets/Icecream_Team4.php:113 336 #: widgets/Icecream_Team5.php:114 337 #, fuzzy 338 #| msgid "Link" 339 msgid "Link 2" 340 msgstr "لینک" 341 342 #: widgets/Icecream_Team1.php:115 widgets/Icecream_Team2.php:115 343 #: widgets/Icecream_Team3.php:124 widgets/Icecream_Team4.php:115 344 #: widgets/Icecream_Team5.php:116 345 #, fuzzy 346 #| msgid "https://wprocketlab.com" 347 msgid "https://twitter.com/..." 348 msgstr "https://wprocketlab.com" 349 350 #: widgets/Icecream_Team1.php:137 widgets/Icecream_Team2.php:137 351 #: widgets/Icecream_Team3.php:146 widgets/Icecream_Team4.php:137 352 #: widgets/Icecream_Team5.php:138 353 #, fuzzy 354 #| msgid "Link" 355 msgid "Link 3" 356 msgstr "لینک" 357 358 #: widgets/Icecream_Team1.php:139 widgets/Icecream_Team2.php:139 359 #: widgets/Icecream_Team3.php:148 widgets/Icecream_Team4.php:139 360 #: widgets/Icecream_Team5.php:140 361 msgid "https://instagram.com/..." 362 msgstr "" 363 364 #: widgets/Icecream_Team1.php:161 widgets/Icecream_Team2.php:161 365 #: widgets/Icecream_Team3.php:170 widgets/Icecream_Team4.php:161 366 #: widgets/Icecream_Team5.php:162 367 #, fuzzy 368 #| msgid "Link" 369 msgid "Link 4" 370 msgstr "لینک" 371 372 #: widgets/Icecream_Team1.php:163 widgets/Icecream_Team1.php:187 373 #: widgets/Icecream_Team1.php:211 widgets/Icecream_Team2.php:163 374 #: widgets/Icecream_Team2.php:187 widgets/Icecream_Team2.php:211 375 #: widgets/Icecream_Team3.php:172 widgets/Icecream_Team3.php:196 376 #: widgets/Icecream_Team3.php:220 widgets/Icecream_Team4.php:163 377 #: widgets/Icecream_Team4.php:187 widgets/Icecream_Team4.php:211 378 #: widgets/Icecream_Team5.php:164 widgets/Icecream_Team5.php:188 379 #: widgets/Icecream_Team5.php:212 380 #, fuzzy 381 #| msgid "https://wprocketlab.com" 382 msgid "https://pinterest.com/..." 383 msgstr "https://wprocketlab.com" 384 385 #: widgets/Icecream_Team1.php:185 widgets/Icecream_Team2.php:185 386 #: widgets/Icecream_Team3.php:194 widgets/Icecream_Team4.php:185 387 #: widgets/Icecream_Team5.php:186 388 #, fuzzy 389 #| msgid "Link" 390 msgid "Link 5" 391 msgstr "لینک" 392 393 #: widgets/Icecream_Team1.php:209 widgets/Icecream_Team2.php:209 394 #: widgets/Icecream_Team3.php:218 widgets/Icecream_Team4.php:209 395 #: widgets/Icecream_Team5.php:210 396 #, fuzzy 397 #| msgid "Link" 398 msgid "Link 6" 399 msgstr "لینک" 400 401 #: widgets/Icecream_Team1.php:234 widgets/Icecream_Team2.php:234 402 #: widgets/Icecream_Team3.php:453 widgets/Icecream_Team5.php:342 403 #, fuzzy 404 #| msgid "Image 1" 405 msgid "Image" 406 msgstr "تصویر 1" 407 408 #: widgets/Icecream_Team1.php:253 widgets/Icecream_Team2.php:242 409 #: widgets/Icecream_Team2.php:264 widgets/Icecream_Team3.php:461 410 #: widgets/Icecream_Team5.php:350 411 #, fuzzy 412 #| msgid "Border radius" 413 msgid "Border Radius" 414 msgstr "گردی حاشیه" 415 416 #: widgets/Icecream_Team1.php:276 widgets/Icecream_Team1.php:347 417 #: widgets/Icecream_Team2.php:297 widgets/Icecream_Team2.php:368 418 #: widgets/Icecream_Team3.php:496 widgets/Icecream_Team3.php:567 419 #: widgets/Icecream_Team3.php:638 widgets/Icecream_Team4.php:295 420 #: widgets/Icecream_Team4.php:367 widgets/Icecream_Team5.php:385 421 #: widgets/Icecream_Team5.php:456 422 #, fuzzy 423 #| msgid "Text typography" 424 msgid "Typography" 425 msgstr "تایپوگرافی متن" 426 427 #: widgets/Icecream_Team1.php:325 widgets/Icecream_Team1.php:396 428 #: widgets/Icecream_Team2.php:346 widgets/Icecream_Team2.php:417 429 #: widgets/Icecream_Team3.php:474 widgets/Icecream_Team3.php:545 430 #: widgets/Icecream_Team3.php:616 widgets/Icecream_Team3.php:687 431 #: widgets/Icecream_Team3.php:813 widgets/Icecream_Team4.php:345 432 #: widgets/Icecream_Team4.php:416 widgets/Icecream_Team5.php:363 433 #: widgets/Icecream_Team5.php:434 widgets/Icecream_Team5.php:505 434 #: widgets/Icecream_Team5.php:631 435 msgid "Margin" 436 msgstr "" 437 438 #: widgets/Icecream_Team1.php:410 widgets/Icecream_Team2.php:431 439 #: widgets/Icecream_Team3.php:701 widgets/Icecream_Team4.php:430 440 #: widgets/Icecream_Team5.php:519 441 msgid "Icons" 442 msgstr "" 443 444 #: widgets/Icecream_Team1.php:440 widgets/Icecream_Team2.php:461 445 #: widgets/Icecream_Team3.php:759 widgets/Icecream_Team4.php:488 446 #: widgets/Icecream_Team5.php:577 447 msgid "Size" 448 msgstr "" 449 450 #: widgets/Icecream_Team1.php:467 widgets/Icecream_Team2.php:488 451 #: widgets/Icecream_Team3.php:786 widgets/Icecream_Team4.php:515 452 #: widgets/Icecream_Team5.php:604 453 msgid "Padding" 454 msgstr "" 455 456 #: widgets/Icecream_Team2.php:12 457 msgid "Team 2" 458 msgstr "" 459 460 #: widgets/Icecream_Team2.php:256 461 msgid "Overlay" 462 msgstr "" 463 464 #: widgets/Icecream_Team2.php:277 465 #, fuzzy 466 #| msgid "Button color" 467 msgid "Background color" 468 msgstr "رنگ دکمه" 469 470 #: widgets/Icecream_Team3.php:12 471 msgid "Team 3" 472 msgstr "" 473 474 #: widgets/Icecream_Team3.php:79 475 #, fuzzy 476 #| msgid "Description" 477 msgid "Position" 478 msgstr "توضیحات" 479 480 #: widgets/Icecream_Team3.php:91 481 #, fuzzy 482 #| msgid "Default description" 483 msgid "Member description..." 484 msgstr "توضیحات پیشفرض" 485 486 #: widgets/Icecream_Team3.php:243 widgets/Icecream_Team4.php:234 487 #: widgets/Icecream_Team5.php:235 488 #, fuzzy 489 #| msgid "General Style" 490 msgid "General" 491 msgstr "استایل کلی" 492 493 #: widgets/Icecream_Team3.php:251 widgets/Icecream_Team5.php:243 494 msgid "Details margin" 495 msgstr "" 496 497 #: widgets/Icecream_Team3.php:264 498 #, fuzzy 499 #| msgid "Image 1" 500 msgid "Image width %" 501 msgstr "تصویر 1" 502 503 #: widgets/Icecream_Team3.php:282 504 msgid "Details width %" 505 msgstr "" 506 507 #: widgets/Icecream_Team3.php:300 508 msgid "Show border" 509 msgstr "" 510 511 #: widgets/Icecream_Team3.php:302 512 msgid "Show" 513 msgstr "" 514 515 #: widgets/Icecream_Team3.php:303 516 msgid "Hide" 517 msgstr "" 518 519 #: widgets/Icecream_Team3.php:312 520 #, fuzzy 521 #| msgid "Border radius" 522 msgid "Border width" 523 msgstr "گردی حاشیه" 524 525 #: widgets/Icecream_Team3.php:350 526 msgid "Bottom" 527 msgstr "" 528 529 #: widgets/Icecream_Team3.php:366 530 #, fuzzy 531 #| msgid "Button color" 532 msgid "Border color" 533 msgstr "رنگ دکمه" 534 535 #: widgets/Icecream_Team3.php:380 widgets/Icecream_Team5.php:256 536 msgid "Switch position" 537 msgstr "" 538 539 #: widgets/Icecream_Team3.php:382 widgets/Icecream_Team5.php:258 540 msgid "Yes" 541 msgstr "" 542 543 #: widgets/Icecream_Team3.php:383 widgets/Icecream_Team5.php:259 544 msgid "No" 545 msgstr "" 546 547 #: widgets/Icecream_Team3.php:392 548 msgid "Name position" 549 msgstr "" 550 551 #: widgets/Icecream_Team3.php:407 widgets/Icecream_Team5.php:268 552 #, fuzzy 553 #| msgid "Title Color" 554 msgid "Title position" 555 msgstr "رنگ عنوان" 556 557 #: widgets/Icecream_Team3.php:422 widgets/Icecream_Team5.php:283 558 #, fuzzy 559 #| msgid "Description" 560 msgid "Description position" 561 msgstr "توضیحات" 562 563 #: widgets/Icecream_Team3.php:437 widgets/Icecream_Team5.php:298 564 msgid "Scoials position" 565 msgstr "" 566 567 #: widgets/Icecream_Team4.php:12 568 msgid "Team 4 - big" 569 msgstr "" 570 571 #: widgets/Icecream_Team4.php:242 572 msgid "Horizontal position" 573 msgstr "" 574 575 #: widgets/Icecream_Team4.php:264 576 msgid "Vertical position" 577 msgstr "" 578 579 #: widgets/Icecream_Team5.php:13 580 msgid "Team 5 - fluid" 581 msgstr "" 582 583 #: widgets/Icecream_Team5.php:314 584 msgid "Overlay V position" 585 msgstr "" 194 586 195 587 #. Description of the plugin/theme … … 198 590 199 591 #. Author of the plugin/theme 200 msgid " WPRocketLab"201 msgstr " WPRocketLab"592 msgid "Reza Masoumpour" 593 msgstr "" 202 594 203 595 #. Author URI of the plugin/theme 204 msgid "https:// wprocketlab.com"205 msgstr " https://wprocketlab.com"596 msgid "https://themio.ir/" 597 msgstr "" 206 598 207 599 #~ msgid "Gradient title" -
icecream-elementor-addon/trunk/readme.txt
r2904291 r3178882 14 14 15 15 == IceCream Widgets == 16 17 - **Fancy Button**. Add fancy button with a colored comet spot hover over on button.18 16 19 17 - **Image Gallery**. Add beautiful and responsive mosaic image gallery to your page. … … 57 55 == Changelog == 58 56 57 = 2.0.0 - 30-10-2024 58 * Restructure the plugin & widgets 59 * Compatible with latest WordPress and Elementor version 60 59 61 = 1.2.0 - 26-04-2023 = 60 62 * Add compatibility with Elementor and WordPress core latest version -
icecream-elementor-addon/trunk/widgets/assets/css/btn1-widget.css
r2713549 r3178882 1 .icecream_btn1_widget.mouse-cursor-gradient-tracking { 2 position: relative; 3 padding: 0.5rem 1rem; 4 font-size: 1.2rem; 5 border: none; 6 cursor: pointer; 7 outline: none; 8 overflow: hidden; 1 .expanding-btn { 2 display: flex; 9 3 } 10 4 11 .icecream_btn1_widget.mouse-cursor-gradient-tracking span { 12 position: relative; 5 .expanding-btn .btn { 6 padding: 10px 17px 10px 17px; 7 border-color: transparent; 8 border-radius: 7px; 13 9 } 14 10 15 .icecream_btn1_widget.mouse-cursor-gradient-tracking:before { 16 --size: 0; 17 content: ''; 18 position: absolute; 19 left: var(--x); 20 top: var(--y); 21 width: var(--size); 22 height: var(--size); 23 transform: translate(-50%, -50%); 24 transition: all 0.3s; 11 .expanding-btn .btn span { 12 cursor: pointer; 13 display: inline-block; 14 position: relative; 15 transition: 0.5s; 25 16 } 26 17 27 .icecream_btn1_widget.mouse-cursor-gradient-tracking:hover:before { 28 --size: 200px; 18 .expanding-btn .btn span.icon { 19 position: absolute; 20 opacity: 0; 21 top: 0; 22 transition: 0.5s; 29 23 } 24 25 .expanding-btn .btn:hover span.icon { 26 opacity: 1; 27 } 28 29 .expanding-btn .btn svg { 30 width: 10px; 31 height: 10px; 32 }
Note: See TracChangeset
for help on using the changeset viewer.