Plugin Directory

Changeset 3178882


Ignore:
Timestamp:
10/30/2024 02:42:49 PM (17 months ago)
Author:
rezamas
Message:

Update IceCream Elementor Addon plugin on WordPress repo

Location:
icecream-elementor-addon/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • icecream-elementor-addon/trunk/admin/admin.php

    r2713549 r3178882  
    33if ( !defined( 'ABSPATH' ) ) exit;
    44
    5 include plugin_dir_path( __FILE__ ) . 'admin-html.php';
    6 include plugin_dir_path( __FILE__ ) . 'admin-style.php';
     5require_once 'AdminTrait.php';
     6
     7class 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  
    44 * Plugin Name: IceCream Elementor Addon
    55 * Description: Elementor awesome and free element.
    6  * Author: WPRocketLab
    7  * Author URI: https://wprocketlab.com
     6 * Author: Reza Masoumpour
     7 * Author URI: https://themio.ir/
    88 * Requires at least: 5.0
    9  * Version: 1.2.0
     9 * Version: 2.0.0
    1010 * Licence: GPL v2 or later
    1111 * Licence URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1414*/
    1515
    16 
    1716if ( !defined( 'ABSPATH' ) ) exit;
    1817
    19 include plugin_dir_path( __FILE__ ) . 'admin/admin.php';
     18class 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    }
    2026
    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    }
    2231
    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    }
    2568}
     69new Core();
     70
  • icecream-elementor-addon/trunk/languages/icecreameaddon-fa_IR.po

    r2713549 r3178882  
    22msgstr ""
    33"Project-Id-Version: IceCream Elementor Addon\n"
    4 "POT-Creation-Date: 2022-04-21 08:46+0430\n"
    5 "PO-Revision-Date: 2022-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"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1717"X-Poedit-SourceCharset: UTF-8\n"
    1818"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 "_nx_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"
    2121"X-Poedit-SearchPath-0: .\n"
    2222"X-Poedit-SearchPathExcluded-0: *.js\n"
    2323
    2424#. Plugin Name of the plugin/theme
    25 #: admin/admin-html.php:11 admin/admin-html.php:12 admin/admin-html.php:21
    26 #: elementor.php:21
     25#: admin/Admin.php:18 admin/Admin.php:19 admin/AdminTrait.php:9
     26#: icecreameaddon.php:58
    2727msgid "IceCream Elementor Addon"
    2828msgstr "ادآن بستنی یخی المنتور"
    2929
    30 #: widgets/icecream-btn1-widget.php:12
    31 msgid "Fancy Button"
     30#: widgets/Icecream_Btn1.php:14
     31#, fuzzy
     32#| msgid "Fancy Button"
     33msgid "Expand Button"
    3234msgstr "دکمه شگفت‌انگیز"
    3335
    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
    3641msgid "Content"
    3742msgstr "محتوا"
    3843
    39 #: widgets/icecream-btn1-widget.php:52
     44#: widgets/Icecream_Btn1.php:57 widgets/Icecream_Btn1.php:181
    4045msgid "Text"
    4146msgstr "متن"
    4247
    43 #: widgets/icecream-btn1-widget.php:54
     48#: widgets/Icecream_Btn1.php:59 widgets/Icecream_Btn1.php:106
    4449msgid "Button"
    4550msgstr "دکمه"
    4651
    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"
     55msgid "Direction"
     56msgstr "توضیحات"
     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
     67msgid "Left"
     68msgstr "چپ"
     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
     79msgid "Right"
     80msgstr "راست"
     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
     98msgid "Icon"
     99msgstr "آیکن"
     100
     101#: widgets/Icecream_Btn1.php:114
     102#, fuzzy
     103#| msgid "Button background"
     104msgid "Background-color"
     105msgstr "پس‌زمینه دکمه"
     106
     107#: widgets/Icecream_Btn1.php:126
     108#, fuzzy
     109#| msgid "Hover background"
     110msgid "Hover Background-color"
     111msgstr "پس‌زمینه هاور"
     112
     113#: widgets/Icecream_Btn1.php:148
     114msgid "Width"
     115msgstr "اندازه"
     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
     127msgid "Color"
     128msgstr "رنگ"
     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"
     136msgid "Hover color"
     137msgstr "رنگ دکمه"
     138
     139#: widgets/Icecream_Image1.php:12
     140msgid "Image 1"
     141msgstr "تصویر 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
     147msgid "Choose Image"
     148msgstr "انتخاب تصویر"
     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
     154msgid "Title"
     155msgstr "عنوان"
     156
     157#: widgets/Icecream_Image1.php:59
     158msgid "Default title"
     159msgstr "عنوان پیش‌فرض"
     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
     165msgid "Description"
     166msgstr "توضیحات"
     167
     168#: widgets/Icecream_Image1.php:68
     169msgid "Default description"
     170msgstr "توضیحات پیش‌فرض"
     171
     172#: widgets/Icecream_Image1.php:76 widgets/Icecream_Image2.php:137
     173#: widgets/Icecream_Image3.php:57
    49174msgid "General Style"
    50175msgstr "استایل کلی"
    51176
    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
    93178msgid "Box Shadow"
    94179msgstr "سایه متن"
    95180
    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
    97189msgid "Alignment"
    98190msgstr "چینش"
    99191
    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
    105200msgid "Center"
    106201msgstr "مرکز"
    107202
    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
    113204msgid "Image Style"
    114205msgstr "استایل تصویر"
    115206
    116 #: widgets/icecream-image1-widget.php:124
     207#: widgets/Icecream_Image1.php:124
    117208msgid "Border radius"
    118209msgstr "گردی حاشیه"
    119210
    120 #: widgets/icecream-image1-widget.php:143
     211#: widgets/Icecream_Image1.php:143
    121212msgid "Image movement on hover"
    122213msgstr "حرکت تصویر با هاور"
    123214
    124 #: widgets/icecream-image1-widget.php:165
     215#: widgets/Icecream_Image1.php:165
    125216msgid "Title Style"
    126217msgstr "استایل عنوان"
    127218
    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
    130220msgid "Title Color"
    131221msgstr "رنگ عنوان"
    132222
    133 #: widgets/icecream-image1-widget.php:191
     223#: widgets/Icecream_Image1.php:191
    134224msgid "Description Style"
    135225msgstr "استایل توضیحات"
    136226
    137 #: widgets/icecream-image2-widget.php:15
     227#: widgets/Icecream_Image2.php:15
    138228msgid "Menu Image"
    139229msgstr "تصویر منو"
    140230
    141 #: widgets/icecream-image2-widget.php:73
     231#: widgets/Icecream_Image2.php:73
    142232msgid "Item1"
    143233msgstr "آیتم 1"
    144234
    145 #: widgets/icecream-image2-widget.php:81
     235#: widgets/Icecream_Image2.php:81
    146236msgid "Link"
    147237msgstr "لینک"
    148238
    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
    152241msgid "#"
    153242msgstr "#"
    154243
    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
    160245msgid "Menu items"
    161246msgstr "آیتم‌های منو"
    162247
    163 #: widgets/icecream-image2-widget.php:113
     248#: widgets/Icecream_Image2.php:113
    164249msgid "Home"
    165250msgstr "خانه"
    166251
    167 #: widgets/icecream-image2-widget.php:118
     252#: widgets/Icecream_Image2.php:118
    168253msgid "About"
    169254msgstr "درباره"
    170255
    171 #: widgets/icecream-image2-widget.php:123
     256#: widgets/Icecream_Image2.php:123
    172257msgid "Contact"
    173258msgstr "تماس"
    174259
    175 #: widgets/icecream-image2-widget.php:145
     260#: widgets/Icecream_Image2.php:145
    176261msgid "Menu back color"
    177262msgstr "رنگ پس‌زمینه منو"
    178263
    179 #: widgets/icecream-image2-widget.php:157
     264#: widgets/Icecream_Image2.php:157
    180265msgid "Image hover back color"
    181266msgstr "رنگ پس‌زمینه با هاور تصویر"
    182267
    183 #: widgets/icecream-image2-widget.php:169
     268#: widgets/Icecream_Image2.php:169
    184269msgid "Items typography"
    185270msgstr "تایپوگرافی آیتم‌ها"
    186271
    187 #: widgets/icecream-image3-widget.php:12
     272#: widgets/Icecream_Image3.php:12
    188273msgid "Image Gallery"
    189274msgstr "گالری تصویر"
    190275
    191 #: widgets/icecream-image3-widget.php:47
     276#: widgets/Icecream_Image3.php:47
    192277msgid "Add Images"
    193278msgstr "افزودن تصاویر"
     279
     280#: widgets/Icecream_Team1.php:12
     281msgid "Team 1"
     282msgstr ""
     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
     289msgid "Name"
     290msgstr ""
     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"
     297msgid "Rocket"
     298msgstr "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
     303msgid "Member name"
     304msgstr ""
     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
     309msgid "CEO"
     310msgstr ""
     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
     315msgid "Member position"
     316msgstr ""
     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"
     323msgid "Link 1"
     324msgstr "لینک"
     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"
     331msgid "https://fb.com/..."
     332msgstr "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"
     339msgid "Link 2"
     340msgstr "لینک"
     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"
     347msgid "https://twitter.com/..."
     348msgstr "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"
     355msgid "Link 3"
     356msgstr "لینک"
     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
     361msgid "https://instagram.com/..."
     362msgstr ""
     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"
     369msgid "Link 4"
     370msgstr "لینک"
     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"
     382msgid "https://pinterest.com/..."
     383msgstr "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"
     390msgid "Link 5"
     391msgstr "لینک"
     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"
     398msgid "Link 6"
     399msgstr "لینک"
     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"
     405msgid "Image"
     406msgstr "تصویر 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"
     413msgid "Border Radius"
     414msgstr "گردی حاشیه"
     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"
     424msgid "Typography"
     425msgstr "تایپوگرافی متن"
     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
     435msgid "Margin"
     436msgstr ""
     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
     441msgid "Icons"
     442msgstr ""
     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
     447msgid "Size"
     448msgstr ""
     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
     453msgid "Padding"
     454msgstr ""
     455
     456#: widgets/Icecream_Team2.php:12
     457msgid "Team 2"
     458msgstr ""
     459
     460#: widgets/Icecream_Team2.php:256
     461msgid "Overlay"
     462msgstr ""
     463
     464#: widgets/Icecream_Team2.php:277
     465#, fuzzy
     466#| msgid "Button color"
     467msgid "Background color"
     468msgstr "رنگ دکمه"
     469
     470#: widgets/Icecream_Team3.php:12
     471msgid "Team 3"
     472msgstr ""
     473
     474#: widgets/Icecream_Team3.php:79
     475#, fuzzy
     476#| msgid "Description"
     477msgid "Position"
     478msgstr "توضیحات"
     479
     480#: widgets/Icecream_Team3.php:91
     481#, fuzzy
     482#| msgid "Default description"
     483msgid "Member description..."
     484msgstr "توضیحات پیش‌فرض"
     485
     486#: widgets/Icecream_Team3.php:243 widgets/Icecream_Team4.php:234
     487#: widgets/Icecream_Team5.php:235
     488#, fuzzy
     489#| msgid "General Style"
     490msgid "General"
     491msgstr "استایل کلی"
     492
     493#: widgets/Icecream_Team3.php:251 widgets/Icecream_Team5.php:243
     494msgid "Details margin"
     495msgstr ""
     496
     497#: widgets/Icecream_Team3.php:264
     498#, fuzzy
     499#| msgid "Image 1"
     500msgid "Image width %"
     501msgstr "تصویر 1"
     502
     503#: widgets/Icecream_Team3.php:282
     504msgid "Details width %"
     505msgstr ""
     506
     507#: widgets/Icecream_Team3.php:300
     508msgid "Show border"
     509msgstr ""
     510
     511#: widgets/Icecream_Team3.php:302
     512msgid "Show"
     513msgstr ""
     514
     515#: widgets/Icecream_Team3.php:303
     516msgid "Hide"
     517msgstr ""
     518
     519#: widgets/Icecream_Team3.php:312
     520#, fuzzy
     521#| msgid "Border radius"
     522msgid "Border width"
     523msgstr "گردی حاشیه"
     524
     525#: widgets/Icecream_Team3.php:350
     526msgid "Bottom"
     527msgstr ""
     528
     529#: widgets/Icecream_Team3.php:366
     530#, fuzzy
     531#| msgid "Button color"
     532msgid "Border color"
     533msgstr "رنگ دکمه"
     534
     535#: widgets/Icecream_Team3.php:380 widgets/Icecream_Team5.php:256
     536msgid "Switch position"
     537msgstr ""
     538
     539#: widgets/Icecream_Team3.php:382 widgets/Icecream_Team5.php:258
     540msgid "Yes"
     541msgstr ""
     542
     543#: widgets/Icecream_Team3.php:383 widgets/Icecream_Team5.php:259
     544msgid "No"
     545msgstr ""
     546
     547#: widgets/Icecream_Team3.php:392
     548msgid "Name position"
     549msgstr ""
     550
     551#: widgets/Icecream_Team3.php:407 widgets/Icecream_Team5.php:268
     552#, fuzzy
     553#| msgid "Title Color"
     554msgid "Title position"
     555msgstr "رنگ عنوان"
     556
     557#: widgets/Icecream_Team3.php:422 widgets/Icecream_Team5.php:283
     558#, fuzzy
     559#| msgid "Description"
     560msgid "Description position"
     561msgstr "توضیحات"
     562
     563#: widgets/Icecream_Team3.php:437 widgets/Icecream_Team5.php:298
     564msgid "Scoials position"
     565msgstr ""
     566
     567#: widgets/Icecream_Team4.php:12
     568msgid "Team 4 - big"
     569msgstr ""
     570
     571#: widgets/Icecream_Team4.php:242
     572msgid "Horizontal position"
     573msgstr ""
     574
     575#: widgets/Icecream_Team4.php:264
     576msgid "Vertical position"
     577msgstr ""
     578
     579#: widgets/Icecream_Team5.php:13
     580msgid "Team 5 - fluid"
     581msgstr ""
     582
     583#: widgets/Icecream_Team5.php:314
     584msgid "Overlay V position"
     585msgstr ""
    194586
    195587#. Description of the plugin/theme
     
    198590
    199591#. Author of the plugin/theme
    200 msgid "WPRocketLab"
    201 msgstr "WPRocketLab"
     592msgid "Reza Masoumpour"
     593msgstr ""
    202594
    203595#. Author URI of the plugin/theme
    204 msgid "https://wprocketlab.com"
    205 msgstr "https://wprocketlab.com"
     596msgid "https://themio.ir/"
     597msgstr ""
    206598
    207599#~ msgid "Gradient title"
  • icecream-elementor-addon/trunk/readme.txt

    r2904291 r3178882  
    1414
    1515== IceCream Widgets ==
    16 
    17 - **Fancy Button**. Add fancy button with a colored comet spot hover over on button.
    1816
    1917- **Image Gallery**. Add beautiful and responsive mosaic image gallery to your page.
     
    5755== Changelog ==
    5856
     57= 2.0.0 - 30-10-2024
     58* Restructure the plugin & widgets
     59* Compatible with latest WordPress and Elementor version
     60
    5961= 1.2.0 - 26-04-2023 =
    6062* 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;
    93}
    104
    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;
    139}
    1410
    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;
    2516}
    2617
    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;
    2923}
     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.