├── .DS_Store ├── .gitignore ├── LICENSE ├── Logo.png ├── README.md ├── brighty-core-plugin ├── brighty-core-plugin.php ├── composer.json ├── composer.lock ├── docs-and-examples │ └── example-add-feature.php ├── includes │ ├── class-brighty-core-plugin.php │ ├── class.clients.php │ ├── class.domains.php │ └── class.invoices.php ├── templates │ └── settings-page.php └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ └── tgmpa │ └── tgm-plugin-activation │ ├── .editorconfig │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── class-tgm-plugin-activation.php │ ├── composer.json │ ├── example.php │ ├── languages │ ├── tgmpa-cs_CZ.mo │ ├── tgmpa-cs_CZ.po │ ├── tgmpa-de_DE.mo │ ├── tgmpa-de_DE.po │ ├── tgmpa-en_AU.mo │ ├── tgmpa-en_AU.po │ ├── tgmpa-en_CA.mo │ ├── tgmpa-en_CA.po │ ├── tgmpa-en_GB.mo │ ├── tgmpa-en_GB.po │ ├── tgmpa-eo.mo │ ├── tgmpa-eo.po │ ├── tgmpa-es_ES.mo │ ├── tgmpa-es_ES.po │ ├── tgmpa-fr_FR.mo │ ├── tgmpa-fr_FR.po │ ├── tgmpa-he_IL.mo │ ├── tgmpa-he_IL.po │ ├── tgmpa-hr_HR.mo │ ├── tgmpa-hr_HR.po │ ├── tgmpa-it_IT.mo │ ├── tgmpa-it_IT.po │ ├── tgmpa-nl_NL.mo │ ├── tgmpa-nl_NL.po │ ├── tgmpa-pt_BR.mo │ ├── tgmpa-pt_BR.po │ ├── tgmpa-ro_RO.mo │ ├── tgmpa-ro_RO.po │ ├── tgmpa-ru_RU.mo │ ├── tgmpa-ru_RU.po │ ├── tgmpa-sr_RS.mo │ ├── tgmpa-sr_RS.po │ ├── tgmpa-sv_SE.mo │ ├── tgmpa-sv_SE.po │ └── tgmpa.pot │ ├── phpcs.xml │ └── plugins │ └── tgm-example-plugin.zip └── docker-compose.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | wp/ 2 | database/ 3 | 4 | -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/Logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 |

Brighty - Web Hosting Automation, Billing and Provisioning Platform for the Sane Hosts

