Changeset 2914614
- Timestamp:
- 05/19/2023 07:14:05 AM (3 years ago)
- Location:
- analogwp-templates
- Files:
-
- 26 edited
- 1 copied
-
tags/2.0.4 (copied) (copied from analogwp-templates/trunk)
-
tags/2.0.4/analogwp-templates.php (modified) (3 diffs)
-
tags/2.0.4/assets/css/admin-settings.css (modified) (1 diff)
-
tags/2.0.4/inc/Utils.php (modified) (2 diffs)
-
tags/2.0.4/inc/api/class-local.php (modified) (3 diffs)
-
tags/2.0.4/inc/elementor/Google_Fonts.php (modified) (1 diff)
-
tags/2.0.4/inc/elementor/kit/Instance_List_Table.php (modified) (2 diffs)
-
tags/2.0.4/inc/settings/views/html-admin-settings-gopro.php (modified) (1 diff)
-
tags/2.0.4/inc/settings/views/html-admin-settings.php (modified) (1 diff)
-
tags/2.0.4/languages/ang-analogwp-app.json (modified) (1 diff)
-
tags/2.0.4/languages/ang.pot (modified) (4 diffs)
-
tags/2.0.4/third-party/vendor/autoload.php (modified) (1 diff)
-
tags/2.0.4/third-party/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/2.0.4/third-party/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/analogwp-templates.php (modified) (3 diffs)
-
trunk/assets/css/admin-settings.css (modified) (1 diff)
-
trunk/inc/Utils.php (modified) (2 diffs)
-
trunk/inc/api/class-local.php (modified) (3 diffs)
-
trunk/inc/elementor/Google_Fonts.php (modified) (1 diff)
-
trunk/inc/elementor/kit/Instance_List_Table.php (modified) (2 diffs)
-
trunk/inc/settings/views/html-admin-settings-gopro.php (modified) (1 diff)
-
trunk/inc/settings/views/html-admin-settings.php (modified) (1 diff)
-
trunk/languages/ang-analogwp-app.json (modified) (1 diff)
-
trunk/languages/ang.pot (modified) (4 diffs)
-
trunk/third-party/vendor/autoload.php (modified) (1 diff)
-
trunk/third-party/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/third-party/vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
analogwp-templates/tags/2.0.4/analogwp-templates.php
r2901121 r2914614 11 11 * Plugin URI: https://analogwp.com/ 12 12 * Description: Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets. 13 * Version: 2.0. 313 * Version: 2.0.4 14 14 * Author: AnalogWP 15 15 * Author URI: https://analogwp.com/ … … 17 17 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 18 18 * Text Domain: ang 19 * Elementor tested up to: 3.1 2.120 * Elementor Pro tested up to: 3.1 2.219 * Elementor tested up to: 3.13.2 20 * Elementor Pro tested up to: 3.13.1 21 21 */ 22 22 … … 26 26 define( 'ANG_PHP_MINIMUM', '7.0' ); 27 27 define( 'ANG_WP_MINIMUM', '5.9' ); 28 define( 'ANG_VERSION', '2.0. 3' );28 define( 'ANG_VERSION', '2.0.4' ); 29 29 define( 'ANG_PLUGIN_FILE', __FILE__ ); 30 30 define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) ); -
analogwp-templates/tags/2.0.4/assets/css/admin-settings.css
r2901121 r2914614 181 181 border: 1px solid #dcdcdc; 182 182 padding: 5px 30px 25px; 183 } 184 185 .ang .sidebar .social { 186 display: flex; 187 gap: 15px; 183 188 } 184 189 -
analogwp-templates/tags/2.0.4/inc/Utils.php
r2865003 r2914614 698 698 } 699 699 700 $kit_id = $document->get_settings( 'ang_action_tokens' );700 $kit_id = $document->get_settings( 'ang_action_tokens' ); 701 701 702 702 // Check if this is a valid kit or not. … … 817 817 return self::has_pro() && 'valid' === $status; 818 818 } 819 820 /**821 * Returns true if the Elementor Pro plugin is active.822 *823 * @return bool824 */825 public static function has_elementor_pro() {826 return defined( 'ELEMENTOR_PRO_VERSION' );827 }828 829 /**830 * Returns true if the WooCommerce plugin is active.831 *832 * @return bool833 */834 public static function has_woocommerce() {835 return defined( 'WOOCOMMERCE_VERSION' );836 }837 819 } 838 820 -
analogwp-templates/tags/2.0.4/inc/api/class-local.php
r2824271 r2914614 384 384 385 385 if ( ! $key ) { 386 return new WP_Error( 'settings_error', 'No options key provided.');386 return new WP_Error( 'settings_error', __( 'No options key provided.', 'ang' ) ); 387 387 } 388 388 … … 546 546 if ( is_array( $kit ) && isset( $kit['id'] ) ) { 547 547 if ( isset( $kit['is_pro'] ) && $kit['is_pro'] && ! Utils::has_valid_license() ) { 548 return new WP_Error( 'kit_import_error', 'Invalid license provided.');548 return new WP_Error( 'kit_import_error', __( 'Invalid license provided.', 'ang' ) ); 549 549 } 550 550 … … 613 613 614 614 if ( isset( $block['is_pro'] ) && $block['is_pro'] && ! Utils::has_valid_license() ) { 615 return new WP_Error( 'block_import_error', 'Invalid license provided.');615 return new WP_Error( 'block_import_error', __( 'Invalid license provided.', 'ang' ) ); 616 616 } 617 617 -
analogwp-templates/tags/2.0.4/inc/elementor/Google_Fonts.php
r2465494 r2914614 59 59 $fonts = json_decode( $fonts, true ); 60 60 if ( count( $fonts ) ) { 61 $formatted_fonts = [];61 $formatted_fonts = array(); 62 62 63 63 foreach ( $fonts as $font ) { -
analogwp-templates/tags/2.0.4/inc/elementor/kit/Instance_List_Table.php
r2409102 r2914614 425 425 * Include the columns which can be sortable. 426 426 * 427 * @return Array$sortable_columns Return array of sortable columns.427 * @return array[] $sortable_columns Return array of sortable columns. 428 428 */ 429 429 public function get_sortable_columns() { … … 471 471 } 472 472 473 echo '<style type="text/css">';473 echo '<style>'; 474 474 echo '.wp-list-table .column-kit { width: 10%; }'; 475 475 echo '.wp-list-table .column-type { width: 10%; }'; -
analogwp-templates/tags/2.0.4/inc/settings/views/html-admin-settings-gopro.php
r2859992 r2914614 12 12 13 13 <div class="gopro-content"> 14 <h1 class="tab-heading"><?php _e( 'Transform your design workflow in Elementor with Style Kits PRO', 'ang' ); ?></h1>14 <h1 class="tab-heading"><?php esc_html_e( 'Transform your design workflow in Elementor with Style Kits PRO', 'ang' ); ?></h1> 15 15 <p>Excited with the free version of Style Kits? Try out Style Kits PRO and optimise your Elementor design workflow with more features:</p> 16 16 <ul> 17 <li><?php _e( 'Unlimited access to the container-based pattern library', 'ang' ); ?></li>18 <li><?php _e( 'Unlimited access to the entire collection of Global theme style presets', 'ang' ); ?></li>19 <li><?php _e( 'Unlock up to 48 Global Style Kit Fonts and Colors', 'ang' ); ?></li>20 <li><?php _e( 'Unlock up to 24 container spacing presets', 'ang' ); ?></li>21 <li><?php _e( 'Hide any Style Kit reference from your clients, based on user roles', 'ang' ); ?></li>22 <li><?php _e( 'Style Kits front-end switcher', 'ang' ); ?></li>23 <li><?php _e( 'Selectively de-activate Style Kits Panels from the site settings sidebar', 'ang' ); ?></li>17 <li><?php esc_html_e( 'Unlimited access to the container-based pattern library', 'ang' ); ?></li> 18 <li><?php esc_html_e( 'Unlimited access to the entire collection of Global theme style presets', 'ang' ); ?></li> 19 <li><?php esc_html_e( 'Unlock up to 48 Global Style Kit Fonts and Colors', 'ang' ); ?></li> 20 <li><?php esc_html_e( 'Unlock up to 24 container spacing presets', 'ang' ); ?></li> 21 <li><?php esc_html_e( 'Hide any Style Kit reference from your clients, based on user roles', 'ang' ); ?></li> 22 <li><?php esc_html_e( 'Style Kits front-end switcher', 'ang' ); ?></li> 23 <li><?php esc_html_e( 'Selectively de-activate Style Kits Panels from the site settings sidebar', 'ang' ); ?></li> 24 24 </ul> 25 <p><?php _e( '.. and much more.', 'ang' ); ?></p>25 <p><?php esc_html_e( '.. and much more.', 'ang' ); ?></p> 26 26 <a href="<?php echo esc_url( 'https://analogwp.com/pricing/?utm_medium=plugin&utm_source=library&utm_campaign=style+kits+pro' ); ?>" class="ang-button button-primary" target="_blank"><?php esc_html_e( 'Explore Style Kits Pro', 'ang' ); ?></a> 27 27 </div> -
analogwp-templates/tags/2.0.4/inc/settings/views/html-admin-settings.php
r2859992 r2914614 16 16 17 17 $tab_exists = isset( $tabs[ $current_tab ] ) || has_action( 'ang_sections_' . $current_tab ) || has_action( 'ang_settings_' . $current_tab ) || has_action( 'ang_settings_tabs_' . $current_tab ); 18 $current_tab_label = isset( $tabs[ $current_tab ] ) ? $tabs[ $current_tab ] :'';18 $current_tab_label = $tabs[ $current_tab ] ?? ''; 19 19 20 20 global $current_user; -
analogwp-templates/tags/2.0.4/languages/ang-analogwp-app.json
r2901121 r2914614 1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""]," Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container experiment":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers experiment in Elementor.":[""],"Container experiment is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">●</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest that you don’t use these features on a production site. %s about how this works.":[""],"Container-based Library":[""],"Get early access to the upcoming container-based library of Patterns. You need to have the Containers experiment activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"More Info":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Save changes":[""],"Upgrade to Style Kits Pro with a 15% discount":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Join our Facebook group":[""],"Get insights, tips and updates in our facebook community.":[""],"Join now":[""],"Sign up for email updates":[""],"Stay in the loop with Style Kits development by signing up to our newsletter.":[""],"Sign me up":[""],"By signing up you agree to our":[""],"privacy and terms":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Subscribing":[""],"Failed":[""],"Subscribe up to newsletter":[""],"Subscribed":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"New":[""],"Preview":[""],"Import":[""],"Pro":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Back to Library":[""],"Open in new tab":[""],"Import Template":[""],"Loading icon":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"View Templates":[""],"Exit preview":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}}1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""],"No options key provided.":[""],"Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid license provided.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container experiment":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers experiment in Elementor.":[""],"Container experiment is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">●</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest that you don’t use these features on a production site. %s about how this works.":[""],"Container-based Library":[""],"Get early access to the upcoming container-based library of Patterns. You need to have the Containers experiment activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"More Info":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Save changes":[""],"Upgrade to Style Kits Pro with a 15% discount":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Join our Facebook group":[""],"Get insights, tips and updates in our facebook community.":[""],"Join now":[""],"Sign up for email updates":[""],"Stay in the loop with Style Kits development by signing up to our newsletter.":[""],"Sign me up":[""],"By signing up you agree to our":[""],"privacy and terms":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Subscribing":[""],"Failed":[""],"Subscribe up to newsletter":[""],"Subscribed":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"New":[""],"Preview":[""],"Import":[""],"Pro":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Back to Library":[""],"Open in new tab":[""],"Import Template":[""],"Loading icon":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"View Templates":[""],"Exit preview":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}} -
analogwp-templates/tags/2.0.4/languages/ang.pot
r2901121 r2914614 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Style Kits for Elementor 2.0. 3\n"5 "Project-Id-Version: Style Kits for Elementor 2.0.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/analogwp-templates\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-0 4-19T09:35:00+00:00\n"12 "POT-Creation-Date: 2023-05-17T03:28:03+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" … … 109 109 msgstr "" 110 110 111 #: inc/api/class-local.php:386 112 msgid "No options key provided." 113 msgstr "" 114 111 115 #: inc/api/class-local.php:392 112 116 msgid "Setting updated." … … 139 143 #: inc/api/class-local.php:526 140 144 msgid "Invalid Style Kit ID." 145 msgstr "" 146 147 #: inc/api/class-local.php:548 148 #: inc/api/class-local.php:615 149 msgid "Invalid license provided." 141 150 msgstr "" 142 151 -
analogwp-templates/tags/2.0.4/third-party/vendor/autoload.php
r2901121 r2914614 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f::getLoader();25 return ComposerAutoloaderInit74c8ebbebf813671e30825f197313983::getLoader(); -
analogwp-templates/tags/2.0.4/third-party/vendor/composer/autoload_real.php
r2901121 r2914614 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f5 class ComposerAutoloaderInit74c8ebbebf813671e30825f197313983 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit74c8ebbebf813671e30825f197313983', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit74c8ebbebf813671e30825f197313983', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit b3c40804a4669dbcbbda6d9c0d361f1f::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit74c8ebbebf813671e30825f197313983::getInitializer($loader)); 31 31 32 32 $loader->setClassMapAuthoritative(true); -
analogwp-templates/tags/2.0.4/third-party/vendor/composer/autoload_static.php
r2901121 r2914614 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit b3c40804a4669dbcbbda6d9c0d361f1f7 class ComposerStaticInit74c8ebbebf813671e30825f197313983 8 8 { 9 9 public static $classMap = array ( … … 25 25 { 26 26 return \Closure::bind(function () use ($loader) { 27 $loader->classMap = ComposerStaticInit b3c40804a4669dbcbbda6d9c0d361f1f::$classMap;27 $loader->classMap = ComposerStaticInit74c8ebbebf813671e30825f197313983::$classMap; 28 28 29 29 }, null, ClassLoader::class); -
analogwp-templates/trunk/analogwp-templates.php
r2901121 r2914614 11 11 * Plugin URI: https://analogwp.com/ 12 12 * Description: Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets. 13 * Version: 2.0. 313 * Version: 2.0.4 14 14 * Author: AnalogWP 15 15 * Author URI: https://analogwp.com/ … … 17 17 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 18 18 * Text Domain: ang 19 * Elementor tested up to: 3.1 2.120 * Elementor Pro tested up to: 3.1 2.219 * Elementor tested up to: 3.13.2 20 * Elementor Pro tested up to: 3.13.1 21 21 */ 22 22 … … 26 26 define( 'ANG_PHP_MINIMUM', '7.0' ); 27 27 define( 'ANG_WP_MINIMUM', '5.9' ); 28 define( 'ANG_VERSION', '2.0. 3' );28 define( 'ANG_VERSION', '2.0.4' ); 29 29 define( 'ANG_PLUGIN_FILE', __FILE__ ); 30 30 define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) ); -
analogwp-templates/trunk/assets/css/admin-settings.css
r2901121 r2914614 181 181 border: 1px solid #dcdcdc; 182 182 padding: 5px 30px 25px; 183 } 184 185 .ang .sidebar .social { 186 display: flex; 187 gap: 15px; 183 188 } 184 189 -
analogwp-templates/trunk/inc/Utils.php
r2865003 r2914614 698 698 } 699 699 700 $kit_id = $document->get_settings( 'ang_action_tokens' );700 $kit_id = $document->get_settings( 'ang_action_tokens' ); 701 701 702 702 // Check if this is a valid kit or not. … … 817 817 return self::has_pro() && 'valid' === $status; 818 818 } 819 820 /**821 * Returns true if the Elementor Pro plugin is active.822 *823 * @return bool824 */825 public static function has_elementor_pro() {826 return defined( 'ELEMENTOR_PRO_VERSION' );827 }828 829 /**830 * Returns true if the WooCommerce plugin is active.831 *832 * @return bool833 */834 public static function has_woocommerce() {835 return defined( 'WOOCOMMERCE_VERSION' );836 }837 819 } 838 820 -
analogwp-templates/trunk/inc/api/class-local.php
r2824271 r2914614 384 384 385 385 if ( ! $key ) { 386 return new WP_Error( 'settings_error', 'No options key provided.');386 return new WP_Error( 'settings_error', __( 'No options key provided.', 'ang' ) ); 387 387 } 388 388 … … 546 546 if ( is_array( $kit ) && isset( $kit['id'] ) ) { 547 547 if ( isset( $kit['is_pro'] ) && $kit['is_pro'] && ! Utils::has_valid_license() ) { 548 return new WP_Error( 'kit_import_error', 'Invalid license provided.');548 return new WP_Error( 'kit_import_error', __( 'Invalid license provided.', 'ang' ) ); 549 549 } 550 550 … … 613 613 614 614 if ( isset( $block['is_pro'] ) && $block['is_pro'] && ! Utils::has_valid_license() ) { 615 return new WP_Error( 'block_import_error', 'Invalid license provided.');615 return new WP_Error( 'block_import_error', __( 'Invalid license provided.', 'ang' ) ); 616 616 } 617 617 -
analogwp-templates/trunk/inc/elementor/Google_Fonts.php
r2465494 r2914614 59 59 $fonts = json_decode( $fonts, true ); 60 60 if ( count( $fonts ) ) { 61 $formatted_fonts = [];61 $formatted_fonts = array(); 62 62 63 63 foreach ( $fonts as $font ) { -
analogwp-templates/trunk/inc/elementor/kit/Instance_List_Table.php
r2409102 r2914614 425 425 * Include the columns which can be sortable. 426 426 * 427 * @return Array$sortable_columns Return array of sortable columns.427 * @return array[] $sortable_columns Return array of sortable columns. 428 428 */ 429 429 public function get_sortable_columns() { … … 471 471 } 472 472 473 echo '<style type="text/css">';473 echo '<style>'; 474 474 echo '.wp-list-table .column-kit { width: 10%; }'; 475 475 echo '.wp-list-table .column-type { width: 10%; }'; -
analogwp-templates/trunk/inc/settings/views/html-admin-settings-gopro.php
r2859992 r2914614 12 12 13 13 <div class="gopro-content"> 14 <h1 class="tab-heading"><?php _e( 'Transform your design workflow in Elementor with Style Kits PRO', 'ang' ); ?></h1>14 <h1 class="tab-heading"><?php esc_html_e( 'Transform your design workflow in Elementor with Style Kits PRO', 'ang' ); ?></h1> 15 15 <p>Excited with the free version of Style Kits? Try out Style Kits PRO and optimise your Elementor design workflow with more features:</p> 16 16 <ul> 17 <li><?php _e( 'Unlimited access to the container-based pattern library', 'ang' ); ?></li>18 <li><?php _e( 'Unlimited access to the entire collection of Global theme style presets', 'ang' ); ?></li>19 <li><?php _e( 'Unlock up to 48 Global Style Kit Fonts and Colors', 'ang' ); ?></li>20 <li><?php _e( 'Unlock up to 24 container spacing presets', 'ang' ); ?></li>21 <li><?php _e( 'Hide any Style Kit reference from your clients, based on user roles', 'ang' ); ?></li>22 <li><?php _e( 'Style Kits front-end switcher', 'ang' ); ?></li>23 <li><?php _e( 'Selectively de-activate Style Kits Panels from the site settings sidebar', 'ang' ); ?></li>17 <li><?php esc_html_e( 'Unlimited access to the container-based pattern library', 'ang' ); ?></li> 18 <li><?php esc_html_e( 'Unlimited access to the entire collection of Global theme style presets', 'ang' ); ?></li> 19 <li><?php esc_html_e( 'Unlock up to 48 Global Style Kit Fonts and Colors', 'ang' ); ?></li> 20 <li><?php esc_html_e( 'Unlock up to 24 container spacing presets', 'ang' ); ?></li> 21 <li><?php esc_html_e( 'Hide any Style Kit reference from your clients, based on user roles', 'ang' ); ?></li> 22 <li><?php esc_html_e( 'Style Kits front-end switcher', 'ang' ); ?></li> 23 <li><?php esc_html_e( 'Selectively de-activate Style Kits Panels from the site settings sidebar', 'ang' ); ?></li> 24 24 </ul> 25 <p><?php _e( '.. and much more.', 'ang' ); ?></p>25 <p><?php esc_html_e( '.. and much more.', 'ang' ); ?></p> 26 26 <a href="<?php echo esc_url( 'https://analogwp.com/pricing/?utm_medium=plugin&utm_source=library&utm_campaign=style+kits+pro' ); ?>" class="ang-button button-primary" target="_blank"><?php esc_html_e( 'Explore Style Kits Pro', 'ang' ); ?></a> 27 27 </div> -
analogwp-templates/trunk/inc/settings/views/html-admin-settings.php
r2859992 r2914614 16 16 17 17 $tab_exists = isset( $tabs[ $current_tab ] ) || has_action( 'ang_sections_' . $current_tab ) || has_action( 'ang_settings_' . $current_tab ) || has_action( 'ang_settings_tabs_' . $current_tab ); 18 $current_tab_label = isset( $tabs[ $current_tab ] ) ? $tabs[ $current_tab ] :'';18 $current_tab_label = $tabs[ $current_tab ] ?? ''; 19 19 20 20 global $current_user; -
analogwp-templates/trunk/languages/ang-analogwp-app.json
r2901121 r2914614 1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""]," Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container experiment":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers experiment in Elementor.":[""],"Container experiment is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">●</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest that you don’t use these features on a production site. %s about how this works.":[""],"Container-based Library":[""],"Get early access to the upcoming container-based library of Patterns. You need to have the Containers experiment activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"More Info":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Save changes":[""],"Upgrade to Style Kits Pro with a 15% discount":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Join our Facebook group":[""],"Get insights, tips and updates in our facebook community.":[""],"Join now":[""],"Sign up for email updates":[""],"Stay in the loop with Style Kits development by signing up to our newsletter.":[""],"Sign me up":[""],"By signing up you agree to our":[""],"privacy and terms":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Subscribing":[""],"Failed":[""],"Subscribe up to newsletter":[""],"Subscribed":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"New":[""],"Preview":[""],"Import":[""],"Pro":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Back to Library":[""],"Open in new tab":[""],"Import Template":[""],"Loading icon":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"View Templates":[""],"Exit preview":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}}1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""],"No options key provided.":[""],"Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid license provided.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container experiment":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers experiment in Elementor.":[""],"Container experiment is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">●</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest that you don’t use these features on a production site. %s about how this works.":[""],"Container-based Library":[""],"Get early access to the upcoming container-based library of Patterns. You need to have the Containers experiment activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"More Info":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Save changes":[""],"Upgrade to Style Kits Pro with a 15% discount":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Join our Facebook group":[""],"Get insights, tips and updates in our facebook community.":[""],"Join now":[""],"Sign up for email updates":[""],"Stay in the loop with Style Kits development by signing up to our newsletter.":[""],"Sign me up":[""],"By signing up you agree to our":[""],"privacy and terms":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Subscribing":[""],"Failed":[""],"Subscribe up to newsletter":[""],"Subscribed":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"New":[""],"Preview":[""],"Import":[""],"Pro":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Back to Library":[""],"Open in new tab":[""],"Import Template":[""],"Loading icon":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"View Templates":[""],"Exit preview":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}} -
analogwp-templates/trunk/languages/ang.pot
r2901121 r2914614 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Style Kits for Elementor 2.0. 3\n"5 "Project-Id-Version: Style Kits for Elementor 2.0.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/analogwp-templates\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-0 4-19T09:35:00+00:00\n"12 "POT-Creation-Date: 2023-05-17T03:28:03+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" … … 109 109 msgstr "" 110 110 111 #: inc/api/class-local.php:386 112 msgid "No options key provided." 113 msgstr "" 114 111 115 #: inc/api/class-local.php:392 112 116 msgid "Setting updated." … … 139 143 #: inc/api/class-local.php:526 140 144 msgid "Invalid Style Kit ID." 145 msgstr "" 146 147 #: inc/api/class-local.php:548 148 #: inc/api/class-local.php:615 149 msgid "Invalid license provided." 141 150 msgstr "" 142 151 -
analogwp-templates/trunk/third-party/vendor/autoload.php
r2901121 r2914614 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f::getLoader();25 return ComposerAutoloaderInit74c8ebbebf813671e30825f197313983::getLoader(); -
analogwp-templates/trunk/third-party/vendor/composer/autoload_real.php
r2901121 r2914614 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f5 class ComposerAutoloaderInit74c8ebbebf813671e30825f197313983 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit74c8ebbebf813671e30825f197313983', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit b3c40804a4669dbcbbda6d9c0d361f1f', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit74c8ebbebf813671e30825f197313983', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit b3c40804a4669dbcbbda6d9c0d361f1f::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit74c8ebbebf813671e30825f197313983::getInitializer($loader)); 31 31 32 32 $loader->setClassMapAuthoritative(true); -
analogwp-templates/trunk/third-party/vendor/composer/autoload_static.php
r2901121 r2914614 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit b3c40804a4669dbcbbda6d9c0d361f1f7 class ComposerStaticInit74c8ebbebf813671e30825f197313983 8 8 { 9 9 public static $classMap = array ( … … 25 25 { 26 26 return \Closure::bind(function () use ($loader) { 27 $loader->classMap = ComposerStaticInit b3c40804a4669dbcbbda6d9c0d361f1f::$classMap;27 $loader->classMap = ComposerStaticInit74c8ebbebf813671e30825f197313983::$classMap; 28 28 29 29 }, null, ClassLoader::class);
Note: See TracChangeset
for help on using the changeset viewer.