6 | 7 | 8 | :wave: Hi There! We are creating a production-level "WHMCS Alternative" with integrated billing, automation and provisioning Platform for web hosters. This project aims to give you a usable and extendable platform with minimal but all required features to run a web design agency or a hosting company. 9 | 10 | 11 |
12 | 13 | ![PULL REQUEST](https://img.shields.io/badge/contributions-welcome-green) ![status](https://img.shields.io/badge/Status-Not%20Usable-red) ![PULL REQUEST](https://img.shields.io/badge/license-MIT-blue) ![PHP Version Require](http://poser.pugx.org/phpunit/phpunit/require/php) ![Laravel](https://img.shields.io/badge/framework-WordPress-blue) ![BoxBilling Size](https://img.shields.io/github/repo-size/iqltechnologies/brighty.svg?style=popout) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/iqltechnologies/brighty/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/iqltechnologies/brighty/?branch=main) 14 | 15 |
16 | 17 | ## Every one is fed up of paid web hosting automation software! 18 | 19 | So What do we do? The answer is to create something together. In our experience, current alternatives are not only outdated (and in code debt) but also needs to be built keeping in view the current needs of the industry. We want to create something which we will use ourselves in production. 20 | 21 | Not Limited to Hosting, it can be used for any kind of automated billing and provisioning business. 22 | 23 | ## Architecture: Keeping it simple with WordPress and WooCommerce 24 | 25 | This app is made up of four different and independent parts. These parts are envisioned to be built independednt of each other and each should work on a separate hosting accounts/server or on same hosting account. To achieve this, all necessary integrations are built-in. 26 | 27 | - **Website** : This is where users will be able to purchase your products such as domain name, website, packages, hosting etc; (WordPress Theme and Static HTML Site integration Code) 28 | - **Client Area**: This is where your customers will be able to login and manage their accounts, view invoices, domain names, hosting and login to control panels etc.; (Woocommerce My Account Area) 29 | - **Backend / API**: This is the API used by Website, Admin Area, and Client Area to fetch and store data; (WordPress REST API) 30 | - **Admin Area** : used to manage and control your products, orders, users, servers, domains etc.; (WordPress Dashboard) 31 | 32 | 33 | ## :date: Release Date for V1.0 (Tentative) 34 | 35 | We are targeting to release it by 1 Nov 2023. 36 | 37 | ## Status: Not Usable. Just Started. We are in early development/ideation stage. 38 | 39 | Looking for Core group. 40 | 41 | 42 | 43 | ## Notes & Decisions 44 | 45 | It was initially planned to be developed using laravel or codeigniter however upon realizing the fact that wordpress & woocommerce have quicker development time, more flexibility and a vast amount of available plugins, I decided that it is a wiser decision to go with using wordpress as a backend. 46 | 47 | The only issue here seems to be scalability issues howver that is accounted for because our frontend is basically plain & simple old html & css. The user dashboard and admin dashboards are also accounted for in other ways. 48 | 49 | 50 | 51 | ### :handshake: Join Our Community 52 | 53 | 54 | 55 | 56 | ## :bicyclist: Current Goals 57 | 58 | - Integrate a login script - allows you to create a login popup and logged-in user bar on any site by interting a few lines of js code 59 | - User Registration | Supported: Social Media, Mobile, Email, Email Verification, SMS Verification etc. 60 | - User Dashboard / Client Panel 61 | 62 | 63 | 64 | 65 | 66 | 67 |
Domain Name :globe_with_meridians: :Hosting :desktop_computer:Invoice :page_with_curl:
Automated Registration | Supported : LogicboxesCWP automated ProvisioningCreate Invoice
Name Server UpdateHosting Package PurchaseInvoice Payment
Domain Contact UpdateOne Click Hosting Control Panel LoginAutomated Invoice Generation
Domain Contact UpdateHosting Renwal ReminderInvoice Payment Reminder
68 | 69 | 70 | **Payment Gateways** :credit_card: 71 | - Paypal - RazorPay - Skrill - Stripe 72 | 73 | ## :electric_plug: Pluggable Architecture 74 | 75 | Using WordPress-Like Plugin Architecture allows you to develop plugins, search and activate them from the marketplace 76 | 77 | ## :trophy: Developing 78 | 79 | Fork and Use docker compose in this repo. Database and Code is included together. Pull Request are welcome 80 | 81 | ## Development Stacks: 82 | 83 | - WordPress 84 | - MySQL 85 | - Bootstrap 86 | 87 | # Requirements 88 | ## Client Area and Admin Area 89 | Client Area and Admin Area have no special requirement as they are static HTML 90 | 91 | ## Backend (API) 92 | It is built on WordPress; PHP version 7.3 or newer with following extensions intalled: *intl*, *mbstring* php-json, php-mysqlnd, php-xml. A database is also required. 93 | 94 | # Installation Instruction 95 | 96 | You can install Client Area, Admin Area, Website and API separately as well as together(easy). Follow these steps carefully 97 | 98 | ## Option 1 : One Click Installer 99 | 100 | - Download Brighty.zip and Upload **one level above public directory** (generally public_html on cpanel and /var/www/html elsewhere; do not upload zip to public_html or html instead one level up eg. www). 101 | - In your browser open your-url.tld/install and follow on-screen instruction 102 | 103 | ## Option 2 : Manual Install 104 | 105 | - For latest development version download project as zip or download a stable release(Recommended) 106 | - Go to public directory of your hosting (generally public_html on cpanel and /var/www/html elsewhere) and upload the contents of public folder there. 107 | - edit brighty-config.json and place your brighty backend url there (with protocol and trailing slash) Frontend installation is complete. 108 | - to install backend upload everything including public directory one level above public. make sure contents of public directory are public and nothing else otherwise your system will be open to everyone for playing aka hacking and expliting. 109 | - if you want to keep your backend on the same domain/directory, move to next step otherwise if your backend is separated then remove everything other than index.php and .htaccess files from project public folder. 110 | - IMPORTANT : remove .htaccess and index.php from project root (/brighty folder) regardless of your previous step as it is there for helping us during development only 111 | - Login to your frontend with 112 | 113 | ## Installation Note: 114 | 115 | - there is no specific admin url. To access admin area you need to login as a normal urser with admin credentials 116 | 117 | ## :green_book: License 118 | 119 | Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) 120 | 121 | 122 | 123 | 124 | # Documentation 125 | 126 | 127 | - This plugin registers a page template and uses it. The template is located in /templates 128 | - The user dashboard page is located on /templates/user-dashboard.php 129 | - most functions code is located on /functions/do.php 130 | 131 | **Registration Page**: 132 | Create a page named register or anything. 133 | When creating the page select template - "Brighty Full Width if you want to use full width". @/templates/full-width.php 134 | Insert a shortcode on that page [brighty_register_form] @function/do.php : @/template/woocommerce/register.php 135 | the code for registration form is located on 136 | 137 | 138 | 139 | 140 | # TODO 141 | - kirki plugin 142 | - send email on account details update 143 | - highlight field in registration form on error 144 | - Use endpoint url function instead of hardcoding it for woocommerce 145 | - Use endpoint urls in ajax requests on list notifications page 146 | - combile js functions in same file for manageability -------------------------------------------------------------------------------- /brighty-core-plugin/brighty-core-plugin.php: -------------------------------------------------------------------------------- 1 | =5.2" 25 | }, 26 | "type": "library", 27 | "autoload": { 28 | "files": [ 29 | "class-tgm-plugin-activation.php" 30 | ] 31 | }, 32 | "notification-url": "https://packagist.org/downloads/", 33 | "license": [ 34 | "GPL-2.0+" 35 | ], 36 | "authors": [ 37 | { 38 | "name": "Thomas Griffin", 39 | "homepage": "http://thomasgriffinmedia.com", 40 | "role": "Developer" 41 | }, 42 | { 43 | "name": "Gary Jones", 44 | "homepage": "https://github.com/GaryJones", 45 | "role": "Developer" 46 | }, 47 | { 48 | "name": "Juliette Reinders Folmer", 49 | "homepage": "https://github.com/jrfnl", 50 | "role": "Developer" 51 | } 52 | ], 53 | "description": "TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins).", 54 | "homepage": "http://tgmpluginactivation.com", 55 | "keywords": [ 56 | "activation", 57 | "library", 58 | "plugins", 59 | "theme", 60 | "wordpress" 61 | ], 62 | "support": { 63 | "issues": "https://github.com/TGMPA/TGM-Plugin-Activation/issues", 64 | "source": "https://github.com/TGMPA/TGM-Plugin-Activation" 65 | }, 66 | "time": "2016-05-19T15:46:51+00:00" 67 | } 68 | ], 69 | "packages-dev": [], 70 | "aliases": [], 71 | "minimum-stability": "stable", 72 | "stability-flags": [], 73 | "prefer-stable": false, 74 | "prefer-lowest": false, 75 | "platform": [], 76 | "platform-dev": [], 77 | "plugin-api-version": "2.3.0" 78 | } 79 | -------------------------------------------------------------------------------- /brighty-core-plugin/docs-and-examples/example-add-feature.php: -------------------------------------------------------------------------------- 1 | plugin = $plugin; 18 | } 19 | 20 | public function init() { 21 | // Code for the additional feature 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /brighty-core-plugin/includes/class-brighty-core-plugin.php: -------------------------------------------------------------------------------- 1 | core_features = array( 14 | 'clients' => 'BrightyCorePlugin\Clients_Feature', 15 | 'invoices' => 'BrightyCorePlugin\Invoices_Feature', 16 | 'domains' => 'BrightyCorePlugin\Domains_Feature', 17 | // 'hosting_accounts' => 'BrightyCorePlugin\Hosting_Accounts_Feature', 18 | // 'projects' => 'BrightyCorePlugin\Projects_Feature', 19 | // 'leads' => 'BrightyCorePlugin\Leads_Feature', 20 | ); 21 | 22 | //enable all modules by default @options page 23 | if (get_option('brighty_core_plugin_enabled_features') === false) { 24 | update_option('brighty_core_plugin_enabled_features', $this->core_features); 25 | } 26 | // Load enabled features from options 27 | $this->enabled_features = get_option('brighty_core_plugin_enabled_features', array()); 28 | 29 | // Register hooks 30 | add_action('admin_menu', array($this, 'add_settings_page')); 31 | add_action('admin_init', array($this, 'register_settings')); 32 | add_action( 'tgmpa_register', array($this, 'brighty_core_register_required_plugins')); 33 | 34 | // Initialize core features 35 | $this->init_core_features(); 36 | 37 | // Initialize additional features registered by other plugins 38 | $this->init_additional_features(); 39 | } 40 | 41 | public function sanitize_enabled_features($input) { 42 | 43 | // Filter the input to keep only valid core feature values 44 | $input = array_intersect($input, $this->$core_features); 45 | 46 | return $input; 47 | } 48 | 49 | public function brighty_core_register_required_plugins(){ 50 | /* See TGMPA Documentation for details 51 | * Array of plugin arrays. Required keys are name and slug. 52 | * If the source is NOT from the .org repo, then source is also required. 53 | */ 54 | $plugins = array( 55 | array( 56 | 'name' => 'Metabox', 57 | 'slug' => 'meta-box', 58 | 'required' => true, 59 | ), 60 | 61 | array( 62 | 'name' => 'Woocommerce', 63 | 'slug' => 'woocommerce', 64 | 'required' => true, 65 | ), 66 | 67 | array( 68 | 'name' => 'Email Verification for WooCommerce', 69 | 'slug' => 'woocommerce', 70 | 'required' => true, 71 | ), 72 | array( 73 | 'name' => 'TeraWallet', 74 | 'slug' => 'woo-wallet', 75 | 'required' => true, 76 | ) 77 | , 78 | array( 79 | 'name' => 'WP Mail Log', 80 | 'slug' => 'wp-mail-log', 81 | 'required' => true, 82 | ), 83 | ); 84 | 85 | $config = array( 86 | 'id' => 'brighty-core', // Unique ID for hashing notices for multiple instances of TGMPA. 87 | 'default_path' => '', // Default absolute path to bundled plugins. 88 | 'menu' => 'tgmpa-install-plugins', // Menu slug. 89 | 'parent_slug' => 'plugins.php', // Parent menu slug. 90 | 'capability' => 'manage_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 91 | 'has_notices' => true, // Show admin notices or not. 92 | 'dismissable' => false, // If false, a user cannot dismiss the nag message. 93 | 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 94 | 'is_automatic' => true, // Automatically activate plugins after installation or not. 95 | 'message' => '', // Message to output right before the plugins table. 96 | ); 97 | 98 | tgmpa( $plugins, $config ); 99 | } 100 | 101 | public function add_settings_page() { 102 | add_options_page( 103 | 'Brighty Settings', 104 | 'Brighty Core', 105 | 'manage_options', 106 | 'brighty-core-settings', 107 | array($this, 'render_settings_page') 108 | ); 109 | } 110 | 111 | public function render_settings_page() { 112 | include(BRIGHTY_PLUGIN_DIR_PATH . 'templates/settings-page.php'); 113 | } 114 | 115 | public function register_settings() { 116 | register_setting('brighty_core_plugin_options', 'brighty_core_plugin_enabled_features'); 117 | } 118 | 119 | public function is_feature_enabled($feature) { 120 | if(is_array($this->enabled_features)){ 121 | 122 | return in_array($feature, $this->enabled_features); 123 | } 124 | return false; 125 | } 126 | 127 | 128 | private function init_core_features() { 129 | // Include core feature classes and initialize them if enabled 130 | foreach ($this->core_features as $feature_name => $class_name) { 131 | // Include the class file conditionally based on the feature status 132 | if ($this->is_feature_enabled($feature_name)) { 133 | require_once(BRIGHTY_PLUGIN_DIR_PATH . 'includes/class.' . strtolower($feature_name) . '.php'); 134 | 135 | // Initialize the feature class 136 | $feature_instance = new $class_name($this); 137 | $feature_instance->init(); 138 | } 139 | } 140 | 141 | } 142 | 143 | 144 | 145 | public function register_additional_feature($feature_class) { 146 | $this->additional_features[] = $feature_class; 147 | } 148 | 149 | private function init_additional_features() { 150 | foreach ($this->additional_features as $feature_class) { 151 | if (class_exists($feature_class) && in_array('Brighty_Core_Feature_Interface', class_implements($feature_class))) { 152 | $feature = new $feature_class($this); 153 | $feature->init(); 154 | } 155 | } 156 | } 157 | } 158 | -------------------------------------------------------------------------------- /brighty-core-plugin/includes/class.clients.php: -------------------------------------------------------------------------------- 1 | plugin = $plugin; 9 | } 10 | 11 | public function init() { 12 | // Register the custom post type 'Invoices' 13 | add_action('init', array($this, 'register_custom_post_type')); 14 | } 15 | 16 | public function register_custom_post_type() { 17 | $labels = [ 18 | 'name' => esc_html__( 'Clients', 'brighty' ), 19 | 'singular_name' => esc_html__( 'Client', 'brighty' ), 20 | 'add_new' => esc_html__( 'Add New', 'brighty' ), 21 | 'add_new_item' => esc_html__( 'Add new client', 'brighty' ), 22 | 'edit_item' => esc_html__( 'Edit Client', 'brighty' ), 23 | 'new_item' => esc_html__( 'New Client', 'brighty' ), 24 | 'view_item' => esc_html__( 'View Client', 'brighty' ), 25 | 'view_items' => esc_html__( 'View Clients', 'brighty' ), 26 | 'search_items' => esc_html__( 'Search Clients', 'brighty' ), 27 | 'not_found' => esc_html__( 'No clients found', 'brighty' ), 28 | 'not_found_in_trash' => esc_html__( 'No clients found in Trash', 'brighty' ), 29 | 'parent_item_colon' => esc_html__( 'Parent Client:', 'brighty' ), 30 | 'all_items' => esc_html__( 'All Clients', 'brighty' ), 31 | 'archives' => esc_html__( 'Client Archives', 'brighty' ), 32 | 'attributes' => esc_html__( 'Client Attributes', 'brighty' ), 33 | 'insert_into_item' => esc_html__( 'Insert into client', 'brighty' ), 34 | 'uploaded_to_this_item' => esc_html__( 'Uploaded to this client', 'brighty' ), 35 | 'featured_image' => esc_html__( 'Featured image', 'brighty' ), 36 | 'set_featured_image' => esc_html__( 'Set featured image', 'brighty' ), 37 | 'remove_featured_image' => esc_html__( 'Remove featured image', 'brighty' ), 38 | 'use_featured_image' => esc_html__( 'Use as featured image', 'brighty' ), 39 | 'menu_name' => esc_html__( 'Clients', 'brighty' ), 40 | 'filter_items_list' => esc_html__( 'Filter clients list', 'brighty' ), 41 | 'filter_by_date' => esc_html__( '', 'brighty' ), 42 | 'items_list_navigation' => esc_html__( 'Clients list navigation', 'brighty' ), 43 | 'items_list' => esc_html__( 'Clients list', 'brighty' ), 44 | 'item_published' => esc_html__( 'Client published', 'brighty' ), 45 | 'item_published_privately' => esc_html__( 'Client published privately', 'brighty' ), 46 | 'item_reverted_to_draft' => esc_html__( 'Client reverted to draft', 'brighty' ), 47 | 'item_scheduled' => esc_html__( 'Client scheduled', 'brighty' ), 48 | 'item_updated' => esc_html__( 'Client updated', 'brighty' ), 49 | 'text_domain' => esc_html__( 'brighty', 'brighty' ), 50 | ]; 51 | $args = [ 52 | 'label' => esc_html__( 'Clients', 'brighty' ), 53 | 'labels' => $labels, 54 | 'description' => '', 55 | 'public' => true, 56 | 'hierarchical' => false, 57 | 'exclude_from_search' => false, 58 | 'publicly_queryable' => true, 59 | 'show_ui' => true, 60 | 'show_in_nav_menus' => true, 61 | 'show_in_admin_bar' => true, 62 | 'show_in_rest' => true, 63 | 'query_var' => true, 64 | 'can_export' => true, 65 | 'delete_with_user' => true, 66 | 'has_archive' => true, 67 | 'rest_base' => '', 68 | 'show_in_menu' => true, 69 | 'menu_position' => '', 70 | 'menu_icon' => 'dashicons-building', 71 | 'capability_type' => 'post', 72 | 'supports' => ['title', 'comments', 'revisions'], 73 | 'taxonomies' => [], 74 | 'rewrite' => [ 75 | 'with_front' => false, 76 | ], 77 | ]; 78 | 79 | 80 | 81 | // Register the 'Clients' custom post type 82 | register_post_type('client', $args); 83 | } 84 | } 85 | 86 | -------------------------------------------------------------------------------- /brighty-core-plugin/includes/class.domains.php: -------------------------------------------------------------------------------- 1 | plugin = $plugin; 9 | } 10 | 11 | public function init() { 12 | // Register the custom post type 'Invoices' 13 | add_action('init', array($this, 'register_custom_post_type')); 14 | } 15 | 16 | public function register_custom_post_type() { 17 | $labels = [ 18 | 'name' => esc_html__( 'Domains', 'your-textdomain' ), 19 | 'singular_name' => esc_html__( 'Domain', 'your-textdomain' ), 20 | 'add_new' => esc_html__( 'Add New', 'your-textdomain' ), 21 | 'add_new_item' => esc_html__( 'Add new domain', 'your-textdomain' ), 22 | 'edit_item' => esc_html__( 'Edit Domain', 'your-textdomain' ), 23 | 'new_item' => esc_html__( 'New Domain', 'your-textdomain' ), 24 | 'view_item' => esc_html__( 'View Domain', 'your-textdomain' ), 25 | 'view_items' => esc_html__( 'View Domains', 'your-textdomain' ), 26 | 'search_items' => esc_html__( 'Search Domains', 'your-textdomain' ), 27 | 'not_found' => esc_html__( 'No domains found', 'your-textdomain' ), 28 | 'not_found_in_trash' => esc_html__( 'No domains found in Trash', 'your-textdomain' ), 29 | 'parent_item_colon' => esc_html__( 'Parent Domain:', 'your-textdomain' ), 30 | 'all_items' => esc_html__( 'All Domains', 'your-textdomain' ), 31 | 'archives' => esc_html__( 'Domain Archives', 'your-textdomain' ), 32 | 'attributes' => esc_html__( 'Domain Attributes', 'your-textdomain' ), 33 | 'insert_into_item' => esc_html__( 'Insert into domain', 'your-textdomain' ), 34 | 'uploaded_to_this_item' => esc_html__( 'Uploaded to this domain', 'your-textdomain' ), 35 | 'featured_image' => esc_html__( 'Featured image', 'your-textdomain' ), 36 | 'set_featured_image' => esc_html__( 'Set featured image', 'your-textdomain' ), 37 | 'remove_featured_image' => esc_html__( 'Remove featured image', 'your-textdomain' ), 38 | 'use_featured_image' => esc_html__( 'Use as featured image', 'your-textdomain' ), 39 | 'menu_name' => esc_html__( 'Domains', 'your-textdomain' ), 40 | 'filter_items_list' => esc_html__( 'Filter domains list', 'your-textdomain' ), 41 | 'filter_by_date' => esc_html__( '', 'your-textdomain' ), 42 | 'items_list_navigation' => esc_html__( 'Domains list navigation', 'your-textdomain' ), 43 | 'items_list' => esc_html__( 'Domains list', 'your-textdomain' ), 44 | 'item_published' => esc_html__( 'Domain published', 'your-textdomain' ), 45 | 'item_published_privately' => esc_html__( 'Domain published privately', 'your-textdomain' ), 46 | 'item_reverted_to_draft' => esc_html__( 'Domain reverted to draft', 'your-textdomain' ), 47 | 'item_scheduled' => esc_html__( 'Domain scheduled', 'your-textdomain' ), 48 | 'item_updated' => esc_html__( 'Domain updated', 'your-textdomain' ), 49 | 'text_domain' => esc_html__( 'your-textdomain', 'your-textdomain' ), 50 | ]; 51 | $args = [ 52 | 'label' => esc_html__( 'Domains', 'your-textdomain' ), 53 | 'labels' => $labels, 54 | 'description' => '', 55 | 'public' => true, 56 | 'hierarchical' => false, 57 | 'exclude_from_search' => false, 58 | 'publicly_queryable' => true, 59 | 'show_ui' => true, 60 | 'show_in_nav_menus' => true, 61 | 'show_in_admin_bar' => true, 62 | 'show_in_rest' => true, 63 | 'query_var' => true, 64 | 'can_export' => true, 65 | 'delete_with_user' => true, 66 | 'has_archive' => true, 67 | 'rest_base' => '', 68 | 'show_in_menu' => true, 69 | 'menu_position' => '', 70 | 'menu_icon' => 'dashicons-admin-site-alt2', 71 | 'capability_type' => 'post', 72 | 'supports' => ['title'], 73 | 'taxonomies' => [], 74 | 'rewrite' => [ 75 | 'with_front' => false, 76 | ], 77 | ]; 78 | 79 | // Register the 'Invoices' custom post type 80 | register_post_type('domain', $args); 81 | } 82 | } -------------------------------------------------------------------------------- /brighty-core-plugin/includes/class.invoices.php: -------------------------------------------------------------------------------- 1 | plugin = $plugin; 9 | } 10 | 11 | public function init() { 12 | // Register the custom post type 'Invoices' 13 | add_action('init', array($this, 'register_custom_post_type')); 14 | } 15 | 16 | public function register_custom_post_type() { 17 | $labels = [ 18 | 'name' => esc_html__( 'Invoices', 'brighty' ), 19 | 'singular_name' => esc_html__( 'Invoice', 'brighty' ), 20 | 'add_new' => esc_html__( 'Add New', 'brighty' ), 21 | 'add_new_item' => esc_html__( 'Add new invoice', 'brighty' ), 22 | 'edit_item' => esc_html__( 'Edit Invoice', 'brighty' ), 23 | 'new_item' => esc_html__( 'New Invoice', 'brighty' ), 24 | 'view_item' => esc_html__( 'View Invoice', 'brighty' ), 25 | 'view_items' => esc_html__( 'View Invoices', 'brighty' ), 26 | 'search_items' => esc_html__( 'Search Invoices', 'brighty' ), 27 | 'not_found' => esc_html__( 'No invoices found', 'brighty' ), 28 | 'not_found_in_trash' => esc_html__( 'No invoices found in Trash', 'brighty' ), 29 | 'parent_item_colon' => esc_html__( 'Parent Invoice:', 'brighty' ), 30 | 'all_items' => esc_html__( 'All Invoices', 'brighty' ), 31 | 'archives' => esc_html__( 'Invoice Archives', 'brighty' ), 32 | 'attributes' => esc_html__( 'Invoice Attributes', 'brighty' ), 33 | 'insert_into_item' => esc_html__( 'Insert into invoice', 'brighty' ), 34 | 'uploaded_to_this_item' => esc_html__( 'Uploaded to this invoice', 'brighty' ), 35 | 'featured_image' => esc_html__( 'Featured image', 'brighty' ), 36 | 'set_featured_image' => esc_html__( 'Set featured image', 'brighty' ), 37 | 'remove_featured_image' => esc_html__( 'Remove featured image', 'brighty' ), 38 | 'use_featured_image' => esc_html__( 'Use as featured image', 'brighty' ), 39 | 'menu_name' => esc_html__( 'Invoices', 'brighty' ), 40 | 'filter_items_list' => esc_html__( 'Filter invoices list', 'brighty' ), 41 | 'filter_by_date' => esc_html__( '', 'brighty' ), 42 | 'items_list_navigation' => esc_html__( 'Invoices list navigation', 'brighty' ), 43 | 'items_list' => esc_html__( 'Invoices list', 'brighty' ), 44 | 'item_published' => esc_html__( 'Invoice published', 'brighty' ), 45 | 'item_published_privately' => esc_html__( 'Invoice published privately', 'brighty' ), 46 | 'item_reverted_to_draft' => esc_html__( 'Invoice reverted to draft', 'brighty' ), 47 | 'item_scheduled' => esc_html__( 'Invoice scheduled', 'brighty' ), 48 | 'item_updated' => esc_html__( 'Invoice updated', 'brighty' ), 49 | 'text_domain' => esc_html__( 'brighty', 'brighty' ), 50 | ]; 51 | $args = [ 52 | 'label' => esc_html__( 'Invoices', 'brighty' ), 53 | 'labels' => $labels, 54 | 'description' => '', 55 | 'public' => true, 56 | 'hierarchical' => false, 57 | 'exclude_from_search' => false, 58 | 'publicly_queryable' => true, 59 | 'show_ui' => true, 60 | 'show_in_nav_menus' => true, 61 | 'show_in_admin_bar' => true, 62 | 'show_in_rest' => true, 63 | 'query_var' => true, 64 | 'can_export' => true, 65 | 'delete_with_user' => true, 66 | 'has_archive' => true, 67 | 'rest_base' => '', 68 | 'show_in_menu' => true, 69 | 'menu_position' => '', 70 | 'menu_icon' => 'dashicons-index-card', 71 | 'capability_type' => 'post', 72 | 'supports' => ['title', 'revisions', 'author'], 73 | 'taxonomies' => ['product_type'], 74 | 'rewrite' => [ 75 | 'with_front' => false, 76 | ], 77 | ]; 78 | 79 | // Register the 'Invoices' custom post type 80 | register_post_type('invoice', $args); 81 | } 82 | } -------------------------------------------------------------------------------- /brighty-core-plugin/templates/settings-page.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

Enable/Disable Brighty Modules

4 |
5 | 6 | 7 | 8 | 9 | 10 | 16 | 17 | 18 | 19 | 25 | 26 | 27 | 28 | 34 | 35 | 36 | 37 | 43 | 44 | 45 | 46 | 52 | 53 | 54 | 55 | 61 | 62 | 63 |
Clients 11 | 15 |
Invoices 20 | 24 |
Domains 29 | 33 |
Hosting Accounts 38 | 42 |
Projects 47 | 51 |
Leads 56 | 60 |
64 | 65 |
66 |
67 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer; 14 | 15 | use Composer\Autoload\ClassLoader; 16 | use Composer\Semver\VersionParser; 17 | 18 | /** 19 | * This class is copied in every Composer installed project and available to all 20 | * 21 | * See also https://getcomposer.org/doc/07-runtime.md#installed-versions 22 | * 23 | * To require its presence, you can require `composer-runtime-api ^2.0` 24 | * 25 | * @final 26 | */ 27 | class InstalledVersions 28 | { 29 | /** 30 | * @var mixed[]|null 31 | * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array}|array{}|null 32 | */ 33 | private static $installed; 34 | 35 | /** 36 | * @var bool|null 37 | */ 38 | private static $canGetVendors; 39 | 40 | /** 41 | * @var array[] 42 | * @psalm-var array}> 43 | */ 44 | private static $installedByVendor = array(); 45 | 46 | /** 47 | * Returns a list of all package names which are present, either by being installed, replaced or provided 48 | * 49 | * @return string[] 50 | * @psalm-return list 51 | */ 52 | public static function getInstalledPackages() 53 | { 54 | $packages = array(); 55 | foreach (self::getInstalled() as $installed) { 56 | $packages[] = array_keys($installed['versions']); 57 | } 58 | 59 | if (1 === \count($packages)) { 60 | return $packages[0]; 61 | } 62 | 63 | return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); 64 | } 65 | 66 | /** 67 | * Returns a list of all package names with a specific type e.g. 'library' 68 | * 69 | * @param string $type 70 | * @return string[] 71 | * @psalm-return list 72 | */ 73 | public static function getInstalledPackagesByType($type) 74 | { 75 | $packagesByType = array(); 76 | 77 | foreach (self::getInstalled() as $installed) { 78 | foreach ($installed['versions'] as $name => $package) { 79 | if (isset($package['type']) && $package['type'] === $type) { 80 | $packagesByType[] = $name; 81 | } 82 | } 83 | } 84 | 85 | return $packagesByType; 86 | } 87 | 88 | /** 89 | * Checks whether the given package is installed 90 | * 91 | * This also returns true if the package name is provided or replaced by another package 92 | * 93 | * @param string $packageName 94 | * @param bool $includeDevRequirements 95 | * @return bool 96 | */ 97 | public static function isInstalled($packageName, $includeDevRequirements = true) 98 | { 99 | foreach (self::getInstalled() as $installed) { 100 | if (isset($installed['versions'][$packageName])) { 101 | return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); 102 | } 103 | } 104 | 105 | return false; 106 | } 107 | 108 | /** 109 | * Checks whether the given package satisfies a version constraint 110 | * 111 | * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: 112 | * 113 | * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') 114 | * 115 | * @param VersionParser $parser Install composer/semver to have access to this class and functionality 116 | * @param string $packageName 117 | * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package 118 | * @return bool 119 | */ 120 | public static function satisfies(VersionParser $parser, $packageName, $constraint) 121 | { 122 | $constraint = $parser->parseConstraints($constraint); 123 | $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); 124 | 125 | return $provided->matches($constraint); 126 | } 127 | 128 | /** 129 | * Returns a version constraint representing all the range(s) which are installed for a given package 130 | * 131 | * It is easier to use this via isInstalled() with the $constraint argument if you need to check 132 | * whether a given version of a package is installed, and not just whether it exists 133 | * 134 | * @param string $packageName 135 | * @return string Version constraint usable with composer/semver 136 | */ 137 | public static function getVersionRanges($packageName) 138 | { 139 | foreach (self::getInstalled() as $installed) { 140 | if (!isset($installed['versions'][$packageName])) { 141 | continue; 142 | } 143 | 144 | $ranges = array(); 145 | if (isset($installed['versions'][$packageName]['pretty_version'])) { 146 | $ranges[] = $installed['versions'][$packageName]['pretty_version']; 147 | } 148 | if (array_key_exists('aliases', $installed['versions'][$packageName])) { 149 | $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); 150 | } 151 | if (array_key_exists('replaced', $installed['versions'][$packageName])) { 152 | $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); 153 | } 154 | if (array_key_exists('provided', $installed['versions'][$packageName])) { 155 | $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); 156 | } 157 | 158 | return implode(' || ', $ranges); 159 | } 160 | 161 | throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 162 | } 163 | 164 | /** 165 | * @param string $packageName 166 | * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present 167 | */ 168 | public static function getVersion($packageName) 169 | { 170 | foreach (self::getInstalled() as $installed) { 171 | if (!isset($installed['versions'][$packageName])) { 172 | continue; 173 | } 174 | 175 | if (!isset($installed['versions'][$packageName]['version'])) { 176 | return null; 177 | } 178 | 179 | return $installed['versions'][$packageName]['version']; 180 | } 181 | 182 | throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 183 | } 184 | 185 | /** 186 | * @param string $packageName 187 | * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present 188 | */ 189 | public static function getPrettyVersion($packageName) 190 | { 191 | foreach (self::getInstalled() as $installed) { 192 | if (!isset($installed['versions'][$packageName])) { 193 | continue; 194 | } 195 | 196 | if (!isset($installed['versions'][$packageName]['pretty_version'])) { 197 | return null; 198 | } 199 | 200 | return $installed['versions'][$packageName]['pretty_version']; 201 | } 202 | 203 | throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 204 | } 205 | 206 | /** 207 | * @param string $packageName 208 | * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference 209 | */ 210 | public static function getReference($packageName) 211 | { 212 | foreach (self::getInstalled() as $installed) { 213 | if (!isset($installed['versions'][$packageName])) { 214 | continue; 215 | } 216 | 217 | if (!isset($installed['versions'][$packageName]['reference'])) { 218 | return null; 219 | } 220 | 221 | return $installed['versions'][$packageName]['reference']; 222 | } 223 | 224 | throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 225 | } 226 | 227 | /** 228 | * @param string $packageName 229 | * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. 230 | */ 231 | public static function getInstallPath($packageName) 232 | { 233 | foreach (self::getInstalled() as $installed) { 234 | if (!isset($installed['versions'][$packageName])) { 235 | continue; 236 | } 237 | 238 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; 239 | } 240 | 241 | throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 242 | } 243 | 244 | /** 245 | * @return array 246 | * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} 247 | */ 248 | public static function getRootPackage() 249 | { 250 | $installed = self::getInstalled(); 251 | 252 | return $installed[0]['root']; 253 | } 254 | 255 | /** 256 | * Returns the raw installed.php data for custom implementations 257 | * 258 | * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. 259 | * @return array[] 260 | * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} 261 | */ 262 | public static function getRawData() 263 | { 264 | @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); 265 | 266 | if (null === self::$installed) { 267 | // only require the installed.php file if this file is loaded from its dumped location, 268 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 269 | if (substr(__DIR__, -8, 1) !== 'C') { 270 | self::$installed = include __DIR__ . '/installed.php'; 271 | } else { 272 | self::$installed = array(); 273 | } 274 | } 275 | 276 | return self::$installed; 277 | } 278 | 279 | /** 280 | * Returns the raw data of all installed.php which are currently loaded for custom implementations 281 | * 282 | * @return array[] 283 | * @psalm-return list}> 284 | */ 285 | public static function getAllRawData() 286 | { 287 | return self::getInstalled(); 288 | } 289 | 290 | /** 291 | * Lets you reload the static array from another file 292 | * 293 | * This is only useful for complex integrations in which a project needs to use 294 | * this class but then also needs to execute another project's autoloader in process, 295 | * and wants to ensure both projects have access to their version of installed.php. 296 | * 297 | * A typical case would be PHPUnit, where it would need to make sure it reads all 298 | * the data it needs from this class, then call reload() with 299 | * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure 300 | * the project in which it runs can then also use this class safely, without 301 | * interference between PHPUnit's dependencies and the project's dependencies. 302 | * 303 | * @param array[] $data A vendor/composer/installed.php data set 304 | * @return void 305 | * 306 | * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $data 307 | */ 308 | public static function reload($data) 309 | { 310 | self::$installed = $data; 311 | self::$installedByVendor = array(); 312 | } 313 | 314 | /** 315 | * @return array[] 316 | * @psalm-return list}> 317 | */ 318 | private static function getInstalled() 319 | { 320 | if (null === self::$canGetVendors) { 321 | self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); 322 | } 323 | 324 | $installed = array(); 325 | 326 | if (self::$canGetVendors) { 327 | foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 328 | if (isset(self::$installedByVendor[$vendorDir])) { 329 | $installed[] = self::$installedByVendor[$vendorDir]; 330 | } elseif (is_file($vendorDir.'/composer/installed.php')) { 331 | $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; 332 | if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 333 | self::$installed = $installed[count($installed) - 1]; 334 | } 335 | } 336 | } 337 | } 338 | 339 | if (null === self::$installed) { 340 | // only require the installed.php file if this file is loaded from its dumped location, 341 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 342 | if (substr(__DIR__, -8, 1) !== 'C') { 343 | self::$installed = require __DIR__ . '/installed.php'; 344 | } else { 345 | self::$installed = array(); 346 | } 347 | } 348 | $installed[] = self::$installed; 349 | 350 | return $installed; 351 | } 352 | } 353 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Copyright (c) Nils Adermann, Jordi Boggiano 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is furnished 9 | to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | 22 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php', 10 | ); 11 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($baseDir . '/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- 1 | register(true); 35 | 36 | $includeFiles = \Composer\Autoload\ComposerStaticInit3fbe86ace09d89f51745fadd8b601a9a::$files; 37 | foreach ($includeFiles as $fileIdentifier => $file) { 38 | composerRequire3fbe86ace09d89f51745fadd8b601a9a($fileIdentifier, $file); 39 | } 40 | 41 | return $loader; 42 | } 43 | } 44 | 45 | /** 46 | * @param string $fileIdentifier 47 | * @param string $file 48 | * @return void 49 | */ 50 | function composerRequire3fbe86ace09d89f51745fadd8b601a9a($fileIdentifier, $file) 51 | { 52 | if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { 53 | $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; 54 | 55 | require $file; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | __DIR__ . '/..' . '/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php', 11 | ); 12 | 13 | public static $prefixLengthsPsr4 = array ( 14 | 'A' => 15 | array ( 16 | 'Abdullah\\BrightyCorePlugin\\' => 27, 17 | ), 18 | ); 19 | 20 | public static $prefixDirsPsr4 = array ( 21 | 'Abdullah\\BrightyCorePlugin\\' => 22 | array ( 23 | 0 => __DIR__ . '/../..' . '/src', 24 | ), 25 | ); 26 | 27 | public static $classMap = array ( 28 | 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 29 | ); 30 | 31 | public static function getInitializer(ClassLoader $loader) 32 | { 33 | return \Closure::bind(function () use ($loader) { 34 | $loader->prefixLengthsPsr4 = ComposerStaticInit3fbe86ace09d89f51745fadd8b601a9a::$prefixLengthsPsr4; 35 | $loader->prefixDirsPsr4 = ComposerStaticInit3fbe86ace09d89f51745fadd8b601a9a::$prefixDirsPsr4; 36 | $loader->classMap = ComposerStaticInit3fbe86ace09d89f51745fadd8b601a9a::$classMap; 37 | 38 | }, null, ClassLoader::class); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [ 3 | { 4 | "name": "tgmpa/tgm-plugin-activation", 5 | "version": "2.6.1", 6 | "version_normalized": "2.6.1.0", 7 | "source": { 8 | "type": "git", 9 | "url": "https://github.com/TGMPA/TGM-Plugin-Activation.git", 10 | "reference": "c626d0d91fc8ef24916e809c7b79eeafab1c1cac" 11 | }, 12 | "dist": { 13 | "type": "zip", 14 | "url": "https://api.github.com/repos/TGMPA/TGM-Plugin-Activation/zipball/c626d0d91fc8ef24916e809c7b79eeafab1c1cac", 15 | "reference": "c626d0d91fc8ef24916e809c7b79eeafab1c1cac", 16 | "shasum": "" 17 | }, 18 | "require": { 19 | "php": ">=5.2" 20 | }, 21 | "time": "2016-05-19T15:46:51+00:00", 22 | "type": "library", 23 | "installation-source": "dist", 24 | "autoload": { 25 | "files": [ 26 | "class-tgm-plugin-activation.php" 27 | ] 28 | }, 29 | "notification-url": "https://packagist.org/downloads/", 30 | "license": [ 31 | "GPL-2.0+" 32 | ], 33 | "authors": [ 34 | { 35 | "name": "Thomas Griffin", 36 | "homepage": "http://thomasgriffinmedia.com", 37 | "role": "Developer" 38 | }, 39 | { 40 | "name": "Gary Jones", 41 | "homepage": "https://github.com/GaryJones", 42 | "role": "Developer" 43 | }, 44 | { 45 | "name": "Juliette Reinders Folmer", 46 | "homepage": "https://github.com/jrfnl", 47 | "role": "Developer" 48 | } 49 | ], 50 | "description": "TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins).", 51 | "homepage": "http://tgmpluginactivation.com", 52 | "keywords": [ 53 | "activation", 54 | "library", 55 | "plugins", 56 | "theme", 57 | "wordpress" 58 | ], 59 | "support": { 60 | "issues": "https://github.com/TGMPA/TGM-Plugin-Activation/issues", 61 | "source": "https://github.com/TGMPA/TGM-Plugin-Activation" 62 | }, 63 | "install-path": "../tgmpa/tgm-plugin-activation" 64 | } 65 | ], 66 | "dev": true, 67 | "dev-package-names": [] 68 | } 69 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/installed.php: -------------------------------------------------------------------------------- 1 | array( 3 | 'name' => 'abdullah/brighty-core-plugin', 4 | 'pretty_version' => 'dev-main', 5 | 'version' => 'dev-main', 6 | 'reference' => '67eb228cf263cb95e28f2e211bec6e86c51346b4', 7 | 'type' => 'project', 8 | 'install_path' => __DIR__ . '/../../', 9 | 'aliases' => array(), 10 | 'dev' => true, 11 | ), 12 | 'versions' => array( 13 | 'abdullah/brighty-core-plugin' => array( 14 | 'pretty_version' => 'dev-main', 15 | 'version' => 'dev-main', 16 | 'reference' => '67eb228cf263cb95e28f2e211bec6e86c51346b4', 17 | 'type' => 'project', 18 | 'install_path' => __DIR__ . '/../../', 19 | 'aliases' => array(), 20 | 'dev_requirement' => false, 21 | ), 22 | 'tgmpa/tgm-plugin-activation' => array( 23 | 'pretty_version' => '2.6.1', 24 | 'version' => '2.6.1.0', 25 | 'reference' => 'c626d0d91fc8ef24916e809c7b79eeafab1c1cac', 26 | 'type' => 'library', 27 | 'install_path' => __DIR__ . '/../tgmpa/tgm-plugin-activation', 28 | 'aliases' => array(), 29 | 'dev_requirement' => false, 30 | ), 31 | ), 32 | ); 33 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- 1 | = 50200)) { 8 | $issues[] = 'Your Composer dependencies require a PHP version ">= 5.2.0". You are running ' . PHP_VERSION . '.'; 9 | } 10 | 11 | if ($issues) { 12 | if (!headers_sent()) { 13 | header('HTTP/1.1 500 Internal Server Error'); 14 | } 15 | if (!ini_get('display_errors')) { 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { 17 | fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); 18 | } elseif (!headers_sent()) { 19 | echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; 20 | } 21 | } 22 | trigger_error( 23 | 'Composer detected issues in your platform: ' . implode(' ', $issues), 24 | E_USER_ERROR 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | # WordPress Coding Standards 5 | # http://make.wordpress.org/core/handbook/coding-standards/ 6 | 7 | root = true 8 | 9 | [*] 10 | charset = utf-8 11 | end_of_line = lf 12 | indent_size = 4 13 | tab_width = 4 14 | indent_style = tab 15 | insert_final_newline = true 16 | trim_trailing_whitespace = true 17 | 18 | [*.{md,json,yml}] 19 | trim_trailing_whitespace = false 20 | indent_style = space 21 | indent_size = 2 22 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | tools: 2 | php_sim: true 3 | php_pdepend: true 4 | php_analyzer: true 5 | sensiolabs_security_checker: true 6 | 7 | checks: 8 | php: 9 | useless_calls: true 10 | unused_variables: true 11 | unused_properties: true 12 | unused_parameters: true 13 | unused_methods: true 14 | unreachable_code: true 15 | too_many_arguments: true 16 | no_unnecessary_if: true 17 | no_unnecessary_final_modifier: true 18 | no_empty_statements: true 19 | fix_use_statements: 20 | remove_unused: true 21 | preserve_multiple: false 22 | preserve_blanklines: false 23 | order_alphabetically: true 24 | avoid_useless_overridden_methods: true 25 | use_self_instead_of_fqcn: true 26 | uppercase_constants: true 27 | single_namespace_per_use: false 28 | simplify_boolean_return: true 29 | require_scope_for_properties: true 30 | require_scope_for_methods: true 31 | remove_extra_empty_lines: true 32 | psr2_switch_declaration: true 33 | psr2_class_declaration: true 34 | properties_in_camelcaps: false 35 | prefer_while_loop_over_for_loop: true 36 | parameters_in_camelcaps: false 37 | optional_parameters_at_the_end: true 38 | no_underscore_prefix_in_properties: true 39 | no_underscore_prefix_in_methods: true 40 | no_trailing_whitespace: true 41 | no_new_line_at_end_of_file: false 42 | no_error_suppression: false 43 | no_commented_out_code: true 44 | newline_at_end_of_file: true 45 | naming_conventions: 46 | local_variable: '^[a-z][a-z_0-9]*$' 47 | abstract_class_name: ^Abstract|Factory$ 48 | utility_class_name: 'Utils?$' 49 | constant_name: '^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)*$' 50 | property_name: '^[a-z][a-z_0-9]*$' 51 | method_name: '^(?:[a-z]|__)[a-z_0-9]*$' 52 | parameter_name: '^[a-z][a-z_0-9]*$' 53 | interface_name: '^[A-Z][a-zA-Z0-9_]*Interface$' 54 | type_name: '^[A-Z][a-zA-Z0-9_]*$' 55 | exception_name: '^[A-Z][a-zA-Z0-9_]*Exception$' 56 | isser_method_name: '^(?:is|has|should|may|supports)' 57 | function_in_camel_caps: false 58 | fix_line_ending: true 59 | encourage_single_quotes: true 60 | encourage_postdec_operator: true 61 | classes_in_camel_caps: false 62 | blank_line_after_namespace_declaration: true 63 | avoid_todo_comments: true 64 | avoid_perl_style_comments: true 65 | avoid_multiple_statements_on_same_line: true 66 | avoid_length_functions_in_loops: true 67 | avoid_fixme_comments: true 68 | avoid_closing_tag: true 69 | avoid_aliased_php_functions: true 70 | align_assignments: true 71 | duplication: true 72 | sql_injection_vulnerabilities: true 73 | security_vulnerabilities: true 74 | no_eval: true 75 | switch_fallthrough_commented: true 76 | phpunit_assertions: false 77 | overriding_private_members: true 78 | non_commented_empty_catch_block: true 79 | no_short_variable_names: 80 | minimum: '3' 81 | no_short_method_names: 82 | minimum: '3' 83 | no_long_variable_names: 84 | maximum: '30' 85 | no_goto: true 86 | avoid_usage_of_logical_operators: true 87 | return_doc_comments: true 88 | return_doc_comment_if_not_inferrable: true 89 | parameter_doc_comments: true 90 | param_doc_comment_if_not_inferrable: true 91 | more_specific_types_in_doc_comments: false 92 | fix_doc_comments: true 93 | verify_property_names: true 94 | verify_argument_usable_as_reference: true 95 | verify_access_scope_valid: true 96 | variable_existence: true 97 | use_statement_alias_conflict: true 98 | symfony_request_injection: true 99 | precedence_mistakes: true 100 | precedence_in_conditions: true 101 | parameter_non_unique: true 102 | no_property_on_interface: true 103 | no_non_implemented_abstract_methods: true 104 | no_duplicate_arguments: true 105 | missing_arguments: true 106 | method_calls_on_non_object: true 107 | instanceof_class_exists: true 108 | foreach_usable_as_reference: true 109 | foreach_traversable: true 110 | encourage_shallow_comparison: true 111 | closure_use_not_conflicting: true 112 | closure_use_modifiable: true 113 | catch_class_exists: true 114 | avoid_entity_manager_injection: true 115 | avoid_conflicting_incrementers: true 116 | assignment_of_null_return: true 117 | argument_type_checks: true 118 | avoid_unnecessary_concatenation: true 119 | deprecated_code_usage: true 120 | side_effects_or_types: false 121 | require_php_tag_first: true 122 | php5_style_constructor: true 123 | one_class_per_file: false 124 | no_short_open_tag: true 125 | no_global_keyword: true 126 | no_exit: false 127 | avoid_superglobals: false 128 | avoid_duplicate_types: true 129 | avoid_corrupting_byteorder_marks: true 130 | no_debug_code: true 131 | code_rating: true 132 | 133 | coding_style: 134 | php: 135 | indentation: 136 | general: 137 | use_tabs: true 138 | size: 4 139 | switch: 140 | indent_case: true 141 | spaces: 142 | before_parentheses: 143 | function_declaration: false 144 | closure_definition: false 145 | function_call: false 146 | if: true 147 | for: true 148 | while: true 149 | switch: true 150 | catch: true 151 | array_initializer: false 152 | around_operators: 153 | assignment: true 154 | logical: true 155 | equality: true 156 | relational: true 157 | bitwise: true 158 | additive: true 159 | multiplicative: true 160 | shift: true 161 | unary_additive: false 162 | concatenation: true 163 | negation: true 164 | before_left_brace: 165 | class: true 166 | function: true 167 | if: true 168 | else: true 169 | for: true 170 | while: true 171 | do: true 172 | switch: true 173 | try: true 174 | catch: true 175 | finally: true 176 | before_keywords: 177 | else: true 178 | while: true 179 | catch: true 180 | finally: true 181 | within: 182 | brackets: false 183 | array_initializer: true 184 | grouping: true 185 | function_call: true 186 | function_declaration: true 187 | if: true 188 | for: true 189 | while: true 190 | switch: true 191 | catch: true 192 | type_cast: false 193 | ternary_operator: 194 | before_condition: true 195 | after_condition: true 196 | before_alternative: true 197 | after_alternative: true 198 | in_short_version: true 199 | other: 200 | before_comma: false 201 | after_comma: true 202 | before_semicolon: false 203 | after_semicolon: true 204 | after_type_cast: true 205 | braces: 206 | classes_functions: 207 | class: end-of-line 208 | function: end-of-line 209 | closure: end-of-line 210 | if: 211 | opening: end-of-line 212 | always: true 213 | else_on_new_line: false 214 | for: 215 | opening: end-of-line 216 | always: true 217 | while: 218 | opening: end-of-line 219 | always: true 220 | do_while: 221 | opening: end-of-line 222 | always: true 223 | while_on_new_line: false 224 | switch: 225 | opening: end-of-line 226 | try: 227 | opening: end-of-line 228 | catch_on_new_line: false 229 | finally_on_new_line: false 230 | upper_lower_casing: 231 | keywords: 232 | general: lower 233 | constants: 234 | true_false_null: lower 235 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/.travis.yml: -------------------------------------------------------------------------------- 1 | # Travis CI (MIT License) configuration file 2 | # @link https://travis-ci.org/ 3 | 4 | # Use new container based environment 5 | sudo: false 6 | 7 | # Declare project language. 8 | # @link http://about.travis-ci.org/docs/user/languages/php/ 9 | language: php 10 | 11 | # Declare versions of PHP to use. Use one decimal max. 12 | # @link http://docs.travis-ci.com/user/build-configuration/ 13 | matrix: 14 | fast_finish: true 15 | 16 | include: 17 | # Current $required_php_version for WordPress: 5.2.4 18 | # aliased to 5.2.17 19 | - php: '5.2' 20 | # aliased to a recent 5.4.x version 21 | - php: '5.4' 22 | # aliased to a recent 5.6.x version 23 | - php: '5.6' 24 | env: SNIFF=1 25 | # aliased to a recent 7.x version 26 | - php: '7.0' 27 | # aliased to a recent hhvm version 28 | - php: 'hhvm' 29 | 30 | allow_failures: 31 | - php: 'hhvm' 32 | 33 | before_script: 34 | - export PHPCS_DIR=/tmp/phpcs 35 | - export WPCS_DIR=/tmp/wpcs 36 | # Install CodeSniffer for WordPress Coding Standards checks. 37 | - if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git $PHPCS_DIR; fi 38 | # Install WordPress Coding Standards. 39 | - if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git $WPCS_DIR; fi 40 | # Hop into CodeSniffer directory. 41 | - if [[ "$SNIFF" == "1" ]]; then cd $PHPCS_DIR; fi 42 | # Set install path for WordPress Coding Standards. 43 | # @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941 44 | - if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs --config-set installed_paths $WPCS_DIR; fi 45 | # Hop back into project dir. 46 | - if [[ "$SNIFF" == "1" ]]; then cd $TRAVIS_BUILD_DIR; fi 47 | # After CodeSniffer install you should refresh your path. 48 | - if [[ "$SNIFF" == "1" ]]; then phpenv rehash; fi 49 | 50 | 51 | # Run test script commands. 52 | # All commands must exit with code 0 on success. Anything else is considered failure. 53 | script: 54 | # Search for PHP syntax errors. 55 | - find -L . -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l 56 | # WordPress Coding Standards. 57 | # @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards 58 | # @link https://github.com/squizlabs/PHP_CodeSniffer 59 | # All of the usual config flags are held in phpcs.xml 60 | - if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs; fi 61 | 62 | notifications: 63 | email: false 64 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How To Contribute 2 | 3 | Thanks for reading our contribution guidelines. 4 | 5 | The following guidelines for contribution should be followed if you want to submit a pull request. 6 | 7 | ## How To Prepare 8 | 9 | * You need a [GitHub account](https://github.com/signup/free). 10 | * Before reporting a bug or suggesting an improvement, please check the `develop` branch to see if it has already been addressed. 11 | * Duplicate tickets will be closed without hesitation, so please check through existing tickets first to see if someone else has already discussed it. 12 | * Submit an [issue ticket] for your issue if there is not one yet. 13 | * Describe the issue and include steps to reproduce if it's a bug. 14 | * If the issue is a bug, add any relevant JavaScript or PHP error messages. For PHP error messages, a backtrace is preferred. If you don't know how to get one, please [follow these instructions](https://gist.github.com/jrfnl/5925642). 15 | * Include relevant version numbers. 16 | * Additional screenshots or videos are often helpful. 17 | * If you are able and want to fix this, fork the repository on GitHub. 18 | 19 | ## Make Changes 20 | 21 | We use the [git-flow](http://nvie.com/posts/a-successful-git-branching-model/) branching model. Before reporting a bug or new feature, please check the `develop` branch to see if it's already been addressed. 22 | 23 | * In your forked repository, create a topic branch for your upcoming patch. Usually this is based on the `develop` branch. 24 | * For enhancements, name the branch according to the feature e.g. `feature/auto-activate`. 25 | * For un-reported bug fixes, add a `fix-` prefix e.g. `feature/fix-admin-notices`. 26 | * For code that addresses an existing Issue, add the Issue number as a prefix e.g. `feature/123-auto-activate` or `feature/321-fix-admin-notices`. 27 | * Please avoid working directly on the `develop` branch. 28 | * Code should follow the [WordPress Coding Standards for PHP](https://make.wordpress.org/core/handbook/coding-standards/php/). 29 | * Use [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) with the [WordPress Coding Standards](https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards) sniffs to check. Since we use `phpcs.xml`, you should be able to navigate on command line to the root of the repo and just run `phpcs` without any arguments. 30 | * Make commits of logical units and describe them properly. 31 | * Check for unnecessary whitespace with `git diff --check` before committing. 32 | 33 | ## Commit Messages 34 | We suggest you follow best practices for commit messages: 35 | 36 | * Separate subject (first line) from body with a blank line. 37 | * Limit the subject line to 50 characters. 38 | * Capitalize the subject line. 39 | * Do not end the subject line with a period. 40 | * Use the imperative mood in the subject line. 41 | * Wrap the body at 72 characters. 42 | * Use the body to explain _what_ and _why_ versus _how_. 43 | * Please [reference any existing issue](https://help.github.com/articles/closing-issues-via-commit-messages/) in the commit message. 44 | 45 | Read [this post](http://chris.beams.io/posts/git-commit/) for more detail. 46 | 47 | ## Submit Changes 48 | 49 | * Push your changes to a topic branch in your fork of the repository. 50 | * Open a pull request to the original repository and choose the correct original branch (probably `develop`) you want to patch. 51 | * Do not close any issue you referenced in your commit message. 52 | * If you have write access to the repository, do not directly push or merge your own pull-requests. Add the `[reviewmerge]` label when your branch is considered complete and let another team member review your pull request and approve. 53 | 54 | ## License 55 | 56 | All submissions are agreed to be licensed under the same license as present in the repository. 57 | 58 | ## Security 59 | 60 | There is no need to sign-off or GPG sign your commits. Tags (from 2.4.1 onwards) will be GPG signed. 61 | 62 | # Additional Resources 63 | 64 | * [General GitHub documentation](http://help.github.com/) 65 | * [GitHub pull request documentation](http://help.github.com/send-pull-requests/). 66 | * [Read the Issue Guidelines by @necolas](https://github.com/necolas/issue-guidelines/blob/master/CONTRIBUTING.md) for more details, 67 | 68 | [issue ticket]: https://github.com/TGMPA/TGM-Plugin-Activation/issues 69 | [reviewmerge]: https://github.com/TGMPA/TGM-Plugin-Activation/labels/reviewmerge 70 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/README.md: -------------------------------------------------------------------------------- 1 | # TGM Plugin Activation 2 | [![GitHub license](https://img.shields.io/badge/license-GPLv2-blue.svg)](https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/develop/LICENSE.md) 3 | [![Build Status](https://travis-ci.org/TGMPA/TGM-Plugin-Activation.svg?branch=develop)](https://travis-ci.org/TGMPA/TGM-Plugin-Activation) 4 | [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/TGMPA/TGM-Plugin-Activation/badges/quality-score.png?b=develop)](https://scrutinizer-ci.com/g/TGMPA/TGM-Plugin-Activation/?branch=develop) 5 | 6 | 7 | **Lead Developers:** 8 | [Thomas Griffin](https://github.com/thomasgriffin) ([@jthomasgriffin](https://twitter.com/jthomasgriffin)), [Gary Jones](https://github.com/GaryJones) ([@GaryJ](https://twitter.com/GaryJ)), [Juliette Reinders Folmer](https://github.com/jrfnl) ([@jrf_nl](https://twitter.com/jrf_nl)) 9 | **Version:** 2.6.1 10 | **Requires at least:** 3.7.0 11 | **Tested up to:** 4.5.2 12 | 13 | ## Description 14 | 15 | TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins). It allows your users to install, update and even automatically activate plugins in singular or bulk fashion using native WordPress classes, functions and interfaces. You can reference bundled plugins, plugins from the WordPress Plugin Repository or even plugins hosted elsewhere on the internet. 16 | 17 | ## Installation 18 | 19 | 1. Generate a customized version of the latest version of TGMPA based on your intended use-case using the [Custom TGMPA Generator](http://tgmpluginactivation.com/download/). 20 | 2. Extract the class file and place it somewhere in your theme hierarchy. 21 | 3. Add a `require_once` call within `functions.php` (or other file) referencing the class file. 22 | 4. Create a function, hooked to `tgmpa_register`, that registers the plugin and configurations. 23 | 24 | For steps 3 and 4, it is recommended you view, copy and paste the contents of `example.php` 25 | and amend to suit. The `example.php` file is a model for how you should include the class in your theme. 26 | 27 | Detailed documentation on [how to configure TGMPA](http://tgmpluginactivation.com/configuration/) is available on the website. 28 | 29 | __*We strongly recommend the use of the [Custom TGMPA Generator](http://tgmpluginactivation.com/download/) if you intend to use TGMPA in a theme which is to be published via WordPress.org or Themeforest.*__ 30 | 31 | The generated customized version of TGMPA will comply with the Theme Review guidelines and Theme Check. 32 | 33 | ### Composer 34 | 35 | TGM Plugin Activation is also available as a [package](https://packagist.org/packages/tgmpa/tgm-plugin-activation) installable via Composer: 36 | 37 | ~~~sh 38 | composer create-project tgmpa/tgm-plugin-activation --no-dev 39 | ~~~ 40 | 41 | ## Frequently Asked Questions 42 | 43 | See [the FAQ page](http://tgmpluginactivation.com/faq/). 44 | 45 | ## Feedback 46 | 47 | See https://github.com/TGMPA/TGM-Plugin-Activation/issues for current issues and the [guidelines for reporting bugs and enhancements](https://github.com/TGMPA/TGM-Plugin-Activation/wiki/Guidelines-for-reporting-bugs). 48 | 49 | __Note:__ TGM Plugin Activation library authors are not responsible for the *end-user support* for any plugin or theme which uses the library. 50 | 51 | ## Changelog 52 | 53 | See [CHANGELOG.md](CHANGELOG.md). 54 | 55 | ## Contributing to TGM Plugin Activation 56 | 57 | If you have a patch, or stumbled upon an issue with TGM Plugin Activation core, you can contribute this back to the code. Please read our [contributor guidelines](CONTRIBUTING.md) for more information how you can do this. 58 | 59 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tgmpa/tgm-plugin-activation", 3 | "description": "TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins).", 4 | "homepage": "http://tgmpluginactivation.com", 5 | "keywords": ["wordpress","plugins", "theme", "library", "activation"], 6 | "license": "GPL-2.0+", 7 | "authors": [ 8 | { 9 | "name": "Thomas Griffin", 10 | "homepage": "http://thomasgriffinmedia.com", 11 | "role": "Developer" 12 | }, 13 | { 14 | "name": "Gary Jones", 15 | "homepage": "https://github.com/GaryJones", 16 | "role": "Developer" 17 | }, 18 | { 19 | "name": "Juliette Reinders Folmer", 20 | "homepage": "https://github.com/jrfnl", 21 | "role": "Developer" 22 | } 23 | ], 24 | "support": { 25 | "issues": "https://github.com/TGMPA/TGM-Plugin-Activation/issues", 26 | "source": "https://github.com/TGMPA/TGM-Plugin-Activation" 27 | }, 28 | "require": { 29 | "php": ">=5.2" 30 | }, 31 | "autoload": { 32 | "files": ["class-tgm-plugin-activation.php"] 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/example.php: -------------------------------------------------------------------------------- 1 | 'TGM Example Plugin', // The plugin name. 65 | 'slug' => 'tgm-example-plugin', // The plugin slug (typically the folder name). 66 | 'source' => get_stylesheet_directory() . '/lib/plugins/tgm-example-plugin.zip', // The plugin source. 67 | 'required' => true, // If false, the plugin is only 'recommended' instead of required. 68 | 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher. If the plugin version is higher than the plugin version installed, the user will be notified to update the plugin. 69 | 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 70 | 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. 71 | 'external_url' => '', // If set, overrides default API URL and points to an external URL. 72 | 'is_callable' => '', // If set, this callable will be be checked for availability to determine if a plugin is active. 73 | ), 74 | 75 | // This is an example of how to include a plugin from an arbitrary external source in your theme. 76 | array( 77 | 'name' => 'TGM New Media Plugin', // The plugin name. 78 | 'slug' => 'tgm-new-media-plugin', // The plugin slug (typically the folder name). 79 | 'source' => 'https://s3.amazonaws.com/tgm/tgm-new-media-plugin.zip', // The plugin source. 80 | 'required' => true, // If false, the plugin is only 'recommended' instead of required. 81 | 'external_url' => 'https://github.com/thomasgriffin/New-Media-Image-Uploader', // If set, overrides default API URL and points to an external URL. 82 | ), 83 | 84 | // This is an example of how to include a plugin from a GitHub repository in your theme. 85 | // This presumes that the plugin code is based in the root of the GitHub repository 86 | // and not in a subdirectory ('/src') of the repository. 87 | array( 88 | 'name' => 'Adminbar Link Comments to Pending', 89 | 'slug' => 'adminbar-link-comments-to-pending', 90 | 'source' => 'https://github.com/jrfnl/WP-adminbar-comments-to-pending/archive/master.zip', 91 | ), 92 | 93 | // This is an example of how to include a plugin from the WordPress Plugin Repository. 94 | array( 95 | 'name' => 'BuddyPress', 96 | 'slug' => 'buddypress', 97 | 'required' => false, 98 | ), 99 | 100 | // This is an example of the use of 'is_callable' functionality. A user could - for instance - 101 | // have WPSEO installed *or* WPSEO Premium. The slug would in that last case be different, i.e. 102 | // 'wordpress-seo-premium'. 103 | // By setting 'is_callable' to either a function from that plugin or a class method 104 | // `array( 'class', 'method' )` similar to how you hook in to actions and filters, TGMPA can still 105 | // recognize the plugin as being installed. 106 | array( 107 | 'name' => 'WordPress SEO by Yoast', 108 | 'slug' => 'wordpress-seo', 109 | 'is_callable' => 'wpseo_init', 110 | ), 111 | 112 | ); 113 | 114 | /* 115 | * Array of configuration settings. Amend each line as needed. 116 | * 117 | * TGMPA will start providing localized text strings soon. If you already have translations of our standard 118 | * strings available, please help us make TGMPA even better by giving us access to these translations or by 119 | * sending in a pull-request with .po file(s) with the translations. 120 | * 121 | * Only uncomment the strings in the config array if you want to customize the strings. 122 | */ 123 | $config = array( 124 | 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 125 | 'default_path' => '', // Default absolute path to bundled plugins. 126 | 'menu' => 'tgmpa-install-plugins', // Menu slug. 127 | 'parent_slug' => 'themes.php', // Parent menu slug. 128 | 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 129 | 'has_notices' => true, // Show admin notices or not. 130 | 'dismissable' => true, // If false, a user cannot dismiss the nag message. 131 | 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 132 | 'is_automatic' => false, // Automatically activate plugins after installation or not. 133 | 'message' => '', // Message to output right before the plugins table. 134 | 135 | /* 136 | 'strings' => array( 137 | 'page_title' => __( 'Install Required Plugins', 'theme-slug' ), 138 | 'menu_title' => __( 'Install Plugins', 'theme-slug' ), 139 | /* translators: %s: plugin name. * / 140 | 'installing' => __( 'Installing Plugin: %s', 'theme-slug' ), 141 | /* translators: %s: plugin name. * / 142 | 'updating' => __( 'Updating Plugin: %s', 'theme-slug' ), 143 | 'oops' => __( 'Something went wrong with the plugin API.', 'theme-slug' ), 144 | 'notice_can_install_required' => _n_noop( 145 | /* translators: 1: plugin name(s). * / 146 | 'This theme requires the following plugin: %1$s.', 147 | 'This theme requires the following plugins: %1$s.', 148 | 'theme-slug' 149 | ), 150 | 'notice_can_install_recommended' => _n_noop( 151 | /* translators: 1: plugin name(s). * / 152 | 'This theme recommends the following plugin: %1$s.', 153 | 'This theme recommends the following plugins: %1$s.', 154 | 'theme-slug' 155 | ), 156 | 'notice_ask_to_update' => _n_noop( 157 | /* translators: 1: plugin name(s). * / 158 | 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 159 | 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 160 | 'theme-slug' 161 | ), 162 | 'notice_ask_to_update_maybe' => _n_noop( 163 | /* translators: 1: plugin name(s). * / 164 | 'There is an update available for: %1$s.', 165 | 'There are updates available for the following plugins: %1$s.', 166 | 'theme-slug' 167 | ), 168 | 'notice_can_activate_required' => _n_noop( 169 | /* translators: 1: plugin name(s). * / 170 | 'The following required plugin is currently inactive: %1$s.', 171 | 'The following required plugins are currently inactive: %1$s.', 172 | 'theme-slug' 173 | ), 174 | 'notice_can_activate_recommended' => _n_noop( 175 | /* translators: 1: plugin name(s). * / 176 | 'The following recommended plugin is currently inactive: %1$s.', 177 | 'The following recommended plugins are currently inactive: %1$s.', 178 | 'theme-slug' 179 | ), 180 | 'install_link' => _n_noop( 181 | 'Begin installing plugin', 182 | 'Begin installing plugins', 183 | 'theme-slug' 184 | ), 185 | 'update_link' => _n_noop( 186 | 'Begin updating plugin', 187 | 'Begin updating plugins', 188 | 'theme-slug' 189 | ), 190 | 'activate_link' => _n_noop( 191 | 'Begin activating plugin', 192 | 'Begin activating plugins', 193 | 'theme-slug' 194 | ), 195 | 'return' => __( 'Return to Required Plugins Installer', 'theme-slug' ), 196 | 'plugin_activated' => __( 'Plugin activated successfully.', 'theme-slug' ), 197 | 'activated_successfully' => __( 'The following plugin was activated successfully:', 'theme-slug' ), 198 | /* translators: 1: plugin name. * / 199 | 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'theme-slug' ), 200 | /* translators: 1: plugin name. * / 201 | 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'theme-slug' ), 202 | /* translators: 1: dashboard link. * / 203 | 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'theme-slug' ), 204 | 'dismiss' => __( 'Dismiss this notice', 'theme-slug' ), 205 | 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'theme-slug' ), 206 | 'contact_admin' => __( 'Please contact the administrator of this site for help.', 'theme-slug' ), 207 | 208 | 'nag_type' => '', // Determines admin notice type - can only be one of the typical WP notice classes, such as 'updated', 'update-nag', 'notice-warning', 'notice-info' or 'error'. Some of which may not work as expected in older WP versions. 209 | ), 210 | */ 211 | ); 212 | 213 | tgmpa( $plugins, $config ); 214 | } 215 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-cs_CZ.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-de_DE.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_AU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_AU.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_AU.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (Australia) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 02:59+0200\n" 7 | "PO-Revision-Date: 2016-05-19 02:59+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: en_AU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "Updating Plugin: %s" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme recommends the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin" 101 | msgstr[1] "Begin installing plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin" 107 | msgstr[1] "Begin updating plugins" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin" 113 | msgstr[1] "Begin activating plugins" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the Dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "The following plugin was activated successfully:" 132 | msgstr[1] "The following plugins were activated successfully:" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "No action taken. Plugin %1$s was already active." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "All plugins installed and activated successfully. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Dismiss this notice" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Please contact the administrator of this site for help." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "This plugin needs to be updated to be compatible with your theme." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Update Required" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Set the parent_slug config variable instead." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "The remote plugin package does not contain a folder with the desired slug " 188 | "and renaming did not work." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Please contact the plugin provider and ask them to package their plugin " 196 | "according to the WordPress guidelines." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "The remote plugin package consists of more than one file, but the files are " 204 | "not packaged in a folder." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "and" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Required" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Recommended" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress Repository" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "External Source" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Pre-Packaged" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Not Installed" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Installed But Not Activated" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Active" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Required Update not Available" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Requires Update" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Update recommended" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "All (%s)" 275 | msgstr[1] "All (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "To Install (%s)" 283 | msgstr[1] "To Install (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Update Available (%s)" 291 | msgstr[1] "Update Available (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "To Activate (%s)" 299 | msgstr[1] "To Activate (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "unknown" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Installed version:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimum required version:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Available version:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "No plugins to install, update or activate." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Plugin" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Source" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Type" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Version" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Status" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Install %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Update %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Activate %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Upgrade message from the plugin author:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Install" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Update" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Activate" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "No plugins were selected to be installed. No action taken." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "No plugins were selected to be updated. No action taken." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "No plugins are available to be installed at this time." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "No plugins are available to be updated at this time." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "No plugins were selected to be activated. No action taken." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "No plugins are available to be activated at this time." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Plugin activation failed." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "An error occurred while installing %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "The installation of %1$s failed." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "The installation and activation process is starting. This process may take a " 428 | "while on some hosts, so please be patient." 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s installed and activated successfully." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Show Details" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Hide Details" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "All installations and activations have been completed." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "The installation process is starting. This process may take a while on some " 460 | "hosts, so please be patient." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s installed successfully." 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "All installations have been completed." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_CA.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_CA.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (Canada) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 02:59+0200\n" 7 | "PO-Revision-Date: 2016-05-19 02:59+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: en_CA\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme requires the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin." 101 | msgstr[1] "Begin installing plugins." 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin." 107 | msgstr[1] "Begin updating plugins." 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin." 113 | msgstr[1] "Begin activating plugins." 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | #, fuzzy 130 | msgid "The following plugin was activated successfully:" 131 | msgid_plural "The following plugins were activated successfully:" 132 | msgstr[0] "The following plugin was activated successfully:" 133 | msgstr[1] "The following plugin was activated successfully:" 134 | 135 | #. translators: 1: plugin name. 136 | #: class-tgm-plugin-activation.php:397 137 | #, php-format 138 | msgid "No action taken. Plugin %1$s was already active." 139 | msgstr "No action taken. Plugin %1$s was already active." 140 | 141 | #. translators: 1: plugin name. 142 | #: class-tgm-plugin-activation.php:399 143 | #, php-format 144 | msgid "" 145 | "Plugin not activated. A higher version of %s is needed for this theme. " 146 | "Please update the plugin." 147 | msgstr "" 148 | "Plugin not activated. A higher version of %s is needed for this theme. " 149 | "Please update the plugin." 150 | 151 | #. translators: 1: dashboard link. 152 | #: class-tgm-plugin-activation.php:401 153 | #, php-format 154 | msgid "All plugins installed and activated successfully. %1$s" 155 | msgstr "All plugins installed and activated successfully. %1$s" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "Dismiss this notice." 160 | 161 | #: class-tgm-plugin-activation.php:403 162 | msgid "" 163 | "There are one or more required or recommended plugins to install, update or " 164 | "activate." 165 | msgstr "" 166 | 167 | #: class-tgm-plugin-activation.php:404 168 | msgid "Please contact the administrator of this site for help." 169 | msgstr "Please contact the administrator of this site for help." 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "This plugin needs to be updated to be compatible with your theme." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Update Required" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Set the parent_slug config variable instead." 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | "The remote plugin package does not contain a folder with the desired slug " 189 | "and renaming did not work." 190 | 191 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 192 | msgid "" 193 | "Please contact the plugin provider and ask them to package their plugin " 194 | "according to the WordPress guidelines." 195 | msgstr "" 196 | "Please contact the plugin provider and ask them to package their plugin " 197 | "according to the WordPress guidelines." 198 | 199 | #: class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "The remote plugin package consists of more than one file, but the files are " 202 | "not packaged in a folder." 203 | msgstr "" 204 | "The remote plugin package consists of more than one file, but the files are " 205 | "not packaged in a folder." 206 | 207 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 208 | msgctxt "plugin A *and* plugin B" 209 | msgid "and" 210 | msgstr "and" 211 | 212 | #. translators: %s: version number 213 | #: class-tgm-plugin-activation.php:2075 214 | #, php-format 215 | msgid "TGMPA v%s" 216 | msgstr "TGMPA v%s" 217 | 218 | #: class-tgm-plugin-activation.php:2366 219 | msgid "Required" 220 | msgstr "Required" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Recommended" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "WordPress Repository" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "External Source" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Pre-Packaged" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "Not Installed" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installed But Not Activated" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Active" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Required Update not Available" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Requires Update" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Update recommended" 261 | 262 | #. translators: 1: install status, 2: update status 263 | #: class-tgm-plugin-activation.php:2435 264 | #, php-format 265 | msgctxt "Install/Update Status" 266 | msgid "%1$s, %2$s" 267 | msgstr "%1$s, %2$s" 268 | 269 | #. translators: 1: number of plugins. 270 | #: class-tgm-plugin-activation.php:2481 271 | #, php-format 272 | msgctxt "plugins" 273 | msgid "All (%s)" 274 | msgid_plural "All (%s)" 275 | msgstr[0] "All (%s)" 276 | msgstr[1] "All (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2485 280 | #, php-format 281 | msgid "To Install (%s)" 282 | msgid_plural "To Install (%s)" 283 | msgstr[0] "To Install (%s)" 284 | msgstr[1] "To Install (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2489 288 | #, php-format 289 | msgid "Update Available (%s)" 290 | msgid_plural "Update Available (%s)" 291 | msgstr[0] "Update Available (%s)" 292 | msgstr[1] "Update Available (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2493 296 | #, php-format 297 | msgid "To Activate (%s)" 298 | msgid_plural "To Activate (%s)" 299 | msgstr[0] "To Activate (%s)" 300 | msgstr[1] "To Activate (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "unknown" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Installed version:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Minimum required version:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Available version:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "" 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Plugin" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Source" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Type" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Version" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Status" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2696 345 | #, php-format 346 | msgid "Install %2$s" 347 | msgstr "Install %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2701 351 | #, php-format 352 | msgid "Update %2$s" 353 | msgstr "Update %2$s" 354 | 355 | #. translators: %2$s: plugin name in screen reader markup 356 | #: class-tgm-plugin-activation.php:2707 357 | #, php-format 358 | msgid "Activate %2$s" 359 | msgstr "Activate %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Upgrade message from the plugin author:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Install" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Update" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Activate" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "No plugins were selected to be installed. No action taken." 380 | 381 | #: class-tgm-plugin-activation.php:2852 382 | msgid "No plugins were selected to be updated. No action taken." 383 | msgstr "No plugins were selected to be updated. No action taken." 384 | 385 | #: class-tgm-plugin-activation.php:2893 386 | msgid "No plugins are available to be installed at this time." 387 | msgstr "No plugins are available to be installed at this time." 388 | 389 | #: class-tgm-plugin-activation.php:2895 390 | msgid "No plugins are available to be updated at this time." 391 | msgstr "No plugins are available to be updated at this time." 392 | 393 | #: class-tgm-plugin-activation.php:3001 394 | msgid "No plugins were selected to be activated. No action taken." 395 | msgstr "No plugins were selected to be activated. No action taken." 396 | 397 | #: class-tgm-plugin-activation.php:3027 398 | msgid "No plugins are available to be activated at this time." 399 | msgstr "No plugins are available to be activated at this time." 400 | 401 | #: class-tgm-plugin-activation.php:3251 402 | msgid "Plugin activation failed." 403 | msgstr "Plugin activation failed." 404 | 405 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 406 | #: class-tgm-plugin-activation.php:3591 407 | #, php-format 408 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 409 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 410 | 411 | #. translators: 1: plugin name, 2: error message. 412 | #: class-tgm-plugin-activation.php:3594 413 | #, php-format 414 | msgid "An error occurred while installing %1$s: %2$s." 415 | msgstr "An error occurred while installing %1$s: %2$s." 416 | 417 | #. translators: 1: plugin name. 418 | #: class-tgm-plugin-activation.php:3596 419 | #, php-format 420 | msgid "The installation of %1$s failed." 421 | msgstr "The installation of %1$s failed." 422 | 423 | #: class-tgm-plugin-activation.php:3600 424 | msgid "" 425 | "The installation and activation process is starting. This process may take a " 426 | "while on some hosts, so please be patient." 427 | msgstr "" 428 | "The installation and activation process is starting. This process may take a " 429 | "while on some hosts, so please be patient." 430 | 431 | #. translators: 1: plugin name. 432 | #: class-tgm-plugin-activation.php:3602 433 | #, php-format 434 | msgid "%1$s installed and activated successfully." 435 | msgstr "%1$s installed and activated successfully." 436 | 437 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 438 | msgid "Show Details" 439 | msgstr "Show Details" 440 | 441 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 442 | msgid "Hide Details" 443 | msgstr "Hide Details" 444 | 445 | #: class-tgm-plugin-activation.php:3603 446 | msgid "All installations and activations have been completed." 447 | msgstr "All installations and activations have been completed." 448 | 449 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 450 | #: class-tgm-plugin-activation.php:3605 451 | #, php-format 452 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 454 | 455 | #: class-tgm-plugin-activation.php:3608 456 | msgid "" 457 | "The installation process is starting. This process may take a while on some " 458 | "hosts, so please be patient." 459 | msgstr "" 460 | "The installation process is starting. This process may take a while on some " 461 | "hosts, so please be patient." 462 | 463 | #. translators: 1: plugin name. 464 | #: class-tgm-plugin-activation.php:3610 465 | #, php-format 466 | msgid "%1$s installed successfully." 467 | msgstr "%1$s installed successfully." 468 | 469 | #: class-tgm-plugin-activation.php:3611 470 | msgid "All installations have been completed." 471 | msgstr "All installations have been completed." 472 | 473 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 474 | #: class-tgm-plugin-activation.php:3613 475 | #, php-format 476 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 477 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 478 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_GB.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-en_GB.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (UK) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:00+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:00+0200\n" 8 | "Last-Translator: Gary Jones\n" 9 | "Language-Team: TGMPA\n" 10 | "Language: en_GB\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme recommends the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin" 101 | msgstr[1] "Begin installing plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin" 107 | msgstr[1] "Begin updating plugins" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin" 113 | msgstr[1] "Begin activating plugins" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the Dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "The following plugin was activated successfully:" 132 | msgstr[1] "The following plugin was activated successfully:" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "No action taken. Plugin %1$s was already active." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "All plugins installed and activated successfully. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Dismiss this notice" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Please contact the administrator of this site for help." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "This plugin needs to be updated to be compatible with your theme." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Update Required" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Set the parent_slug config variable instead." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "The remote plugin package does not contain a folder with the desired slug " 188 | "and renaming did not work." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Please contact the plugin provider and ask them to package their plugin " 196 | "according to the WordPress guidelines." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "The remote plugin package consists of more than one file, but the files are " 204 | "not packaged in a folder." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "and" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Required" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Recommended" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress Repository" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "External Source" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Pre-Packaged" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Not Installed" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Installed But Not Activated" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Active" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Required Update not Available" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Requires Update" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Update recommended" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "All (%s)" 275 | msgstr[1] "All (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "To Install (%s)" 283 | msgstr[1] "To Install (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Update Available (%s)" 291 | msgstr[1] "Update Available (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "To Activate (%s)" 299 | msgstr[1] "To Activate (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "unknown" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Installed version:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimum required version:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Available version:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "No plugins to install, update or activate." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Plugin" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Source" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Type" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Version" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Status" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Install %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Update %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Activate %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Upgrade message from the plugin author:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Install" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Update" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Activate" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "No plugins were selected to be installed. No action taken." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "No plugins were selected to be updated. No action taken." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "No plugins are available to be installed at this time." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "No plugins are available to be updated at this time." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "No plugins were selected to be activated. No action taken." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "No plugins are available to be activated at this time." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Plugin activation failed." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "An error occurred while installing %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "The installation of %1$s failed." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "The installation and activation process is starting. This process may take a " 428 | "while on some hosts, so please be patient." 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s installed and activated successfully." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Show Details" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Hide Details" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "All installations and activations have been completed." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "The installation process is starting. This process may take a while on some " 460 | "hosts, so please be patient." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s installed successfully." 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "All installations have been completed." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-eo.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-eo.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-eo.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Esperanto 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:00+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:00+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: eo\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Instali devigajn kromprogramojn" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Instali kromprogramojn" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Instalas kromprogramon: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Io misis pri la kromprograma API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Tiu ĉi etoso postulas la sekvan kromprogramon: %1$s." 47 | msgstr[1] "Tiu ĉi etoso postulas la sekvajn kromprogramojn: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Tiu ĉi etoso rekomendas la sekvan kromprogramon: %1$s." 55 | msgstr[1] "Tiu ĉi etoso rekomendas la sekvajn kromprogramojn: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "La sekva kromprogramo bezonas esti ĝisdatigita al la plej nova versio por " 68 | "certigi kongruecon kun tiu ĉi etoso: %1$s." 69 | msgstr[1] "" 70 | "La sekvaj kromprogramoj bezonas esti ĝisdatigitaj al la plej nova versio por " 71 | "certigi kongruecon kun tiu ĉi etoso: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Ĝisdatigo haveblas por: %1$s." 79 | msgstr[1] "Ĝisdatigoj haveblas por la sekvaj kromprogramoj: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "La sekva deviga kromprogramo ne estas aktiva nun: %1$s." 87 | msgstr[1] "La sekvaj devigaj kromprogramoj ne estas aktivaj nun: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "La sekva rekomendita kromprogramo ne estas aktiva nun: %1$s." 95 | msgstr[1] "La sekvaj rekomenditaj kromprogramoj ne estas aktivaj nun: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Ek al instalo de kromprogramo" 101 | msgstr[1] "Ek al instalo de kromprogramoj" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Ek al ĝisdatigo de kromprogramo" 107 | msgstr[1] "Ek al ĝisdatigo de kromprogramoj" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Ek al aktivigo de kromprogramo" 113 | msgstr[1] "Ek al aktivigo de kromprogramoj" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Reen al instalilo de devigaj kromprogramoj" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Reen al la panelo" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Kromprogramo estis aktivigita sukcese." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "" 132 | msgstr[1] "" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Nenio farita. Kromprogramo %1$s jam estis aktiva." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Kromprogramo ne aktivigita. Pli nova versio de %s estas bezonata por tiu ĉi " 148 | "etoso. Bonvole ĝisdatigu la kromprogramon." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Ĉiuj kromprogramoj estis sukcese instalitaj kaj aktivigitaj. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Forsendi tiun ĉi avizon" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Bonvole kontaktu la retejan administranton por helpo." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "Tiu kromprogramo bezonas esti ĝisdatigita por kongrui kun via etoso." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Deviga ĝisdatigo" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Anstataŭe, fiksu la agordan variablon parent_slug." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "La fora kromprograma pakaĵo ne enhavas dosierujon kun dezirata url-nomo kaj " 188 | "alinomo ne sukcesis." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Bonvole kontaktu la programiston de tiu kromprogramo kaj petu pakon de la " 196 | "kromprogramo laŭ la gvidlinioj de WordPress." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "La fora kromprograma pakaĵo enhavas pli ol unu dosieron, sed la dosieroj ne " 204 | "estas pakitaj en dosierujo." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "kaj" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Deviga" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Rekomendita" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress-deponejo" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "Ekstera fonto" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Antaŭ-pakita" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Ne instalita" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Instalita sed ne aktivigita" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Aktiva" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Deviga ĝisdatigo ne havebla" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Postulas ĝisdatigon" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Ĝisdatigo rekomendita" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "Ĉiuj (%s)" 275 | msgstr[1] "Ĉiuj (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "Por instali (%s)" 283 | msgstr[1] "Por instali (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Ĝisdatigo havebla (%s)" 291 | msgstr[1] "Ĝisdatigoj haveblaj (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "Por aktivigi (%s)" 299 | msgstr[1] "Por aktivigi (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "nekonata" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Instalita versio:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimuma deviga versio:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Havebla versio:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "Neniuj kromprogramoj por instali, ĝisdatigi aŭ aktivigi." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Kromprogramo" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Fonto" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Tipo" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Versio" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Stato" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Instali %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Ĝisdatigi %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Aktivigi %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Ĝisdatigo-mesaĝo de la aŭtoro de la kromprogramo:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Instali" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Ĝisdatigi" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Aktivigi" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "Neniuj kromprogramoj elektitaj por instalo. Nenio farita." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "Neniuj kromprogramoj elektitaj por ĝisdatigo. Nenio farita." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "Neniuj kromprogramoj haveblaj por instalo nuntempe." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "Nun, neniuj ĝisdatigoj por kromprogramoj." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "Neniuj kromprogramoj elektitaj por aktivigo. Neniu ago farita." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "Neniuj kromprogramoj aktivigeblaj nuntempe." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Aktivigo de kromprogramo malsukcesis." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Ĝisdatigante kromprogrameton %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "Eraro okazis dum instalo de %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "La instalo de %1$s malsukcesis." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "La instalo kaj aktivigo komenciĝas. Tiu procezo eble daŭros longatempe, do " 428 | "bonvole estu pacienca. " 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s sukcese instalis kaj aktiviĝis." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Montri detalojn" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Kaŝi detalojn" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "Ĉiuj instaloj kaj aktivigoj estas finitaj." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Instalas kaj aktivigas kromprogramon %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "La instalo komenciĝas. Tiu procezo eble daŭros longatempe, do bonvole estu " 460 | "pacienca." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s sukcese instalis" 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "Ĉiuj instaloj estas finitaj." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Instalas kromprogramon %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-es_ES.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-fr_FR.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-he_IL.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-he_IL.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Hebrew 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:01+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:02+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: he\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "התקנת תוספים נדרשים" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "תוסף חדש" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "התקנת התוסף: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "" 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "התבנית דורשת את התוסף הבא: %1$s." 47 | msgstr[1] "התבנית דורשת את התוספים הבאים: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "התבנית ממליצה על התוסף הבא: %1$s." 55 | msgstr[1] "התבנית ממליצה על התוספים הבאים: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "התוסף הבא צריך להיות מעודכן לגרסתו האחרונה על מנת להבטיח את התאימות " 68 | "המקסימלית לתבנית זו: %1$s." 69 | msgstr[1] "" 70 | "התוספים הבאים צריכים להיות מעודכים לגרסתם האחרונה על מנת להבטיח את התאימות " 71 | "המקסימלית לתבנית זו: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "ישנו עדכון זמין עבור: %1$s." 79 | msgstr[1] "ישנם עדכונים זמינים עבור: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "התוסף הדרוש הבא לא פעיל כרגע: %1$s." 87 | msgstr[1] "התוספים הדרושים הבאים לא פעילים כרגע: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "התוסף המומלץ הבא לא פעיל כרגע: %1$s." 95 | msgstr[1] "התוספים המומלצים הבאים לא פעילים כרגע: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "החל בהתקנת התוסף" 101 | msgstr[1] "החל בהתקנת התוספים" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "מתחיל לעדכן את התוסף" 107 | msgstr[1] "מתחיל לעדכן את התוספים" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "החל בהפעלת התוסף" 113 | msgstr[1] "החל בהפעלת התוספים" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "חזרה להתקנת תוספים נדרשים" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "חזרה ללוח הבקרה" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "התוסף הופעל בהצלחה." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "" 132 | msgstr[1] "" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "לא בוצעה כל פעולה. התוסף %1$s כבר הופעל." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "התוסף לא הופעל. תבנית זו דורשת גירסה עדכנית יותר של %s. נא לעדכן את התוסף." 148 | 149 | #. translators: 1: dashboard link. 150 | #: class-tgm-plugin-activation.php:401 151 | #, php-format 152 | msgid "All plugins installed and activated successfully. %1$s" 153 | msgstr "כל התוספים הותקנו והופעלו בהצלחה. %1$s" 154 | 155 | #: class-tgm-plugin-activation.php:402 156 | msgid "Dismiss this notice" 157 | msgstr "שחרר הודעה זו" 158 | 159 | #: class-tgm-plugin-activation.php:403 160 | msgid "" 161 | "There are one or more required or recommended plugins to install, update or " 162 | "activate." 163 | msgstr "" 164 | 165 | #: class-tgm-plugin-activation.php:404 166 | msgid "Please contact the administrator of this site for help." 167 | msgstr "לקבלת עזרה יש ליצור קשר עם הנהלת האתר." 168 | 169 | #: class-tgm-plugin-activation.php:607 170 | msgid "This plugin needs to be updated to be compatible with your theme." 171 | msgstr "יש לעדכן תוסף זה כדי שיתאים לתבנית." 172 | 173 | #: class-tgm-plugin-activation.php:608 174 | msgid "Update Required" 175 | msgstr "נדרש עדכון" 176 | 177 | #: class-tgm-plugin-activation.php:725 178 | msgid "Set the parent_slug config variable instead." 179 | msgstr "" 180 | 181 | #: class-tgm-plugin-activation.php:1027 182 | msgid "" 183 | "The remote plugin package does not contain a folder with the desired slug " 184 | "and renaming did not work." 185 | msgstr "" 186 | 187 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 188 | msgid "" 189 | "Please contact the plugin provider and ask them to package their plugin " 190 | "according to the WordPress guidelines." 191 | msgstr "פנו בבקשה ליוצר התוסף ובקשו ממנו לארוז את התוסף בהתאם להנחיות וורדפרס." 192 | 193 | #: class-tgm-plugin-activation.php:1030 194 | msgid "" 195 | "The remote plugin package consists of more than one file, but the files are " 196 | "not packaged in a folder." 197 | msgstr "" 198 | 199 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 200 | msgctxt "plugin A *and* plugin B" 201 | msgid "and" 202 | msgstr "ו" 203 | 204 | #. translators: %s: version number 205 | #: class-tgm-plugin-activation.php:2075 206 | #, fuzzy, php-format 207 | msgid "TGMPA v%s" 208 | msgstr "TGMPA v%s" 209 | 210 | #: class-tgm-plugin-activation.php:2366 211 | msgid "Required" 212 | msgstr "נדרש" 213 | 214 | #: class-tgm-plugin-activation.php:2369 215 | msgid "Recommended" 216 | msgstr "מומלץ" 217 | 218 | #: class-tgm-plugin-activation.php:2385 219 | msgid "WordPress Repository" 220 | msgstr "מאגר וורדפרס" 221 | 222 | #: class-tgm-plugin-activation.php:2388 223 | msgid "External Source" 224 | msgstr "מקור חיצוני" 225 | 226 | #: class-tgm-plugin-activation.php:2391 227 | msgid "Pre-Packaged" 228 | msgstr "ארוז מראש" 229 | 230 | #: class-tgm-plugin-activation.php:2408 231 | msgid "Not Installed" 232 | msgstr "לא מותקן" 233 | 234 | #: class-tgm-plugin-activation.php:2412 235 | msgid "Installed But Not Activated" 236 | msgstr "מותקן אך לא מופעל" 237 | 238 | #: class-tgm-plugin-activation.php:2414 239 | msgid "Active" 240 | msgstr "ערכה פעילה" 241 | 242 | #: class-tgm-plugin-activation.php:2420 243 | msgid "Required Update not Available" 244 | msgstr "העדכון הדרוש אינו זמין" 245 | 246 | #: class-tgm-plugin-activation.php:2423 247 | msgid "Requires Update" 248 | msgstr "דרוש עדכון" 249 | 250 | #: class-tgm-plugin-activation.php:2426 251 | msgid "Update recommended" 252 | msgstr "מומלץ לעדכן" 253 | 254 | #. translators: 1: install status, 2: update status 255 | #: class-tgm-plugin-activation.php:2435 256 | #, fuzzy, php-format 257 | msgctxt "Install/Update Status" 258 | msgid "%1$s, %2$s" 259 | msgstr "%1$s, %2$s" 260 | 261 | #. translators: 1: number of plugins. 262 | #: class-tgm-plugin-activation.php:2481 263 | #, php-format 264 | msgctxt "plugins" 265 | msgid "All (%s)" 266 | msgid_plural "All (%s)" 267 | msgstr[0] "הכל (%s)" 268 | msgstr[1] "הכל (%s)" 269 | 270 | #. translators: 1: number of plugins. 271 | #: class-tgm-plugin-activation.php:2485 272 | #, php-format 273 | msgid "To Install (%s)" 274 | msgid_plural "To Install (%s)" 275 | msgstr[0] "התקנה (%s)" 276 | msgstr[1] "התקנה (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2489 280 | #, php-format 281 | msgid "Update Available (%s)" 282 | msgid_plural "Update Available (%s)" 283 | msgstr[0] "עדכונים זמינים (%s)" 284 | msgstr[1] "עדכונים זמינים (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2493 288 | #, php-format 289 | msgid "To Activate (%s)" 290 | msgid_plural "To Activate (%s)" 291 | msgstr[0] "הפעלה (%s)" 292 | msgstr[1] "הפעלה (%s)" 293 | 294 | #: class-tgm-plugin-activation.php:2575 295 | msgctxt "as in: \"version nr unknown\"" 296 | msgid "unknown" 297 | msgstr "לא ידוע" 298 | 299 | #: class-tgm-plugin-activation.php:2583 300 | msgid "Installed version:" 301 | msgstr "גרסה מותקנת:" 302 | 303 | #: class-tgm-plugin-activation.php:2591 304 | msgid "Minimum required version:" 305 | msgstr "גירסה מינימלית נדרשת:" 306 | 307 | #: class-tgm-plugin-activation.php:2603 308 | msgid "Available version:" 309 | msgstr "גירסה זמינה:" 310 | 311 | #: class-tgm-plugin-activation.php:2626 312 | msgid "No plugins to install, update or activate." 313 | msgstr "אין תוספים להתקנה, עדכון או הפעלה." 314 | 315 | #: class-tgm-plugin-activation.php:2640 316 | msgid "Plugin" 317 | msgstr "תוסף" 318 | 319 | #: class-tgm-plugin-activation.php:2641 320 | msgid "Source" 321 | msgstr "מקור" 322 | 323 | #: class-tgm-plugin-activation.php:2642 324 | msgid "Type" 325 | msgstr "סוג משרה" 326 | 327 | #: class-tgm-plugin-activation.php:2646 328 | msgid "Version" 329 | msgstr "גרסא" 330 | 331 | #: class-tgm-plugin-activation.php:2647 332 | msgid "Status" 333 | msgstr "סטטוס הפוסט" 334 | 335 | #. translators: %2$s: plugin name in screen reader markup 336 | #: class-tgm-plugin-activation.php:2696 337 | #, fuzzy, php-format 338 | msgid "Install %2$s" 339 | msgstr "התקנת %2$s" 340 | 341 | #. translators: %2$s: plugin name in screen reader markup 342 | #: class-tgm-plugin-activation.php:2701 343 | #, fuzzy, php-format 344 | msgid "Update %2$s" 345 | msgstr " עדכון %2$s" 346 | 347 | #. translators: %2$s: plugin name in screen reader markup 348 | #: class-tgm-plugin-activation.php:2707 349 | #, fuzzy, php-format 350 | msgid "Activate %2$s" 351 | msgstr "%2$s מופעל" 352 | 353 | #: class-tgm-plugin-activation.php:2777 354 | msgid "Upgrade message from the plugin author:" 355 | msgstr "הודעת עדכון ממפתח התוסף:" 356 | 357 | #: class-tgm-plugin-activation.php:2810 358 | msgid "Install" 359 | msgstr "התקן" 360 | 361 | #: class-tgm-plugin-activation.php:2816 362 | msgid "Update" 363 | msgstr "עדכון" 364 | 365 | #: class-tgm-plugin-activation.php:2819 366 | msgid "Activate" 367 | msgstr "הפעלה" 368 | 369 | #: class-tgm-plugin-activation.php:2850 370 | msgid "No plugins were selected to be installed. No action taken." 371 | msgstr "לא נבחרו תוספים להתקנה. לא בוצעה שום פעולה." 372 | 373 | #: class-tgm-plugin-activation.php:2852 374 | msgid "No plugins were selected to be updated. No action taken." 375 | msgstr "לא נבחרו תוספים לעדכון. לא בוצעה שום פעולה." 376 | 377 | #: class-tgm-plugin-activation.php:2893 378 | msgid "No plugins are available to be installed at this time." 379 | msgstr "אין תוספים זמינים להתקנה." 380 | 381 | #: class-tgm-plugin-activation.php:2895 382 | msgid "No plugins are available to be updated at this time." 383 | msgstr "אין תוספים זמינים לעדכון." 384 | 385 | #: class-tgm-plugin-activation.php:3001 386 | msgid "No plugins were selected to be activated. No action taken." 387 | msgstr "לא נבחרו תוספים להפעלה. לא בוצעה שום פעולה." 388 | 389 | #: class-tgm-plugin-activation.php:3027 390 | msgid "No plugins are available to be activated at this time." 391 | msgstr "אין תוספים זמינים להפעלה." 392 | 393 | #: class-tgm-plugin-activation.php:3251 394 | msgid "Plugin activation failed." 395 | msgstr "הפעלת התוסף נכשלה." 396 | 397 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 398 | #: class-tgm-plugin-activation.php:3591 399 | #, php-format 400 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 401 | msgstr "שדרוג התוסף %1$s ‏(%2$d/%3$d)" 402 | 403 | #. translators: 1: plugin name, 2: error message. 404 | #: class-tgm-plugin-activation.php:3594 405 | #, php-format 406 | msgid "An error occurred while installing %1$s: %2$s." 407 | msgstr "ארעה שגיאה במהלך התקנת %1$s: %2$s." 408 | 409 | #. translators: 1: plugin name. 410 | #: class-tgm-plugin-activation.php:3596 411 | #, php-format 412 | msgid "The installation of %1$s failed." 413 | msgstr "ההתקנה של %1$s נכשלה." 414 | 415 | #: class-tgm-plugin-activation.php:3600 416 | msgid "" 417 | "The installation and activation process is starting. This process may take a " 418 | "while on some hosts, so please be patient." 419 | msgstr "" 420 | "תהליך ההתקנה וההפעלה מתחיל והוא יכול להמשך זמן מה בשרתים מסוימים. נא התאזרו " 421 | "בסבלנות." 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3602 425 | #, php-format 426 | msgid "%1$s installed and activated successfully." 427 | msgstr "%1$s הותקן והופעל בהצלחה." 428 | 429 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 430 | msgid "Show Details" 431 | msgstr "הראה פרטים" 432 | 433 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 434 | msgid "Hide Details" 435 | msgstr "הסתר מידע נוסף" 436 | 437 | #: class-tgm-plugin-activation.php:3603 438 | msgid "All installations and activations have been completed." 439 | msgstr "כל ההתקנות וההפעלות הושלמו." 440 | 441 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 442 | #: class-tgm-plugin-activation.php:3605 443 | #, php-format 444 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 445 | msgstr "מתקין ומפעיל את התוסף %1$s (%2$d/%3$d)" 446 | 447 | #: class-tgm-plugin-activation.php:3608 448 | msgid "" 449 | "The installation process is starting. This process may take a while on some " 450 | "hosts, so please be patient." 451 | msgstr "" 452 | "תהליך ההתקנה מתחיל. התהליך יכול לקחת זמן מה בשרתים מסוימים אז נא התאזרו " 453 | "בסבלנות." 454 | 455 | #. translators: 1: plugin name. 456 | #: class-tgm-plugin-activation.php:3610 457 | #, php-format 458 | msgid "%1$s installed successfully." 459 | msgstr "%1$s הותקן בהצלחה." 460 | 461 | #: class-tgm-plugin-activation.php:3611 462 | msgid "All installations have been completed." 463 | msgstr "כל ההתקנות הושלמו." 464 | 465 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 466 | #: class-tgm-plugin-activation.php:3613 467 | #, php-format 468 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 469 | msgstr "מתקין תוסף %1$s (%2$d/%3$d)" 470 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-hr_HR.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-it_IT.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-nl_NL.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-pt_BR.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-ro_RO.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-ru_RU.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-sr_RS.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-sv_SE.mo -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa-sv_SE.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Swedish (Sweden) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:05+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:05+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: sv_SE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Installera obligatoriska tillägg" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Installera tillägg" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installerar tillägg: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Något gick fel med tilläggets API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Detta tema kräver följande tillägg: %1$s." 47 | msgstr[1] "Detta tema kräver följande tillägg: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Detta tema rekommenderar följande tillägg: %1$s." 55 | msgstr[1] "Detta tema rekommenderar följande tillägg: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "Följande tillägget behöver uppdateras till den senaste versionen för att " 68 | "säkerställa maximal kompatibilitet med detta tema: %1$s." 69 | msgstr[1] "" 70 | "Följande tillägget behöver uppdateras till den senaste versionen för att " 71 | "säkerställa maximal kompatibilitet med detta tema: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Det finns en uppdatering tillgänglig för: %1$s." 79 | msgstr[1] "Det finns uppdateringar tillgängliga för de följande tillägg: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "Följande obligatoriska tillägg är för närvarande inaktivt: %1$s." 87 | msgstr[1] "Följande obligatoriska tillägg är för närvarande inaktiva: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "Följande rekommenderade tillägg är för närvarande inaktivt: %1$s." 95 | msgstr[1] "Följande rekommenderade tillägg är för närvarande inaktiva: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Installera tillägg" 101 | msgstr[1] "Installera tillägg" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Uppdatera tillägg" 107 | msgstr[1] "Uppdatera tillägg" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Aktivera tillägg" 113 | msgstr[1] "Aktivera tillägg" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Tillbaka" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Tillbaka till panelen" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Tillägget har aktiverats utan fel." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "Följande tillägg har aktiverats utan fel: " 132 | msgstr[1] "Följande tillägg har aktiverats utan fel: " 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Ingen åtgärd utfördes. Tillägg %1$s är redan aktivt." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Tillägg aktiverats inte. En nyare version av %s behövs för temat. Var god " 148 | "uppdatera tillägget." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Alla tillägg installerades och aktiverades utan fel. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Avfärda" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Var god kontakta hemsidans administratör för att få hjälp." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "" 173 | "Detta tillägg behöver uppdateras för att vara kompatibelt med ditt tema." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Uppdatering behövs" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Använd parent_slug konfigurationsvariabelen istället." 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | "Tilläggspaketet på servern innehåller ej en mapp som har önskad slug och det " 189 | "gick inte att byta namnet." 190 | 191 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 192 | msgid "" 193 | "Please contact the plugin provider and ask them to package their plugin " 194 | "according to the WordPress guidelines." 195 | msgstr "" 196 | "Var god kontakta tilläggsleverantör och begära att de ska förpacka deras " 197 | "tillägg enligt WordPressriktlinjerna." 198 | 199 | #: class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "The remote plugin package consists of more than one file, but the files are " 202 | "not packaged in a folder." 203 | msgstr "" 204 | "Tilläggspaketet på servern bestå av mer än en fil, men filerna förpackats " 205 | "inte i en mapp." 206 | 207 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 208 | msgctxt "plugin A *and* plugin B" 209 | msgid "and" 210 | msgstr "och" 211 | 212 | #. translators: %s: version number 213 | #: class-tgm-plugin-activation.php:2075 214 | #, php-format 215 | msgid "TGMPA v%s" 216 | msgstr "TGMPA v%s" 217 | 218 | #: class-tgm-plugin-activation.php:2366 219 | msgid "Required" 220 | msgstr "Behövde" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Rekommenderade" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "WordPress Repository" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "Extern källa" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Förpackad" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "Ej installerad" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installerad men inte aktiverad" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Aktiv" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Obligatorisk uppdatering saknas" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Uppdatering behövs" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Uppdatering rekommenderades" 261 | 262 | #. translators: 1: install status, 2: update status 263 | #: class-tgm-plugin-activation.php:2435 264 | #, php-format 265 | msgctxt "Install/Update Status" 266 | msgid "%1$s, %2$s" 267 | msgstr "%1$s, %2$s" 268 | 269 | #. translators: 1: number of plugins. 270 | #: class-tgm-plugin-activation.php:2481 271 | #, php-format 272 | msgctxt "plugins" 273 | msgid "All (%s)" 274 | msgid_plural "All (%s)" 275 | msgstr[0] "Alla (%s)" 276 | msgstr[1] "Alla (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2485 280 | #, php-format 281 | msgid "To Install (%s)" 282 | msgid_plural "To Install (%s)" 283 | msgstr[0] "För att installera (%s)" 284 | msgstr[1] "För att installera (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2489 288 | #, php-format 289 | msgid "Update Available (%s)" 290 | msgid_plural "Update Available (%s)" 291 | msgstr[0] "Uppdatering tillgänglig (%s)" 292 | msgstr[1] "Uppdatering tillgänglig (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2493 296 | #, php-format 297 | msgid "To Activate (%s)" 298 | msgid_plural "To Activate (%s)" 299 | msgstr[0] "För att aktivera (%s)" 300 | msgstr[1] "För att aktivera (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "okänt" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Installerade version:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Lägsta version som stöds:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Tillgänglig version:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "Inga tillägg att installera, uppdatera eller aktivera." 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Tillägg" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Källa" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Typ" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Version" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Status" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2696 345 | #, php-format 346 | msgid "Install %2$s" 347 | msgstr "Installera %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2701 351 | #, php-format 352 | msgid "Update %2$s" 353 | msgstr "Uppdatera %2$s" 354 | 355 | #. translators: %2$s: plugin name in screen reader markup 356 | #: class-tgm-plugin-activation.php:2707 357 | #, php-format 358 | msgid "Activate %2$s" 359 | msgstr "Aktivera %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Uppgraderingsmeddelande från tilläggets utvecklare:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Installera" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Uppdatera" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Aktivera" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "Inga tillägg valdes för att installera. Ingen åtgärd utfördes." 380 | 381 | #: class-tgm-plugin-activation.php:2852 382 | msgid "No plugins were selected to be updated. No action taken." 383 | msgstr "Inga tillägg valdes för att uppdatera. Ingen åtgärd utfördes." 384 | 385 | #: class-tgm-plugin-activation.php:2893 386 | msgid "No plugins are available to be installed at this time." 387 | msgstr "Inga tillägg är tillgängliga för att installera vid denna tidpunkt." 388 | 389 | #: class-tgm-plugin-activation.php:2895 390 | msgid "No plugins are available to be updated at this time." 391 | msgstr "Inga tillägg är tillgängliga för att uppdatera vid denna tidpunkt." 392 | 393 | #: class-tgm-plugin-activation.php:3001 394 | msgid "No plugins were selected to be activated. No action taken." 395 | msgstr "Inga tillägg valdes för att aktivera. Ingen åtgärd utfördes." 396 | 397 | #: class-tgm-plugin-activation.php:3027 398 | msgid "No plugins are available to be activated at this time." 399 | msgstr "Inga tillägg är tillgängliga för att aktivera vid denna tidpunkt." 400 | 401 | #: class-tgm-plugin-activation.php:3251 402 | msgid "Plugin activation failed." 403 | msgstr "Aktivering av tillägg lyckades ej." 404 | 405 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 406 | #: class-tgm-plugin-activation.php:3591 407 | #, php-format 408 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 409 | msgstr "Uppdaterar tillägg %1$s (%2$d/%3$d)" 410 | 411 | #. translators: 1: plugin name, 2: error message. 412 | #: class-tgm-plugin-activation.php:3594 413 | #, php-format 414 | msgid "An error occurred while installing %1$s: %2$s." 415 | msgstr "Ett fel uppstöd under installation av %1$s: %2$s." 416 | 417 | #. translators: 1: plugin name. 418 | #: class-tgm-plugin-activation.php:3596 419 | #, php-format 420 | msgid "The installation of %1$s failed." 421 | msgstr "Installationen av %1$s lyckades ej." 422 | 423 | #: class-tgm-plugin-activation.php:3600 424 | msgid "" 425 | "The installation and activation process is starting. This process may take a " 426 | "while on some hosts, so please be patient." 427 | msgstr "" 428 | "Installation- och aktiveringsprocess påbörjar. Denna process kan ta lite tid " 429 | "på vissa värdar - var god vänta." 430 | 431 | #. translators: 1: plugin name. 432 | #: class-tgm-plugin-activation.php:3602 433 | #, php-format 434 | msgid "%1$s installed and activated successfully." 435 | msgstr "%1$s installerades och aktiverades utan fel." 436 | 437 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 438 | msgid "Show Details" 439 | msgstr "Visa detaljer" 440 | 441 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 442 | msgid "Hide Details" 443 | msgstr "Dölja detaljer" 444 | 445 | #: class-tgm-plugin-activation.php:3603 446 | msgid "All installations and activations have been completed." 447 | msgstr "Alla installationer och aktiveringar har utförts." 448 | 449 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 450 | #: class-tgm-plugin-activation.php:3605 451 | #, php-format 452 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | msgstr "Installerar och aktiverar tillägg %1$s (%2$d/%3$d)" 454 | 455 | #: class-tgm-plugin-activation.php:3608 456 | msgid "" 457 | "The installation process is starting. This process may take a while on some " 458 | "hosts, so please be patient." 459 | msgstr "" 460 | "Installationsprocessen påbörjar. Denna process kan ta lite tid på vissa " 461 | "värdar - var god vänta." 462 | 463 | #. translators: 1: plugin name. 464 | #: class-tgm-plugin-activation.php:3610 465 | #, php-format 466 | msgid "%1$s installed successfully." 467 | msgstr "%1$s installerades utan fel." 468 | 469 | #: class-tgm-plugin-activation.php:3611 470 | msgid "All installations have been completed." 471 | msgstr "Alla installationer har utförts." 472 | 473 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 474 | #: class-tgm-plugin-activation.php:3613 475 | #, php-format 476 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 477 | msgstr "Installerar tillägg %1$s (%2$d/%3$d)" 478 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/languages/tgmpa.pot: -------------------------------------------------------------------------------- 1 | #, fuzzy 2 | msgid "" 3 | msgstr "" 4 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 5 | "Project-Id-Version: TGM Plugin Activation\n" 6 | "POT-Creation-Date: 2016-05-19 02:57+0200\n" 7 | "PO-Revision-Date: 2016-01-04 11:07+0100\n" 8 | "Last-Translator: Juliette Reinders Folmer \n" 9 | "Language-Team: TGMPA\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Generator: Poedit 1.8.7\n" 14 | "X-Poedit-Basepath: ..\n" 15 | "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | "X-Poedit-SearchPathExcluded-1: example.php\n" 23 | 24 | #: class-tgm-plugin-activation.php:334 25 | msgid "Install Required Plugins" 26 | msgstr "" 27 | 28 | #: class-tgm-plugin-activation.php:335 29 | msgid "Install Plugins" 30 | msgstr "" 31 | 32 | #. translators: %s: plugin name. 33 | #: class-tgm-plugin-activation.php:337 34 | #, php-format 35 | msgid "Installing Plugin: %s" 36 | msgstr "" 37 | 38 | #. translators: %s: plugin name. 39 | #: class-tgm-plugin-activation.php:339 40 | #, php-format 41 | msgid "Updating Plugin: %s" 42 | msgstr "" 43 | 44 | #: class-tgm-plugin-activation.php:340 45 | msgid "Something went wrong with the plugin API." 46 | msgstr "" 47 | 48 | #. translators: 1: plugin name(s). 49 | #: class-tgm-plugin-activation.php:343 50 | #, php-format 51 | msgid "This theme requires the following plugin: %1$s." 52 | msgid_plural "This theme requires the following plugins: %1$s." 53 | msgstr[0] "" 54 | msgstr[1] "" 55 | 56 | #. translators: 1: plugin name(s). 57 | #: class-tgm-plugin-activation.php:349 58 | #, php-format 59 | msgid "This theme recommends the following plugin: %1$s." 60 | msgid_plural "This theme recommends the following plugins: %1$s." 61 | msgstr[0] "" 62 | msgstr[1] "" 63 | 64 | #. translators: 1: plugin name(s). 65 | #: class-tgm-plugin-activation.php:355 66 | #, php-format 67 | msgid "" 68 | "The following plugin needs to be updated to its latest version to ensure " 69 | "maximum compatibility with this theme: %1$s." 70 | msgid_plural "" 71 | "The following plugins need to be updated to their latest version to ensure " 72 | "maximum compatibility with this theme: %1$s." 73 | msgstr[0] "" 74 | msgstr[1] "" 75 | 76 | #. translators: 1: plugin name(s). 77 | #: class-tgm-plugin-activation.php:361 78 | #, php-format 79 | msgid "There is an update available for: %1$s." 80 | msgid_plural "There are updates available for the following plugins: %1$s." 81 | msgstr[0] "" 82 | msgstr[1] "" 83 | 84 | #. translators: 1: plugin name(s). 85 | #: class-tgm-plugin-activation.php:367 86 | #, php-format 87 | msgid "The following required plugin is currently inactive: %1$s." 88 | msgid_plural "The following required plugins are currently inactive: %1$s." 89 | msgstr[0] "" 90 | msgstr[1] "" 91 | 92 | #. translators: 1: plugin name(s). 93 | #: class-tgm-plugin-activation.php:373 94 | #, php-format 95 | msgid "The following recommended plugin is currently inactive: %1$s." 96 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 97 | msgstr[0] "" 98 | msgstr[1] "" 99 | 100 | #: class-tgm-plugin-activation.php:378 101 | msgid "Begin installing plugin" 102 | msgid_plural "Begin installing plugins" 103 | msgstr[0] "" 104 | msgstr[1] "" 105 | 106 | #: class-tgm-plugin-activation.php:383 107 | msgid "Begin updating plugin" 108 | msgid_plural "Begin updating plugins" 109 | msgstr[0] "" 110 | msgstr[1] "" 111 | 112 | #: class-tgm-plugin-activation.php:388 113 | msgid "Begin activating plugin" 114 | msgid_plural "Begin activating plugins" 115 | msgstr[0] "" 116 | msgstr[1] "" 117 | 118 | #: class-tgm-plugin-activation.php:392 119 | msgid "Return to Required Plugins Installer" 120 | msgstr "" 121 | 122 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 123 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 124 | msgid "Return to the Dashboard" 125 | msgstr "" 126 | 127 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 128 | msgid "Plugin activated successfully." 129 | msgstr "" 130 | 131 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 132 | msgid "The following plugin was activated successfully:" 133 | msgid_plural "The following plugins were activated successfully:" 134 | msgstr[0] "" 135 | msgstr[1] "" 136 | 137 | #. translators: 1: plugin name. 138 | #: class-tgm-plugin-activation.php:397 139 | #, php-format 140 | msgid "No action taken. Plugin %1$s was already active." 141 | msgstr "" 142 | 143 | #. translators: 1: plugin name. 144 | #: class-tgm-plugin-activation.php:399 145 | #, php-format 146 | msgid "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | msgstr "" 150 | 151 | #. translators: 1: dashboard link. 152 | #: class-tgm-plugin-activation.php:401 153 | #, php-format 154 | msgid "All plugins installed and activated successfully. %1$s" 155 | msgstr "" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "" 160 | 161 | #: class-tgm-plugin-activation.php:403 162 | msgid "" 163 | "There are one or more required or recommended plugins to install, update or " 164 | "activate." 165 | msgstr "" 166 | 167 | #: class-tgm-plugin-activation.php:404 168 | msgid "Please contact the administrator of this site for help." 169 | msgstr "" 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "" 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "" 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | 189 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 190 | msgid "" 191 | "Please contact the plugin provider and ask them to package their plugin " 192 | "according to the WordPress guidelines." 193 | msgstr "" 194 | 195 | #: class-tgm-plugin-activation.php:1030 196 | msgid "" 197 | "The remote plugin package consists of more than one file, but the files are " 198 | "not packaged in a folder." 199 | msgstr "" 200 | 201 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 202 | msgctxt "plugin A *and* plugin B" 203 | msgid "and" 204 | msgstr "" 205 | 206 | #. translators: %s: version number 207 | #: class-tgm-plugin-activation.php:2075 208 | #, php-format 209 | msgid "TGMPA v%s" 210 | msgstr "" 211 | 212 | #: class-tgm-plugin-activation.php:2366 213 | msgid "Required" 214 | msgstr "" 215 | 216 | #: class-tgm-plugin-activation.php:2369 217 | msgid "Recommended" 218 | msgstr "" 219 | 220 | #: class-tgm-plugin-activation.php:2385 221 | msgid "WordPress Repository" 222 | msgstr "" 223 | 224 | #: class-tgm-plugin-activation.php:2388 225 | msgid "External Source" 226 | msgstr "" 227 | 228 | #: class-tgm-plugin-activation.php:2391 229 | msgid "Pre-Packaged" 230 | msgstr "" 231 | 232 | #: class-tgm-plugin-activation.php:2408 233 | msgid "Not Installed" 234 | msgstr "" 235 | 236 | #: class-tgm-plugin-activation.php:2412 237 | msgid "Installed But Not Activated" 238 | msgstr "" 239 | 240 | #: class-tgm-plugin-activation.php:2414 241 | msgid "Active" 242 | msgstr "" 243 | 244 | #: class-tgm-plugin-activation.php:2420 245 | msgid "Required Update not Available" 246 | msgstr "" 247 | 248 | #: class-tgm-plugin-activation.php:2423 249 | msgid "Requires Update" 250 | msgstr "" 251 | 252 | #: class-tgm-plugin-activation.php:2426 253 | msgid "Update recommended" 254 | msgstr "" 255 | 256 | #. translators: 1: install status, 2: update status 257 | #: class-tgm-plugin-activation.php:2435 258 | #, php-format 259 | msgctxt "Install/Update Status" 260 | msgid "%1$s, %2$s" 261 | msgstr "" 262 | 263 | #. translators: 1: number of plugins. 264 | #: class-tgm-plugin-activation.php:2481 265 | #, php-format 266 | msgctxt "plugins" 267 | msgid "All (%s)" 268 | msgid_plural "All (%s)" 269 | msgstr[0] "" 270 | msgstr[1] "" 271 | 272 | #. translators: 1: number of plugins. 273 | #: class-tgm-plugin-activation.php:2485 274 | #, php-format 275 | msgid "To Install (%s)" 276 | msgid_plural "To Install (%s)" 277 | msgstr[0] "" 278 | msgstr[1] "" 279 | 280 | #. translators: 1: number of plugins. 281 | #: class-tgm-plugin-activation.php:2489 282 | #, php-format 283 | msgid "Update Available (%s)" 284 | msgid_plural "Update Available (%s)" 285 | msgstr[0] "" 286 | msgstr[1] "" 287 | 288 | #. translators: 1: number of plugins. 289 | #: class-tgm-plugin-activation.php:2493 290 | #, php-format 291 | msgid "To Activate (%s)" 292 | msgid_plural "To Activate (%s)" 293 | msgstr[0] "" 294 | msgstr[1] "" 295 | 296 | #: class-tgm-plugin-activation.php:2575 297 | msgctxt "as in: \"version nr unknown\"" 298 | msgid "unknown" 299 | msgstr "" 300 | 301 | #: class-tgm-plugin-activation.php:2583 302 | msgid "Installed version:" 303 | msgstr "" 304 | 305 | #: class-tgm-plugin-activation.php:2591 306 | msgid "Minimum required version:" 307 | msgstr "" 308 | 309 | #: class-tgm-plugin-activation.php:2603 310 | msgid "Available version:" 311 | msgstr "" 312 | 313 | #: class-tgm-plugin-activation.php:2626 314 | msgid "No plugins to install, update or activate." 315 | msgstr "" 316 | 317 | #: class-tgm-plugin-activation.php:2640 318 | msgid "Plugin" 319 | msgstr "" 320 | 321 | #: class-tgm-plugin-activation.php:2641 322 | msgid "Source" 323 | msgstr "" 324 | 325 | #: class-tgm-plugin-activation.php:2642 326 | msgid "Type" 327 | msgstr "" 328 | 329 | #: class-tgm-plugin-activation.php:2646 330 | msgid "Version" 331 | msgstr "" 332 | 333 | #: class-tgm-plugin-activation.php:2647 334 | msgid "Status" 335 | msgstr "" 336 | 337 | #. translators: %2$s: plugin name in screen reader markup 338 | #: class-tgm-plugin-activation.php:2696 339 | #, php-format 340 | msgid "Install %2$s" 341 | msgstr "" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2701 345 | #, php-format 346 | msgid "Update %2$s" 347 | msgstr "" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2707 351 | #, php-format 352 | msgid "Activate %2$s" 353 | msgstr "" 354 | 355 | #: class-tgm-plugin-activation.php:2777 356 | msgid "Upgrade message from the plugin author:" 357 | msgstr "" 358 | 359 | #: class-tgm-plugin-activation.php:2810 360 | msgid "Install" 361 | msgstr "" 362 | 363 | #: class-tgm-plugin-activation.php:2816 364 | msgid "Update" 365 | msgstr "" 366 | 367 | #: class-tgm-plugin-activation.php:2819 368 | msgid "Activate" 369 | msgstr "" 370 | 371 | #: class-tgm-plugin-activation.php:2850 372 | msgid "No plugins were selected to be installed. No action taken." 373 | msgstr "" 374 | 375 | #: class-tgm-plugin-activation.php:2852 376 | msgid "No plugins were selected to be updated. No action taken." 377 | msgstr "" 378 | 379 | #: class-tgm-plugin-activation.php:2893 380 | msgid "No plugins are available to be installed at this time." 381 | msgstr "" 382 | 383 | #: class-tgm-plugin-activation.php:2895 384 | msgid "No plugins are available to be updated at this time." 385 | msgstr "" 386 | 387 | #: class-tgm-plugin-activation.php:3001 388 | msgid "No plugins were selected to be activated. No action taken." 389 | msgstr "" 390 | 391 | #: class-tgm-plugin-activation.php:3027 392 | msgid "No plugins are available to be activated at this time." 393 | msgstr "" 394 | 395 | #: class-tgm-plugin-activation.php:3251 396 | msgid "Plugin activation failed." 397 | msgstr "" 398 | 399 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 400 | #: class-tgm-plugin-activation.php:3591 401 | #, php-format 402 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 403 | msgstr "" 404 | 405 | #. translators: 1: plugin name, 2: error message. 406 | #: class-tgm-plugin-activation.php:3594 407 | #, php-format 408 | msgid "An error occurred while installing %1$s: %2$s." 409 | msgstr "" 410 | 411 | #. translators: 1: plugin name. 412 | #: class-tgm-plugin-activation.php:3596 413 | #, php-format 414 | msgid "The installation of %1$s failed." 415 | msgstr "" 416 | 417 | #: class-tgm-plugin-activation.php:3600 418 | msgid "" 419 | "The installation and activation process is starting. This process may take a " 420 | "while on some hosts, so please be patient." 421 | msgstr "" 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3602 425 | #, php-format 426 | msgid "%1$s installed and activated successfully." 427 | msgstr "" 428 | 429 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 430 | msgid "Show Details" 431 | msgstr "" 432 | 433 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 434 | msgid "Hide Details" 435 | msgstr "" 436 | 437 | #: class-tgm-plugin-activation.php:3603 438 | msgid "All installations and activations have been completed." 439 | msgstr "" 440 | 441 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 442 | #: class-tgm-plugin-activation.php:3605 443 | #, php-format 444 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 445 | msgstr "" 446 | 447 | #: class-tgm-plugin-activation.php:3608 448 | msgid "" 449 | "The installation process is starting. This process may take a while on some " 450 | "hosts, so please be patient." 451 | msgstr "" 452 | 453 | #. translators: 1: plugin name. 454 | #: class-tgm-plugin-activation.php:3610 455 | #, php-format 456 | msgid "%1$s installed successfully." 457 | msgstr "" 458 | 459 | #: class-tgm-plugin-activation.php:3611 460 | msgid "All installations have been completed." 461 | msgstr "" 462 | 463 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 464 | #: class-tgm-plugin-activation.php:3613 465 | #, php-format 466 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 467 | msgstr "" 468 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | The code standard for TGMPA is WordPress. 4 | class-tgm-plugin-activation.php 5 | example.php 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/plugins/tgm-example-plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqltechnologies/brighty/ce3ddbc453c125ebb3abd70fc2cc20642230f48e/brighty-core-plugin/vendor/tgmpa/tgm-plugin-activation/plugins/tgm-example-plugin.zip -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | #--------------------------------------------------------------------------# 2 | #--------------------------------------------------------------------------# 3 | # B R I G H T Y # 4 | #--------------------------------------------------------------------------# 5 | #--------------------------------------------------------------------------# 6 | version: "3" 7 | 8 | services: 9 | #--------------------------------------------------------------------------# 10 | #--------------------------------------------------------------------------# 11 | # W O R D P R E S S # 12 | #--------------------------------------------------------------------------# 13 | #--------------------------------------------------------------------------# 14 | brighty_dev: 15 | 16 | image: docker.io/wordpress 17 | container_name: 'brighty_dev' 18 | ports: 19 | - '9090:80' 20 | environment: 21 | - WORDPRESS_DB_HOST=brighty_dev_mysql 22 | - WORDPRESS_DB_PORT=3307 23 | - WORDPRESS_DB_NAME=brighty_dev 24 | - WORDPRESS_DB_USER=root 25 | - WORDPRESS_DB_PASSWORD=brighty_devP 26 | - WORDPRESS_TABLE_PREFIX=wp 27 | - WORDPRESS_DEBUG=1 28 | volumes: 29 | - './wp:/var/www/html' 30 | - './brighty-core-plugin/:/var/www/html/wp-content/plugins/brighty-core-plugin/' 31 | - './brighty-core-theme/:/var/www/html/wp-content/themes/brighty-core-theme/' 32 | depends_on: 33 | - brighty_dev_mysql 34 | 35 | #--------------------------------------------------------------------------# 36 | #--------------------------------------------------------------------------# 37 | # M Y S Q L # 38 | #--------------------------------------------------------------------------# 39 | #--------------------------------------------------------------------------# 40 | brighty_dev_mysql: 41 | image: mariadb:10.5.5 42 | container_name: 'brighty_dev_mysql' 43 | ports: 44 | - 3307:3307 45 | volumes: 46 | - ./database/mysql:/var/lib/mysql 47 | - ./database/logs/mysql:/var/log/mysql 48 | environment: 49 | MYSQL_DATABASE: brighty_dev 50 | MYSQL_USER: brighty_dev_user 51 | MYSQL_PASSWORD: brighty_devP 52 | MYSQL_ROOT_PASSWORD: brighty_devP 53 | 54 | #--------------------------------------------------------------------------# 55 | #--------------------------------------------------------------------------# 56 | # P H P M Y A D M I N # 57 | #--------------------------------------------------------------------------# 58 | #--------------------------------------------------------------------------# 59 | brighty_dev_phpmyadmin: 60 | image: phpmyadmin/phpmyadmin:5.0.2 61 | container_name: 'brighty_dev_phpmyadmin' 62 | links: 63 | - brighty_dev_mysql 64 | environment: 65 | PMA_HOST: brighty_dev_mysql 66 | PMA_PORT: 3307 67 | ports: 68 | - 82:83 69 | volumes: 70 | - ./database/sessions:/sessions --------------------------------------------------------------------------------