Changeset 3053009
- Timestamp:
- 03/18/2024 12:59:19 AM (2 years ago)
- Location:
- project-donations-wc
- Files:
-
- 32 added
- 7 deleted
- 17 edited
-
tags/1.5.6 (added)
-
tags/1.5.6/.version (added)
-
tags/1.5.6/CHANGELOG.md (added)
-
tags/1.5.6/INSTALLATION.md (added)
-
tags/1.5.6/admin (added)
-
tags/1.5.6/admin/admin.asset.php (added)
-
tags/1.5.6/admin/admin.css (added)
-
tags/1.5.6/admin/admin.js (added)
-
tags/1.5.6/admin/wc-admin-classes.php (added)
-
tags/1.5.6/includes (added)
-
tags/1.5.6/includes/class-project.php (added)
-
tags/1.5.6/includes/class-woocommerce.php (added)
-
tags/1.5.6/includes/classes.php (added)
-
tags/1.5.6/includes/functions.php (added)
-
tags/1.5.6/languages (added)
-
tags/1.5.6/languages/project-donations-wc-de_DE.mo (added)
-
tags/1.5.6/languages/project-donations-wc-de_DE.po (added)
-
tags/1.5.6/languages/project-donations-wc-de_DE.po-json.mo (added)
-
tags/1.5.6/languages/project-donations-wc-fr_FR.mo (added)
-
tags/1.5.6/languages/project-donations-wc-fr_FR.po (added)
-
tags/1.5.6/languages/project-donations-wc-fr_FR.po-json.mo (added)
-
tags/1.5.6/languages/project-donations-wc-nl_NL.mo (added)
-
tags/1.5.6/languages/project-donations-wc-nl_NL.po (added)
-
tags/1.5.6/languages/project-donations-wc-nl_NL.po-json.mo (added)
-
tags/1.5.6/languages/project-donations-wc.pot (added)
-
tags/1.5.6/project-donations-wc.php (added)
-
tags/1.5.6/public (added)
-
tags/1.5.6/public/public.asset.php (added)
-
tags/1.5.6/public/public.css (added)
-
tags/1.5.6/public/public.js (added)
-
tags/1.5.6/readme.txt (added)
-
trunk/.version (added)
-
trunk/admin/admin.css.map (deleted)
-
trunk/admin/admin.js.map (deleted)
-
trunk/admin/wc-admin-classes.php (modified) (1 diff)
-
trunk/build (deleted)
-
trunk/css (deleted)
-
trunk/includes/class-project.php (modified) (14 diffs)
-
trunk/includes/class-woocommerce.php (modified) (11 diffs)
-
trunk/includes/classes.php (modified) (4 diffs)
-
trunk/includes/functions.php (modified) (2 diffs)
-
trunk/includes/post-type-project.php (deleted)
-
trunk/languages/project-donations-wc-de_DE.mo (modified) (previous)
-
trunk/languages/project-donations-wc-de_DE.po (modified) (3 diffs)
-
trunk/languages/project-donations-wc-de_DE.po-json.mo (modified) (previous)
-
trunk/languages/project-donations-wc-fr_FR.mo (modified) (previous)
-
trunk/languages/project-donations-wc-fr_FR.po (modified) (3 diffs)
-
trunk/languages/project-donations-wc-fr_FR.po-json.mo (modified) (previous)
-
trunk/languages/project-donations-wc-nl_NL.mo (modified) (previous)
-
trunk/languages/project-donations-wc-nl_NL.po (modified) (3 diffs)
-
trunk/languages/project-donations-wc-nl_NL.po-json.mo (modified) (previous)
-
trunk/languages/project-donations-wc.pot (modified) (4 diffs)
-
trunk/project-donations-wc.php (modified) (2 diffs)
-
trunk/public/public.css.map (deleted)
-
trunk/public/public.js.map (deleted)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
project-donations-wc/trunk/admin/wc-admin-classes.php
r2924105 r3053009 146 146 ), 147 147 array( 148 'id' => 'prdwc_donate_button_label', 149 'name' => __( 'Donate button label', 'project-donations-wc' ), 150 'type' => 'text', 151 'std' => __( 'Donate', 'project-donations-wc' ), 152 'placeholder' => __( 'Donate', 'project-donations-wc' ), 153 // 'custom_attributes' => (get_option('prdwc_custom_amount') != 'yes') ? [ 'disabled' => 'disabled' ] : [], 154 ), 155 array( 156 'id' => 'prdwc_donate_field_placeholder', 157 'name' => __( 'Donation field placeholder', 'project-donations-wc' ), 158 'type' => 'text', 159 'std' => __( 'Donation amount', 'project-donations-wc' ), 160 'placeholder' => __( 'Donation amount', 'project-donations-wc' ), 161 // 'custom_attributes' => (get_option('prdwc_custom_amount') != 'yes') ? [ 'disabled' => 'disabled' ] : [], 162 ), 163 array( 148 164 'type' => 'sectionend', 149 165 'id' => 'prdwc_section_projects_end', -
project-donations-wc/trunk/includes/class-project.php
r2924105 r3053009 1 1 <?php 2 2 3 /** 3 * Add a field group to the PRDWC project post type using Meta Box plugin. 4 * PRDWC Project Class 5 * 6 * @package project-donations-wc 7 * @link https://github.com/magicoli/project-donations-wc 8 * @version 1.5.6-rc 9 * @since 1.5 10 * 11 * The PRDWC_Project class handles the project functionality within the Project 12 * Donations for WooCommerce plugin. It registers the project post type, project 13 * fields, and project-related shortcodes. It also provides methods to retrieve 14 * project information such as achievements and goals. 15 */ 16 17 /** 4 18 * Project class. 5 19 * - register project post type if needed 6 20 * - register project fields 7 21 * - register project and goals related shortcodes 22 * 23 * @since 1.5 8 24 */ 9 25 class PRDWC_Project { 26 27 /** 28 * The post type for the project. 29 * 30 * @var string 31 */ 10 32 protected $post_type; 33 34 /** 35 * The project's post object. 36 * 37 * @var WP_Post 38 */ 11 39 protected $post; 40 41 /** 42 * The project ID. 43 * 44 * @var int 45 */ 12 46 protected $project_id; 13 47 48 /** 49 * Constructor for the PRDWC_Project class. 50 * 51 * @param mixed $args Project ID or post object. 52 */ 14 53 public function __construct( $args = array() ) { 15 54 $post_id = null; … … 25 64 } 26 65 66 /** 67 * Retrieves the project post type option value. 68 * 69 * @return string The project post type. 70 */ 27 71 public static function post_type() { 28 72 return ( get_option( 'prdwc_create_project_post_type' ) == 'yes' ) ? 'project' : get_option( 'prdwc_project_post_type' ); 29 73 } 30 74 75 /** 76 * Register the PRDWC_Project class hooks. 77 */ 31 78 public function init() { 32 79 add_filter( 'rwmb_meta_boxes', array( $this, 'register_fields' ) ); … … 38 85 } 39 86 40 87 /** 88 * Registers the project post type. 89 */ 41 90 function register_post_types() { 42 91 $labels = array( … … 131 180 } 132 181 182 /** 183 * Registers the project-related shortcodes. 184 */ 133 185 function register_shortcodes() { 134 186 add_shortcode( 'achievements', array( $this, 'render_achievements' ) ); … … 136 188 } 137 189 138 // Retrieve project id based on post type and current post ID 190 /** 191 * Retrieves extends core get_the_ID() to include currently saved form. 192 * 193 * @return int|null The current post ID, or null if not found. 194 */ 195 public function get_the_ID() { 196 $post_id = get_the_ID(); 197 if ( $post_id ) { 198 return $post_id; 199 } 200 201 if ( isset( $_GET['post'] ) ) { 202 return $_GET['post']; 203 } 204 205 return null; 206 } 207 208 /** 209 * Retrieves the project ID based on the post type and current post ID. 210 * 211 * @since 1.5.1 212 * 213 * @param mixed $args Project ID or post object. 214 * @return int|false The project ID if found, false otherwise. 215 */ 139 216 function get_project_id( $args = null ) { 140 217 $post_id = ( ! empty( $this->project_id ) ) ? $this->project_id : get_the_ID( $args ); … … 163 240 if ( get_post_type( $project_id ) !== self::post_type() ) { 164 241 // Invalid project ID 165 return false; 242 $project_id = false; 243 // return false; 166 244 } 167 245 } … … 169 247 if ( empty( $project_id ) ) { 170 248 // No project found 171 return false; 172 } 173 174 // Check if the project ID is valid 249 $project_id = false; 250 // return false; 251 } 175 252 176 253 return $project_id; 177 254 } 178 255 256 /** 257 * Retrieves the project achievements. 258 * 259 * @since 1.5.1 260 * 261 * @param array $atts Shortcode attributes. 262 * @return array The project achievements. 263 */ 179 264 function get_achievements( $atts = array() ) { 180 265 // Check if project_id is set in shortcode attributes 181 266 $project_id = $this->get_project_id( $atts ); 267 if(empty($project_id)) { 268 return false; 269 } 182 270 183 271 // Get the product IDs associated with the project … … 204 292 $orders = wc_get_orders( 205 293 array( 206 'status' => 'completed',294 'status' => [ 'wc-processing', 'completed' ], 207 295 'return' => 'ids', 208 296 'limit' => -1, 209 'date_created' => '>=' . date( 'Y-m-d', strtotime( '-30 days' ) ), // Example: Retrieve orders from the last 30 days297 // 'date_created' => '>=' . date( 'Y-m-d', strtotime( '-30 days' ) ), // Example: Retrieve orders from the last 30 days 210 298 'meta_query' => array( 211 299 array( … … 258 346 } 259 347 348 /** 349 * Renders the achievements shortcode. 350 * 351 * @since 1.5 352 * 353 * @param array $atts Shortcode attributes. 354 * @return string The rendered achievements output. 355 */ 260 356 function render_achievements( $atts = array() ) { 261 357 $achievements = $this->get_achievements( $atts ); 358 if(empty( $achievements) ) return ''; 359 262 360 $progress_bar = isset( $atts['progress_bar'] ) ? $atts['progress_bar'] : get_option( 'prdwc_progress_bar', true ); 263 361 $show_goal_name = isset( $atts['show_goal_name'] ) ? $atts['show_goal_name'] : get_option( 'prdwc_show_goal_name', true ); … … 324 422 } 325 423 424 /** 425 * Registers the project fields using Meta Box plugin. 426 * 427 * @param array $meta_boxes The meta boxes array. 428 * @return array The modified meta boxes array. 429 */ 326 430 function register_fields( $meta_boxes ) { 327 431 $prefix = ''; … … 409 513 } 410 514 411 public function get_the_ID() { 412 $post_id = get_the_ID(); 413 if ( $post_id ) { 414 return $post_id; 415 } 416 417 if ( isset( $_GET['post'] ) ) { 418 return $_GET['post']; 419 } 420 421 return null; 422 } 423 515 /** 516 * Renders the edit button for a field group. 517 * 518 * @since 1.5 519 * 520 * @param string $field_group_name The name of the field group. 521 * @return string The rendered edit button HTML. 522 */ 424 523 function render_edit_button( $field_group_name ) { 425 524 $html = ''; … … 471 570 } 472 571 572 /** 573 * Renders the goals shortcode. 574 * 575 * @since 1.5 576 * 577 * @param array $atts Shortcode attributes. 578 * @return string The rendered goals output. 579 */ 473 580 function render_goals( $atts = array() ) { 474 581 $progress_bar = isset( $atts['progress_bar'] ) ? $atts['progress_bar'] : get_option( 'prdwc_progress_bar', true ); … … 479 586 480 587 $achievements = $this->get_achievements( $atts ); 588 if(empty($achievements)) { 589 return ''; 590 } 591 481 592 $next_goal = $achievements['next_goal']; 482 593 $sales_total = $achievements['sales_total']; … … 539 650 } 540 651 652 /** 653 * Renders the counterparts table. 654 * 655 * @since 1.5 656 * 657 * @return string The rendered counterparts table HTML. 658 */ 541 659 function render_counterparts() { 542 660 $post_id = $this->get_the_ID(); -
project-donations-wc/trunk/includes/class-woocommerce.php
r2924105 r3053009 1 1 <?php 2 2 /** 3 * Main class for WooCommerce integration in Project Donations for WooCommerce. 4 * 5 * @package project-donations-wc 6 * @link https://github.com/magicoli/project-donations-wc 7 * @version 1.5.6-rc 8 * 9 * This class handles the integration with WooCommerce and manages the functionality related to product donations. 10 * 11 * @version 1.5.6-rc 12 */ 3 13 class PRDWC_WooCommerce { 4 14 … … 6 16 } 7 17 18 /** 19 * Initialize the WooCommerce integration. 20 */ 8 21 public function init() { 9 22 … … 39 52 } 40 53 41 // function prdwc_enqueue_scripts() { 42 // $post_type = get_post_type(); 43 // $screen = get_current_screen(); 44 // 45 // if ($screen && $screen->base === 'post' && $screen->post_type === 'product') { 46 // wp_enqueue_script('prdwc-script', plugin_dir_url(__FILE__) . 'product-options.js', array('jquery'), PRDWC_VERSION . '-' . time(), true); 47 // 48 // Localize script data 49 // $data = array( 50 // 'linkProjectChecked' => get_post_meta(get_the_ID(), '_linkproject', true), 51 // ); 52 // wp_localize_script('prdwc-script', 'prdwcData', $data); 53 // 54 // } 55 // 56 // } 57 54 /** 55 * Add product type options for the donations. 56 * 57 * @param array $product_type_options Array of product type options. 58 * @return array Updated array of product type options. 59 */ 58 60 static function add_product_type_options( $product_type_options ) { 59 61 $product_type_options['linkproject'] = array( … … 67 69 } 68 70 69 71 /** 72 * Add the donations tab to the product data tabs. 73 * 74 * @param array $tabs Array of product data tabs. 75 * @return array Updated array of product data tabs. 76 */ 70 77 public function add_donations_tab( $tabs ) { 71 78 $tabs['donations'] = array( … … 78 85 } 79 86 87 /** 88 * Add the donations tab content. 89 */ 80 90 public function add_donations_tab_content() { 81 91 global $post; … … 120 130 } 121 131 132 /** 133 * Save the product type options. 134 * 135 * @param int $post_ID Post ID. 136 * @param WP_Post $product Product object. 137 * @param bool $update Whether the post is being updated or created. 138 */ 122 139 public static function save_product_type_options( $post_ID, $product, $update ) { 123 140 update_post_meta( $product->ID, '_linkproject', isset( $_POST['_linkproject'] ) ? 'yes' : 'no' ); … … 128 145 } 129 146 147 /** 148 * Display custom fields on the product page. 149 */ 130 150 static function display_custom_fields_simple() { 131 151 global $post, $product; … … 140 160 } 141 161 162 /** 163 * Display custom fields on the product page. 164 */ 142 165 static function display_custom_field( $args ) { 143 166 if ( empty( $args['name'] ) ) { … … 315 338 316 339 if ( prdwc_allow_custom_amount() ) { 340 $placeholder = get_option('prdwc_donate_field_placeholder'); 341 $placeholder = empty($placeholder) ? __( 'Donation amount', 'project-donations-wc' ) : $placeholder; 342 317 343 $fields[] = array( 318 344 'name' => 'amount', 319 345 'label' => ( ( $price > 0 ) ? __( 'Add to fee', 'project-donations-wc' ) : __( 'Amount', 'project-donations-wc' ) ) . ' (' . get_woocommerce_currency_symbol() . ')', 320 'placeholder' => __( 'Donation amount', 'project-donations-wc' ),346 'placeholder' => $placeholder, 321 347 'type' => 'number', 322 348 'required' => true, … … 338 364 static function add_to_cart_button( $text, $product ) { 339 365 if ( $product->get_meta( '_linkproject' ) == 'yes' ) { 340 $text = __( 'Donate', 'project-donations-wc' ); 366 $text = get_option('prdwc_donate_button_label'); 367 $text = empty($text) ? __( 'Donate', 'project-donations-wc' ) : $text; 341 368 } 342 369 return $text; … … 345 372 static function single_add_to_cart_button( $text, $product ) { 346 373 if ( $product->get_meta( '_linkproject' ) == 'yes' ) { 347 $text = __( 'Donate', 'project-donations-wc' ); 374 $text = get_option('prdwc_donate_button_label'); 375 $text = empty($text) ? __( 'Donate', 'project-donations-wc' ) : $text; 348 376 } 349 377 return $text; -
project-donations-wc/trunk/includes/classes.php
r2924105 r3053009 2 2 3 3 /** 4 * Main class, used to load global stypes and scripts, and other classes. 4 * Main class, used to load global styles and scripts, and other classes. 5 * 6 * @package project-donations-wc 7 * @link https://github.com/magicoli/project-donations-wc 8 * @version 1.5.6-rc 9 * 10 * @since 1.4 5 11 */ 12 6 13 class PRDWC { 7 14 … … 20 27 } 21 28 29 /** 30 * Enqueues admin styles and scripts. 31 * 32 * @since 1.5.5 33 */ 22 34 function enqueue_admin_styles() { 23 35 wp_enqueue_script( 'prdwc-admin-script', plugin_dir_url( __DIR__ ) . 'admin/admin.js', array( 'jquery' ), PRDWC_VERSION . '-' . time(), true ); … … 30 42 } 31 43 44 /** 45 * Enqueues public scripts. 46 * 47 * @since 1.5.5 48 */ 32 49 function enqueue_public_scripts() { 33 50 wp_enqueue_style( 'prdwc-style', plugin_dir_url( __DIR__ ) . 'public/public.css', array(), PRDWC_VERSION . time() ); … … 42 59 } 43 60 61 /** 62 * Retrieves an array of post options. 63 * 64 * @param array $args Arguments for retrieving posts. 65 * @return array Post options. 66 * 67 * @since 1.5.5 68 */ 44 69 static function select_post_options( $args = array() ) { 45 70 $args = array_merge( -
project-donations-wc/trunk/includes/functions.php
r2924105 r3053009 1 1 <?php defined( 'PRDWC_VERSION' ) || die; 2 2 3 /** 4 * Main functions file for Project Donations for WooCommerce. 5 * 6 * @package project-donations-wc 7 * @link https://github.com/magicoli/project-donations-wc 8 * @version 1.5.6-rc 9 */ 10 11 /** 12 * Checks if a product is a donation product. 13 * 14 * @since 1.4 15 * 16 * @param int $product_id The ID of the product. 17 * @return bool Whether the product is a donation product or not. 18 */ 3 19 function prdwc_is_donation( $product_id ) { 4 20 // return true; // let's handle this later … … 6 22 } 7 23 24 /** 25 * Checks if custom donation amount is allowed. 26 * 27 * @since 1.4.4 28 * 29 * @return bool Whether custom donation amount is allowed or not. 30 */ 8 31 function prdwc_allow_custom_amount() { 9 32 if ( get_option( 'prdwc_custom_amount' ) == 'yes' ) { -
project-donations-wc/trunk/languages/project-donations-wc-de_DE.po
r2924105 r3053009 2 2 msgstr "" 3 3 "Project-Id-Version: Project Products for WooCommerce\n" 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-" 5 "wc-dev\n" 6 "POT-Creation-Date: 2023-06-05T01:48:05+00:00\n" 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-wc-dev\n" 5 "POT-Creation-Date: 2023-08-25T18:33:34+00:00\n" 7 6 "PO-Revision-Date: \n" 8 "Last-Translator: \n"7 "Last-Translator: gpt-po v1.0.7\n" 9 8 "Language-Team: \n" 10 9 "Language: de\n" 11 10 "MIME-Version: 1.0\n" 12 "Content-Type: text/plain; charset= UTF-8\n"11 "Content-Type: text/plain; charset=utf-8\n" 13 12 "Content-Transfer-Encoding: 8bit\n" 13 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 14 "X-Generator: Poedit 3.0.1\n" 15 15 … … 22 22 msgstr "https://wordpress.org/plugins/project-donations-wc/" 23 23 24 #. Description of the plugin 25 msgid "" 26 "Add project field to WooCommerce products, allow clients to link their " 27 "purchase to a project" 28 msgstr "" 29 "Fügt ein Projektfeld zu WooCommerce-Produkten hinzu, ermöglicht es dem " 30 "Kunden, seinen Kauf mit einem Projekt zu verknüpfen" 24 msgid "Empower charity and crowdfunding projects with WooCommerce integration." 25 msgstr "Turbo für Ihre gemeinnützigen Projekte und Crowdfunding-Aktionen dank WooCommerce." 31 26 32 27 #. Author of the plugin … … 38 33 msgstr "https://magiiic.com/" 39 34 40 #: admin/wc-admin-classes.php:2 335 #: admin/wc-admin-classes.php:24 41 36 msgid "Settings" 42 37 msgstr "Einstellungen" 43 38 44 #: admin/wc-admin-classes.php:3 5 includes/class-woocommerce.php:4539 #: admin/wc-admin-classes.php:38 includes/class-woocommerce.php:79 45 40 msgid "Project Donations" 46 41 msgstr "Projektspenden" 47 42 48 #: admin/wc-admin-classes.php: 7543 #: admin/wc-admin-classes.php:81 49 44 msgid "Default settings" 50 45 msgstr "Standardeinstellungen" 51 46 52 #: admin/wc-admin-classes.php: 7847 #: admin/wc-admin-classes.php:84 53 48 msgid "These settings can be overridden for each product." 54 49 msgstr "Diese Einstellungen können für jedes Produkt geändert werden." 55 50 56 #: admin/wc-admin-classes.php:8 151 #: admin/wc-admin-classes.php:87 57 52 msgid "Add project post type" 58 53 msgstr "Projekttyp hinzufügen" 59 54 60 #: admin/wc-admin-classes.php: 8655 #: admin/wc-admin-classes.php:92 61 56 msgid "Create a project post type" 62 57 msgstr "Erstellen einer Projektmaterialart" 63 58 64 #: admin/wc-admin-classes.php: 87 admin/wc-admin-classes.php:12559 #: admin/wc-admin-classes.php:93 admin/wc-admin-classes.php:131 65 60 msgid "(enable only if no other plugin implements it)" 66 61 msgstr "(nur aktivieren, wenn keine andere Erweiterung sie implementiert)" 67 62 68 #: admin/wc-admin-classes.php:9 263 #: admin/wc-admin-classes.php:98 69 64 msgid "Get projects from post type" 70 65 msgstr "Projekte von der Artikelart abrufen" 71 66 72 #: admin/wc-admin-classes.php:1 1967 #: admin/wc-admin-classes.php:125 73 68 msgid "Customer defined amount" 74 69 msgstr "Von der Klientin/dem Klienten festgelegter Betrag" 75 70 76 #: admin/wc-admin-classes.php:1 2471 #: admin/wc-admin-classes.php:130 77 72 msgid "Allow customer to choose the amount to pay" 78 73 msgstr "Dem Kunden erlauben, den zu zahlenden Betrag zu wählen" 79 74 80 #: admin/wc-admin-classes.php:13 075 #: admin/wc-admin-classes.php:136 81 76 msgid "Minimum donation amount (%s)" 82 77 msgstr "Mindestbetrag der Spende (%s)" 83 78 84 #: admin/wc-admin-classes.php:189 79 #: admin/wc-admin-classes.php:149 80 msgid "Donate button label" 81 msgstr "Spenden-Button-Beschriftung" 82 83 #: admin/wc-admin-classes.php:151 admin/wc-admin-classes.php:152 includes/class-woocommerce.php:367 84 #: includes/class-woocommerce.php:375 85 msgid "Donate" 86 msgstr "Spenden" 87 88 #: admin/wc-admin-classes.php:157 89 msgid "Donation field placeholder" 90 msgstr "Spendenfeld Platzhalter" 91 92 #: admin/wc-admin-classes.php:159 admin/wc-admin-classes.php:160 includes/class-woocommerce.php:341 93 msgid "Donation amount" 94 msgstr "Spendenbetrag" 95 96 #: admin/wc-admin-classes.php:215 85 97 msgid "No products found" 86 98 msgstr "Keine Produkte gefunden" 87 99 88 #: admin/wc-admin-classes.php:191 100 #: admin/wc-admin-classes.php:238 101 msgid "No categories found" 102 msgstr "Keine Kategorien gefunden" 103 104 #: admin/wc-admin-classes.php:262 105 msgid "No taxonomies found" 106 msgstr "Keine Taxonomie gefunden" 107 108 #: admin/wc-admin-classes.php:279 109 msgid "No post types found, wich is tretty weird." 110 msgstr "Es wurde keine Art von Artikel gefunden, was ziemlich seltsam ist." 111 112 #: includes/class-project.php:92 113 msgid "Projects" 114 msgstr "Projekte" 115 116 #: includes/class-project.php:93 includes/class-woocommerce.php:311 includes/class-woocommerce.php:510 117 msgid "Project" 118 msgstr "Projekt" 119 120 #: includes/class-project.php:94 121 msgid "Add New" 122 msgstr "Hinzufügen" 123 124 #: includes/class-project.php:95 125 msgid "Add New Project" 126 msgstr "Projekt hinzufügen" 127 128 #: includes/class-project.php:96 129 msgid "Edit Project" 130 msgstr "Projekt bearbeiten" 131 132 #: includes/class-project.php:97 133 msgid "New Project" 134 msgstr "Neues Projekt" 135 136 #: includes/class-project.php:98 137 msgid "All Projects" 138 msgstr "Alle Projekte" 139 140 #: includes/class-project.php:99 141 msgid "View Project" 142 msgstr "Projekt ansehen" 143 144 #: includes/class-project.php:100 145 msgid "Search Projects" 146 msgstr "In Projekten suchen" 147 148 #: includes/class-project.php:101 149 msgid "Nothing found" 150 msgstr "Nichts gefunden" 151 152 #: includes/class-project.php:102 153 msgid "Nothing found in Trash" 154 msgstr "Nichts im Papierkorb gefunden" 155 156 #: includes/class-project.php:133 157 msgid "Project Categories" 158 msgstr "Projektkategorie" 159 160 #: includes/class-project.php:134 161 msgid "Project Category" 162 msgstr "Kategorie des Projekts" 163 164 #: includes/class-project.php:135 165 msgid "Search Categories" 166 msgstr "Kategorien durchsuchen" 167 168 #: includes/class-project.php:136 169 msgid "All Categories" 170 msgstr "Alle Kategorien" 171 172 #: includes/class-project.php:137 173 msgid "Parent Category" 174 msgstr "Übergeordnete Kategorie" 175 176 #: includes/class-project.php:138 177 msgid "Parent Category:" 178 msgstr "Verwandte Kategorie :" 179 180 #: includes/class-project.php:139 181 msgid "Edit Category" 182 msgstr "Kategorie bearbeiten" 183 184 #: includes/class-project.php:140 185 msgid "Update Category" 186 msgstr "Kategorie aktualisieren" 187 188 #: includes/class-project.php:141 189 msgid "Add New Category" 190 msgstr "Kategorie hinzufügen" 191 192 #: includes/class-project.php:142 193 msgid "New Category Name" 194 msgstr "Name der neuen Kategorie" 195 196 #: includes/class-project.php:143 197 msgid "Categories" 198 msgstr "Kategorien" 199 200 #: includes/class-project.php:144 201 msgid "You currently don't have any project categories." 202 msgstr "Sie haben derzeit keine Projektkategorien." 203 204 #: includes/class-project.php:158 205 msgid "Project Tags" 206 msgstr "Projektbeschriftungen" 207 208 #: includes/class-project.php:159 209 msgid "Project Tag" 210 msgstr "Projektbeschriftung" 211 212 #: includes/class-project.php:160 213 msgid "Search Tags" 214 msgstr "In den Etiketten suchen" 215 216 #: includes/class-project.php:161 217 msgid "All Tags" 218 msgstr "Alle Etiketten" 219 220 #: includes/class-project.php:162 221 msgid "Parent Tag" 222 msgstr "Übergeordnete Etikette" 223 224 #: includes/class-project.php:163 225 msgid "Parent Tag:" 226 msgstr "Parent Label :" 227 228 #: includes/class-project.php:164 229 msgid "Edit Tag" 230 msgstr "Etikett bearbeiten" 231 232 #: includes/class-project.php:165 233 msgid "Update Tag" 234 msgstr "Etikett aktualisieren" 235 236 #: includes/class-project.php:166 237 msgid "Add New Tag" 238 msgstr "Etikett hinzufügen" 239 240 #: includes/class-project.php:167 241 msgid "New Tag Name" 242 msgstr "Name des neuen Etiketts" 243 244 #: includes/class-project.php:168 245 msgid "Tags" 246 msgstr "Etiketten" 247 248 #: includes/class-project.php:378 249 msgid "Goal achieved: " 250 msgstr "Ziel erreicht: " 251 252 #: includes/class-project.php:379 253 msgid "Goal: " 254 msgstr "Ziel: " 255 256 #: includes/class-project.php:407 257 msgid "Collected: %1$s (%2$s sale)" 258 msgid_plural "Collected: %1$s (%2$s sales)" 259 msgstr[0] "Gesammelt: %1$s (%2$s Verkauf)" 260 msgstr[1] "Gesammelt: %1$s (%2$s Verkauf)" 261 262 #: includes/class-project.php:434 263 msgid "Project goals and counterparts" 264 msgstr "Projektziele und Gegenstücke" 265 266 #: includes/class-project.php:444 267 msgid "Add a goal" 268 msgstr "Füge ein Ziel hinzu" 269 270 #: includes/class-project.php:450 271 msgid "Goals" 272 msgstr "Ziele" 273 274 #: includes/class-project.php:456 includes/class-project.php:611 includes/class-woocommerce.php:345 275 msgid "Amount" 276 msgstr "Betrag" 277 278 #: includes/class-project.php:464 includes/class-project.php:493 includes/class-project.php:612 279 #: includes/class-project.php:669 280 msgid "Description" 281 msgstr "Beschreibung" 282 283 #: includes/class-project.php:478 284 msgid "Add a counterpart" 285 msgstr "Fügen Sie einen Gegenpart hinzu" 286 287 #: includes/class-project.php:485 includes/class-project.php:669 288 msgid "Price" 289 msgstr "Preis" 290 291 #: includes/class-project.php:500 includes/class-project.php:669 292 msgid "Threshold" 293 msgstr "Schwelle" 294 295 #: includes/class-project.php:527 296 msgid "Edit" 297 msgstr "Bearbeiten" 298 299 #: includes/class-project.php:667 300 msgid "Counterparts" 301 msgstr "Gegenstücke" 302 303 #: includes/class-woocommerce.php:64 304 msgid "Project Donation" 305 msgstr "Project Donation" 306 307 #: includes/class-woocommerce.php:65 308 msgid "Check to add a project field to product page." 309 msgstr "Aktivieren, um ein Projektfeld auf der Produktseite hinzuzufügen." 310 311 #: includes/class-woocommerce.php:107 312 msgid "Fixed project" 313 msgstr "Festes Projekt" 314 315 #: includes/class-woocommerce.php:109 includes/classes.php:84 316 msgid "Select a project" 317 msgstr "Projekt auswählen" 318 319 #: includes/class-woocommerce.php:123 320 msgid "Create at least one project first" 321 msgstr "Erstellen Sie zuerst mindestens ein Projekt" 322 323 #: includes/class-woocommerce.php:314 324 msgid "Enter a project name" 325 msgstr "Geben Sie einen Projektnamen ein" 326 327 #: includes/class-woocommerce.php:324 328 msgid "Project: " 329 msgstr "Projekt: " 330 331 #: includes/class-woocommerce.php:345 332 msgid "Add to fee" 333 msgstr "Zur Preisliste hinzufügen" 334 335 #: includes/class-woocommerce.php:417 336 msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay." 337 msgstr "\"%s\" kann nicht in den Warenkorb gelegt werden. Bitte geben Sie einen gültigen zu zahlenden Betrag an." 338 339 #: includes/class-woocommerce.php:431 340 msgid "\"%s\" could not be added to the cart. Please provide a project name." 341 msgstr "\"%s\" kann nicht in den Warenkorb gelegt werden. Bitte geben Sie einen Projektnamen an." 342 343 #: includes/class-woocommerce.php:512 344 msgid "Project ID" 345 msgstr "Projekt-ID" 346 347 #: includes/class-woocommerce.php:532 348 msgid "From" 349 msgstr "Ab" 350 351 #: includes/class-woocommerce.php:545 352 msgid "%s will be added to the chosen amount, the total price will be calculated before checkout." 353 msgstr "" 354 "Der gewählte Betrag wird zum Basispreis von %s addiert, der Gesamtpreis wird vor der Bestätigung der Bestellung " 355 "berechnet." 356 357 #: includes/classes.php:81 358 msgid "No posts found" 359 msgstr "Keine Artikel gefunden" 360 361 #: admin/wc-admin-classes.php:218 89 362 msgctxt "Select product" 90 363 msgid "None" 91 364 msgstr "Keine" 92 365 93 #: admin/wc-admin-classes.php:207 94 msgid "No categories found" 95 msgstr "Keine Kategorien gefunden" 96 97 #: admin/wc-admin-classes.php:209 366 #: admin/wc-admin-classes.php:241 98 367 msgctxt "Select category" 99 368 msgid "None" 100 369 msgstr "Keine" 101 370 102 #: admin/wc-admin-classes.php:226 103 msgid "No taxonomies found" 104 msgstr "Keine Taxonomie gefunden" 105 106 #: admin/wc-admin-classes.php:227 371 #: admin/wc-admin-classes.php:264 107 372 msgctxt "Select taxonomy" 108 373 msgid "None" 109 374 msgstr "Keine" 110 375 111 #: admin/wc-admin-classes.php:241 112 msgid "No post types found, wich is tretty weird." 113 msgstr "Es wurde keine Art von Artikel gefunden, was ziemlich seltsam ist." 114 115 #: admin/wc-admin-classes.php:243 376 #: admin/wc-admin-classes.php:282 116 377 msgctxt "Select post type" 117 378 msgid "None" 118 379 msgstr "Keine" 119 380 120 #: includes/classes.php:62 includes/classes.php:67121 msgid "Donate"122 msgstr "Spenden"123 124 #: includes/classes.php:214 includes/classes.php:373125 #: includes/post-type-project.php:6126 msgid "Project"127 msgstr "Projekt"128 129 #: includes/classes.php:217130 msgid "Enter a project name"131 msgstr "Geben Sie einen Projektnamen ein"132 133 #: includes/classes.php:227134 msgid "Project: "135 msgstr "Projekt: "136 137 #: includes/classes.php:235138 msgid "Add to fee"139 msgstr "Zur Preisliste hinzufügen"140 141 #: includes/classes.php:235142 msgid "Amount"143 msgstr "Betrag"144 145 #: includes/classes.php:236146 msgid "Donation amount"147 msgstr "Spendenbetrag"148 149 #: includes/classes.php:299150 msgid ""151 "\"%s\" could not be added to the cart. Please provide a valid amount to pay."152 msgstr ""153 "\"%s\" kann nicht in den Warenkorb gelegt werden. Bitte geben Sie einen "154 "gültigen zu zahlenden Betrag an."155 156 #: includes/classes.php:310157 msgid "\"%s\" could not be added to the cart. Please provide a project name."158 msgstr ""159 "\"%s\" kann nicht in den Warenkorb gelegt werden. Bitte geben Sie einen "160 "Projektnamen an."161 162 #: includes/classes.php:375163 msgid "Project ID"164 msgstr "Projekt-ID"165 166 #: includes/classes.php:392167 msgid "From"168 msgstr "Ab"169 170 #: includes/classes.php:403171 msgid ""172 "%s will be added to the chosen amount, the total price will be calculated "173 "before checkout."174 msgstr ""175 "Der gewählte Betrag wird zum Basispreis von %s addiert, der Gesamtpreis wird "176 "vor der Bestätigung der Bestellung berechnet."177 178 #: includes/classes.php:448179 msgid "No posts found"180 msgstr "Keine Artikel gefunden"181 182 #: includes/classes.php:450 includes/class-woocommerce.php:70183 msgid "Select a project"184 msgstr "Projekt auswählen"185 186 #: includes/post-type-project.php:5187 msgid "Projects"188 msgstr "Projekte"189 190 #: includes/post-type-project.php:7191 msgid "Add New"192 msgstr "Hinzufügen"193 194 #: includes/post-type-project.php:8195 msgid "Add New Project"196 msgstr "Projekt hinzufügen"197 198 #: includes/post-type-project.php:9199 msgid "Edit Project"200 msgstr "Projekt bearbeiten"201 202 #: includes/post-type-project.php:10203 msgid "New Project"204 msgstr "Neues Projekt"205 206 #: includes/post-type-project.php:11207 msgid "All Projects"208 msgstr "Alle Projekte"209 210 #: includes/post-type-project.php:12211 msgid "View Project"212 msgstr "Projekt ansehen"213 214 #: includes/post-type-project.php:13215 msgid "Search Projects"216 msgstr "In Projekten suchen"217 218 #: includes/post-type-project.php:14219 msgid "Nothing found"220 msgstr "Nichts gefunden"221 222 #: includes/post-type-project.php:15223 msgid "Nothing found in Trash"224 msgstr "Nichts im Papierkorb gefunden"225 226 #: includes/post-type-project.php:46227 msgid "Project Categories"228 msgstr "Projektkategorie"229 230 #: includes/post-type-project.php:47231 msgid "Project Category"232 msgstr "Kategorie des Projekts"233 234 #: includes/post-type-project.php:48235 msgid "Search Categories"236 msgstr "Kategorien durchsuchen"237 238 #: includes/post-type-project.php:49239 msgid "All Categories"240 msgstr "Alle Kategorien"241 242 #: includes/post-type-project.php:50243 msgid "Parent Category"244 msgstr "Übergeordnete Kategorie"245 246 #: includes/post-type-project.php:51247 msgid "Parent Category:"248 msgstr "Verwandte Kategorie :"249 250 #: includes/post-type-project.php:52251 msgid "Edit Category"252 msgstr "Kategorie bearbeiten"253 254 #: includes/post-type-project.php:53255 msgid "Update Category"256 msgstr "Kategorie aktualisieren"257 258 #: includes/post-type-project.php:54259 msgid "Add New Category"260 msgstr "Kategorie hinzufügen"261 262 #: includes/post-type-project.php:55263 msgid "New Category Name"264 msgstr "Name der neuen Kategorie"265 266 #: includes/post-type-project.php:56267 msgid "Categories"268 msgstr "Kategorien"269 270 #: includes/post-type-project.php:57271 msgid "You currently don't have any project categories."272 msgstr "Sie haben derzeit keine Projektkategorien."273 274 #: includes/post-type-project.php:71275 msgid "Project Tags"276 msgstr "Projektbeschriftungen"277 278 #: includes/post-type-project.php:72279 msgid "Project Tag"280 msgstr "Projektbeschriftung"281 282 #: includes/post-type-project.php:73283 msgid "Search Tags"284 msgstr "In den Etiketten suchen"285 286 #: includes/post-type-project.php:74287 msgid "All Tags"288 msgstr "Alle Etiketten"289 290 #: includes/post-type-project.php:75291 msgid "Parent Tag"292 msgstr "Übergeordnete Etikette"293 294 #: includes/post-type-project.php:76295 msgid "Parent Tag:"296 msgstr "Parent Label :"297 298 #: includes/post-type-project.php:77299 msgid "Edit Tag"300 msgstr "Etikett bearbeiten"301 302 #: includes/post-type-project.php:78303 msgid "Update Tag"304 msgstr "Etikett aktualisieren"305 306 #: includes/post-type-project.php:79307 msgid "Add New Tag"308 msgstr "Etikett hinzufügen"309 310 #: includes/post-type-project.php:80311 msgid "New Tag Name"312 msgstr "Name des neuen Etiketts"313 314 #: includes/post-type-project.php:81315 msgid "Tags"316 msgstr "Etiketten"317 318 #: includes/class-woocommerce.php:35319 msgid "Project Donation"320 msgstr "Project Donation"321 322 #: includes/class-woocommerce.php:36323 msgid "Check to add a project field to product page."324 msgstr "Aktivieren, um ein Projektfeld auf der Produktseite hinzuzufügen."325 326 #: includes/class-woocommerce.php:68327 msgid "Fixed project"328 msgstr ""329 330 #: includes/class-woocommerce.php:84331 msgid "Create at least one project first"332 msgstr ""333 334 381 #~ msgid "Amount to add" 335 382 #~ msgstr "Hinzuzufügender Betrag" -
project-donations-wc/trunk/languages/project-donations-wc-fr_FR.po
r2924105 r3053009 2 2 msgstr "" 3 3 "Project-Id-Version: Project Products for WooCommerce\n" 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-" 5 "wc-dev\n" 6 "POT-Creation-Date: 2023-06-08T23:31:27+00:00\n" 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-wc-dev\n" 5 "POT-Creation-Date: 2023-08-25T18:33:34+00:00\n" 7 6 "PO-Revision-Date: \n" 8 "Last-Translator: \n"7 "Last-Translator: gpt-po v1.0.7\n" 9 8 "Language-Team: \n" 10 9 "Language: fr\n" 11 10 "MIME-Version: 1.0\n" 12 "Content-Type: text/plain; charset= UTF-8\n"11 "Content-Type: text/plain; charset=utf-8\n" 13 12 "Content-Transfer-Encoding: 8bit\n" 14 13 "Plural-Forms: nplurals=2; plural=(n > 1);\n" … … 23 22 msgstr "https://wordpress.org/plugins/project-donations-wc/" 24 23 25 #. Description of the plugin 26 msgid "" 27 "Add project field to WooCommerce products, allow clients to link their " 28 "purchase to a project" 29 msgstr "" 30 "Ajoute un champ projet aux produits WooCommerce, permet au client de lier " 31 "leur achat à un projet" 24 msgid "Empower charity and crowdfunding projects with WooCommerce integration." 25 msgstr "Boostez vos projets caritatifs et crowdfundings avec WooCommerce." 32 26 33 27 #. Author of the plugin … … 39 33 msgstr "https://magiiic.com/fr/" 40 34 41 #: admin/wc-admin-classes.php:2 335 #: admin/wc-admin-classes.php:24 42 36 msgid "Settings" 43 37 msgstr "Réglages" 44 38 45 #: admin/wc-admin-classes.php:3 5 includes/class-woocommerce.php:4539 #: admin/wc-admin-classes.php:38 includes/class-woocommerce.php:79 46 40 msgid "Project Donations" 47 41 msgstr "Project Donations" 48 42 49 #: admin/wc-admin-classes.php: 7543 #: admin/wc-admin-classes.php:81 50 44 msgid "Default settings" 51 45 msgstr "Réglages par défaut" 52 46 53 #: admin/wc-admin-classes.php: 7847 #: admin/wc-admin-classes.php:84 54 48 msgid "These settings can be overridden for each product." 55 49 msgstr "Ces réglages peuvent être modifiés pour chaque produit." 56 50 57 #: admin/wc-admin-classes.php:8 151 #: admin/wc-admin-classes.php:87 58 52 msgid "Add project post type" 59 53 msgstr "Ajouter un type projet" 60 54 61 #: admin/wc-admin-classes.php: 8655 #: admin/wc-admin-classes.php:92 62 56 msgid "Create a project post type" 63 57 msgstr "Créer un type d'articles projet" 64 58 65 #: admin/wc-admin-classes.php: 87 admin/wc-admin-classes.php:12559 #: admin/wc-admin-classes.php:93 admin/wc-admin-classes.php:131 66 60 msgid "(enable only if no other plugin implements it)" 67 61 msgstr "(activer uniquement si aucune autre extension de l'implémente)" 68 62 69 #: admin/wc-admin-classes.php:9 263 #: admin/wc-admin-classes.php:98 70 64 msgid "Get projects from post type" 71 65 msgstr "Obtenir les projets depuis le type d'article" 72 66 73 #: admin/wc-admin-classes.php:1 1967 #: admin/wc-admin-classes.php:125 74 68 msgid "Customer defined amount" 75 69 msgstr "Montant défini par le client" 76 70 77 #: admin/wc-admin-classes.php:1 2471 #: admin/wc-admin-classes.php:130 78 72 msgid "Allow customer to choose the amount to pay" 79 73 msgstr "Permettre au client de choisir le montant à payer" 80 74 81 #: admin/wc-admin-classes.php:13 075 #: admin/wc-admin-classes.php:136 82 76 msgid "Minimum donation amount (%s)" 83 77 msgstr "Montant minimum de donation (%s)" 84 78 85 #: admin/wc-admin-classes.php:189 79 #: admin/wc-admin-classes.php:149 80 msgid "Donate button label" 81 msgstr "Libellé du bouton de don" 82 83 #: admin/wc-admin-classes.php:151 admin/wc-admin-classes.php:152 84 #: includes/class-woocommerce.php:367 includes/class-woocommerce.php:375 85 msgid "Donate" 86 msgstr "Faire un don" 87 88 #: admin/wc-admin-classes.php:157 89 msgid "Donation field placeholder" 90 msgstr "Champ de don pour faire un don" 91 92 #: admin/wc-admin-classes.php:159 admin/wc-admin-classes.php:160 93 #: includes/class-woocommerce.php:341 94 msgid "Donation amount" 95 msgstr "Montant du don" 96 97 #: admin/wc-admin-classes.php:215 86 98 msgid "No products found" 87 99 msgstr "Aucun produit trouvé" 88 100 89 #: admin/wc-admin-classes.php:191 101 #: admin/wc-admin-classes.php:238 102 msgid "No categories found" 103 msgstr "Aucune catégorie trouvée" 104 105 #: admin/wc-admin-classes.php:262 106 msgid "No taxonomies found" 107 msgstr "Aucune taxonomie trouvée" 108 109 #: admin/wc-admin-classes.php:279 110 msgid "No post types found, wich is tretty weird." 111 msgstr "Aucun type d'article trouvé, ce qui est plutôt bizarre." 112 113 #: includes/class-project.php:92 114 msgid "Projects" 115 msgstr "Projets" 116 117 #: includes/class-project.php:93 includes/class-woocommerce.php:311 118 #: includes/class-woocommerce.php:510 119 msgid "Project" 120 msgstr "Projet" 121 122 #: includes/class-project.php:94 123 msgid "Add New" 124 msgstr "Ajouter" 125 126 #: includes/class-project.php:95 127 msgid "Add New Project" 128 msgstr "Ajouter un projet" 129 130 #: includes/class-project.php:96 131 msgid "Edit Project" 132 msgstr "Modifier le projet" 133 134 #: includes/class-project.php:97 135 msgid "New Project" 136 msgstr "Nouveau projet" 137 138 #: includes/class-project.php:98 139 msgid "All Projects" 140 msgstr "Tous les projets" 141 142 #: includes/class-project.php:99 143 msgid "View Project" 144 msgstr "Voir projet" 145 146 #: includes/class-project.php:100 147 msgid "Search Projects" 148 msgstr "Rechercher dans les projets" 149 150 #: includes/class-project.php:101 151 msgid "Nothing found" 152 msgstr "Rien trouvé" 153 154 #: includes/class-project.php:102 155 msgid "Nothing found in Trash" 156 msgstr "Rien trouvé dans la corbeille" 157 158 #: includes/class-project.php:133 159 msgid "Project Categories" 160 msgstr "Catégorie de projet" 161 162 #: includes/class-project.php:134 163 msgid "Project Category" 164 msgstr "Catégorie du projet" 165 166 #: includes/class-project.php:135 167 msgid "Search Categories" 168 msgstr "Rechercher dans les catégories" 169 170 #: includes/class-project.php:136 171 msgid "All Categories" 172 msgstr "Toutes les catégories" 173 174 #: includes/class-project.php:137 175 msgid "Parent Category" 176 msgstr "Catégorie parente" 177 178 #: includes/class-project.php:138 179 msgid "Parent Category:" 180 msgstr "Catégorie parente :" 181 182 #: includes/class-project.php:139 183 msgid "Edit Category" 184 msgstr "Modifier la catégorie" 185 186 #: includes/class-project.php:140 187 msgid "Update Category" 188 msgstr "Mettre à jour la catégorie" 189 190 #: includes/class-project.php:141 191 msgid "Add New Category" 192 msgstr "Ajouter une catégorie" 193 194 #: includes/class-project.php:142 195 msgid "New Category Name" 196 msgstr "Nom de la nouvelle catégorie" 197 198 #: includes/class-project.php:143 199 msgid "Categories" 200 msgstr "Catégories" 201 202 #: includes/class-project.php:144 203 msgid "You currently don't have any project categories." 204 msgstr "Vous n'avez actuellement aucune catégorie de projet." 205 206 #: includes/class-project.php:158 207 msgid "Project Tags" 208 msgstr "Étiquettes de projet" 209 210 #: includes/class-project.php:159 211 msgid "Project Tag" 212 msgstr "Étiquette de projet" 213 214 #: includes/class-project.php:160 215 msgid "Search Tags" 216 msgstr "Rechercher dans les étiquettes" 217 218 #: includes/class-project.php:161 219 msgid "All Tags" 220 msgstr "Toutes les étiquettes" 221 222 #: includes/class-project.php:162 223 msgid "Parent Tag" 224 msgstr "Étiquette parente" 225 226 #: includes/class-project.php:163 227 msgid "Parent Tag:" 228 msgstr "Étiquette parente :" 229 230 #: includes/class-project.php:164 231 msgid "Edit Tag" 232 msgstr "Modifier l'étiquette" 233 234 #: includes/class-project.php:165 235 msgid "Update Tag" 236 msgstr "Mettre à jour l'étiquette" 237 238 #: includes/class-project.php:166 239 msgid "Add New Tag" 240 msgstr "Ajouter une étiquette" 241 242 #: includes/class-project.php:167 243 msgid "New Tag Name" 244 msgstr "Nom de la nouvelle étiquette" 245 246 #: includes/class-project.php:168 247 msgid "Tags" 248 msgstr "Étiquettes" 249 250 #: includes/class-project.php:378 251 msgid "Goal achieved: " 252 msgstr "Objectif atteint : " 253 254 #: includes/class-project.php:379 255 msgid "Goal: " 256 msgstr "Objectif : " 257 258 #: includes/class-project.php:407 259 msgid "Collected: %1$s (%2$s sale)" 260 msgid_plural "Collected: %1$s (%2$s sales)" 261 msgstr[0] "Collecté : %1$s (%2$s vente)" 262 msgstr[1] "Collecté : %1$s (%2$s ventes)" 263 264 #: includes/class-project.php:434 265 msgid "Project goals and counterparts" 266 msgstr "Objectifs et contreparties" 267 268 #: includes/class-project.php:444 269 msgid "Add a goal" 270 msgstr "Ajouter un objectif" 271 272 #: includes/class-project.php:450 273 msgid "Goals" 274 msgstr "Objectifs" 275 276 #: includes/class-project.php:456 includes/class-project.php:611 277 #: includes/class-woocommerce.php:345 278 msgid "Amount" 279 msgstr "Montant" 280 281 #: includes/class-project.php:464 includes/class-project.php:493 282 #: includes/class-project.php:612 includes/class-project.php:669 283 msgid "Description" 284 msgstr "Description" 285 286 #: includes/class-project.php:478 287 msgid "Add a counterpart" 288 msgstr "Ajouter une contrepartie" 289 290 #: includes/class-project.php:485 includes/class-project.php:669 291 msgid "Price" 292 msgstr "Prix" 293 294 #: includes/class-project.php:500 includes/class-project.php:669 295 msgid "Threshold" 296 msgstr "Seuil" 297 298 #: includes/class-project.php:527 299 msgid "Edit" 300 msgstr "Modifier" 301 302 #: includes/class-project.php:667 303 msgid "Counterparts" 304 msgstr "Contreparties" 305 306 #: includes/class-woocommerce.php:64 307 msgid "Project Donation" 308 msgstr "Project Donation" 309 310 #: includes/class-woocommerce.php:65 311 msgid "Check to add a project field to product page." 312 msgstr "Activer pour ajouter un champ projet à la page produit." 313 314 #: includes/class-woocommerce.php:107 315 msgid "Fixed project" 316 msgstr "Projet fixe" 317 318 #: includes/class-woocommerce.php:109 includes/classes.php:84 319 msgid "Select a project" 320 msgstr "Choisir un projet" 321 322 #: includes/class-woocommerce.php:123 323 msgid "Create at least one project first" 324 msgstr "Créez au moins un projet" 325 326 #: includes/class-woocommerce.php:314 327 msgid "Enter a project name" 328 msgstr "Entrez un nom de projet" 329 330 #: includes/class-woocommerce.php:324 331 msgid "Project: " 332 msgstr "Projet : " 333 334 #: includes/class-woocommerce.php:345 335 msgid "Add to fee" 336 msgstr "Ajouter au tarif" 337 338 #: includes/class-woocommerce.php:417 339 msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay." 340 msgstr "\"%s\" ne peut pas être ajouté au panier. Merci de fournir un montant à payer valide." 341 342 #: includes/class-woocommerce.php:431 343 msgid "\"%s\" could not be added to the cart. Please provide a project name." 344 msgstr "\"%s\" ne peut pas être ajouté au panier. Merci de fournir un nom de projet." 345 346 #: includes/class-woocommerce.php:512 347 msgid "Project ID" 348 msgstr "ID du projet" 349 350 #: includes/class-woocommerce.php:532 351 msgid "From" 352 msgstr "À partir de" 353 354 #: includes/class-woocommerce.php:545 355 msgid "%s will be added to the chosen amount, the total price will be calculated before checkout." 356 msgstr "Le montant choisi sera ajouté au tarif de base de %s, le prix total sera calculé avant la validation de la commande." 357 358 #: includes/classes.php:81 359 msgid "No posts found" 360 msgstr "Aucun article trouvé" 361 362 #: admin/wc-admin-classes.php:218 90 363 msgctxt "Select product" 91 364 msgid "None" 92 365 msgstr "Aucun" 93 366 94 #: admin/wc-admin-classes.php:207 95 msgid "No categories found" 96 msgstr "Aucune catégorie trouvée" 97 98 #: admin/wc-admin-classes.php:209 367 #: admin/wc-admin-classes.php:241 99 368 msgctxt "Select category" 100 369 msgid "None" 101 370 msgstr "Aucune" 102 371 103 #: admin/wc-admin-classes.php:226 104 msgid "No taxonomies found" 105 msgstr "Aucune taxonomie trouvée" 106 107 #: admin/wc-admin-classes.php:227 372 #: admin/wc-admin-classes.php:264 108 373 msgctxt "Select taxonomy" 109 374 msgid "None" 110 375 msgstr "Aucune" 111 376 112 #: admin/wc-admin-classes.php:241 113 msgid "No post types found, wich is tretty weird." 114 msgstr "Aucun type d'article trouvé, ce qui est plutôt bizarre." 115 116 #: admin/wc-admin-classes.php:243 377 #: admin/wc-admin-classes.php:282 117 378 msgctxt "Select post type" 118 379 msgid "None" 119 380 msgstr "Aucun" 120 381 121 #: includes/class-project.php:178122 msgid "Goal achieved: "123 msgstr "Objectif atteint : "124 125 #: includes/class-project.php:179126 msgid "Goal: "127 msgstr "Objectif : "128 129 #: includes/class-project.php:205130 msgid "Collected: %s (%s sale)"131 msgid_plural "Collected: %s (%s sales)"132 msgstr[0] "Collecté : %s (%s vente)"133 msgstr[1] "Collecté : %s (%s ventes)"134 135 #: includes/class-project.php:226136 msgid "Project goals and counterparts"137 msgstr "Objectifs et contreparties"138 139 #: includes/class-project.php:236140 msgid "Add a goal"141 msgstr "Ajouter un objectif"142 143 #: includes/class-project.php:241144 msgid "Goals"145 msgstr "Objectifs"146 147 #: includes/class-project.php:246 includes/class-project.php:392148 #: includes/classes.php:256149 msgid "Amount"150 msgstr "Montant"151 152 #: includes/class-project.php:254 includes/class-project.php:283153 #: includes/class-project.php:393 includes/class-project.php:440154 msgid "Description"155 msgstr "Description"156 157 #: includes/class-project.php:268158 msgid "Add a counterpart"159 msgstr "Ajouter une contrepartie"160 161 #: includes/class-project.php:275 includes/class-project.php:440162 msgid "Price"163 msgstr "Prix"164 165 #: includes/class-project.php:290 includes/class-project.php:440166 msgid "Threshold"167 msgstr "Seuil"168 169 #: includes/class-project.php:322170 msgid "Edit"171 msgstr "Modifier"172 173 #: includes/class-project.php:438174 msgid "Counterparts"175 msgstr "Contreparties"176 177 #: includes/classes.php:63 includes/classes.php:68178 msgid "Donate"179 msgstr "Faire un don"180 181 #: includes/classes.php:225 includes/classes.php:394182 #: includes/post-type-project.php:6183 msgid "Project"184 msgstr "Projet"185 186 #: includes/classes.php:228187 msgid "Enter a project name"188 msgstr "Entrez un nom de projet"189 190 #: includes/classes.php:238191 msgid "Project: "192 msgstr "Projet : "193 194 #: includes/classes.php:256195 msgid "Add to fee"196 msgstr "Ajouter au tarif"197 198 #: includes/classes.php:257199 msgid "Donation amount"200 msgstr "Montant du don"201 202 #: includes/classes.php:320203 msgid ""204 "\"%s\" could not be added to the cart. Please provide a valid amount to pay."205 msgstr ""206 "\"%s\" ne peut pas être ajouté au panier. Merci de fournir un montant à "207 "payer valide."208 209 #: includes/classes.php:331210 msgid "\"%s\" could not be added to the cart. Please provide a project name."211 msgstr ""212 "\"%s\" ne peut pas être ajouté au panier. Merci de fournir un nom de projet."213 214 #: includes/classes.php:396215 msgid "Project ID"216 msgstr "ID du projet"217 218 #: includes/classes.php:413219 msgid "From"220 msgstr "À partir de"221 222 #: includes/classes.php:424223 msgid ""224 "%s will be added to the chosen amount, the total price will be calculated "225 "before checkout."226 msgstr ""227 "Le montant choisi sera ajouté au tarif de base de %s, le prix total sera "228 "calculé avant la validation de la commande."229 230 #: includes/classes.php:469231 msgid "No posts found"232 msgstr "Aucun article trouvé"233 234 #: includes/classes.php:471 includes/class-woocommerce.php:70235 msgid "Select a project"236 msgstr "Choisir un projet"237 238 #: includes/post-type-project.php:5239 msgid "Projects"240 msgstr "Projets"241 242 #: includes/post-type-project.php:7243 msgid "Add New"244 msgstr "Ajouter"245 246 #: includes/post-type-project.php:8247 msgid "Add New Project"248 msgstr "Ajouter un projet"249 250 #: includes/post-type-project.php:9251 msgid "Edit Project"252 msgstr "Modifier le projet"253 254 #: includes/post-type-project.php:10255 msgid "New Project"256 msgstr "Nouveau projet"257 258 #: includes/post-type-project.php:11259 msgid "All Projects"260 msgstr "Tous les projets"261 262 #: includes/post-type-project.php:12263 msgid "View Project"264 msgstr "Voir projet"265 266 #: includes/post-type-project.php:13267 msgid "Search Projects"268 msgstr "Rechercher dans les projets"269 270 #: includes/post-type-project.php:14271 msgid "Nothing found"272 msgstr "Rien trouvé"273 274 #: includes/post-type-project.php:15275 msgid "Nothing found in Trash"276 msgstr "Rien trouvé dans la corbeille"277 278 #: includes/post-type-project.php:46279 msgid "Project Categories"280 msgstr "Catégorie de projet"281 282 #: includes/post-type-project.php:47283 msgid "Project Category"284 msgstr "Catégorie du projet"285 286 #: includes/post-type-project.php:48287 msgid "Search Categories"288 msgstr "Rechercher dans les catégories"289 290 #: includes/post-type-project.php:49291 msgid "All Categories"292 msgstr "Toutes les catégories"293 294 #: includes/post-type-project.php:50295 msgid "Parent Category"296 msgstr "Catégorie parente"297 298 #: includes/post-type-project.php:51299 msgid "Parent Category:"300 msgstr "Catégorie parente :"301 302 #: includes/post-type-project.php:52303 msgid "Edit Category"304 msgstr "Modifier la catégorie"305 306 #: includes/post-type-project.php:53307 msgid "Update Category"308 msgstr "Mettre à jour la catégorie"309 310 #: includes/post-type-project.php:54311 msgid "Add New Category"312 msgstr "Ajouter une catégorie"313 314 #: includes/post-type-project.php:55315 msgid "New Category Name"316 msgstr "Nom de la nouvelle catégorie"317 318 #: includes/post-type-project.php:56319 msgid "Categories"320 msgstr "Catégories"321 322 #: includes/post-type-project.php:57323 msgid "You currently don't have any project categories."324 msgstr "Vous n'avez actuellement aucune catégorie de projet."325 326 #: includes/post-type-project.php:71327 msgid "Project Tags"328 msgstr "Étiquettes de projet"329 330 #: includes/post-type-project.php:72331 msgid "Project Tag"332 msgstr "Étiquette de projet"333 334 #: includes/post-type-project.php:73335 msgid "Search Tags"336 msgstr "Rechercher dans les étiquettes"337 338 #: includes/post-type-project.php:74339 msgid "All Tags"340 msgstr "Toutes les étiquettes"341 342 #: includes/post-type-project.php:75343 msgid "Parent Tag"344 msgstr "Étiquette parente"345 346 #: includes/post-type-project.php:76347 msgid "Parent Tag:"348 msgstr "Étiquette parente :"349 350 #: includes/post-type-project.php:77351 msgid "Edit Tag"352 msgstr "Modifier l'étiquette"353 354 #: includes/post-type-project.php:78355 msgid "Update Tag"356 msgstr "Mettre à jour l'étiquette"357 358 #: includes/post-type-project.php:79359 msgid "Add New Tag"360 msgstr "Ajouter une étiquette"361 362 #: includes/post-type-project.php:80363 msgid "New Tag Name"364 msgstr "Nom de la nouvelle étiquette"365 366 #: includes/post-type-project.php:81367 msgid "Tags"368 msgstr "Étiquettes"369 370 #: includes/class-woocommerce.php:35371 msgid "Project Donation"372 msgstr "Project Donation"373 374 #: includes/class-woocommerce.php:36375 msgid "Check to add a project field to product page."376 msgstr "Activer pour ajouter un champ projet à la page produit."377 378 #: includes/class-woocommerce.php:68379 msgid "Fixed project"380 msgstr "Projet fixe"381 382 #: includes/class-woocommerce.php:84383 msgid "Create at least one project first"384 msgstr "Créez au moins un projet"385 386 382 #~ msgid "Next goal: " 387 383 #~ msgstr "Objectif suivant : " -
project-donations-wc/trunk/languages/project-donations-wc-nl_NL.po
r2924105 r3053009 2 2 msgstr "" 3 3 "Project-Id-Version: Project Products for WooCommerce\n" 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-" 5 "wc-dev\n" 6 "POT-Creation-Date: 2023-06-05T01:48:05+00:00\n" 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-wc-dev\n" 5 "POT-Creation-Date: 2023-08-25T18:33:34+00:00\n" 7 6 "PO-Revision-Date: \n" 8 "Last-Translator: \n"7 "Last-Translator: gpt-po v1.0.7\n" 9 8 "Language-Team: \n" 10 9 "Language: nl\n" 11 10 "MIME-Version: 1.0\n" 12 "Content-Type: text/plain; charset= UTF-8\n"11 "Content-Type: text/plain; charset=utf-8\n" 13 12 "Content-Transfer-Encoding: 8bit\n" 13 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 14 "X-Generator: Poedit 3.0.1\n" 15 15 … … 22 22 msgstr "https://wordpress.org/plugins/project-donations-wc/" 23 23 24 #. Description of the plugin 25 msgid "" 26 "Add project field to WooCommerce products, allow clients to link their " 27 "purchase to a project" 28 msgstr "" 29 "Voegt een project veld toe aan WooCommerce producten, zodat de klant zijn " 30 "aankoop kan koppelen aan een project" 24 msgid "Empower charity and crowdfunding projects with WooCommerce integration." 25 msgstr "Boost je liefdadigheids- en crowdfundingprojecten met WooCommerce." 31 26 32 27 #. Author of the plugin … … 38 33 msgstr "https://magiiic.com/" 39 34 40 #: admin/wc-admin-classes.php:2 335 #: admin/wc-admin-classes.php:24 41 36 msgid "Settings" 42 37 msgstr "Instellingen" 43 38 44 #: admin/wc-admin-classes.php:3 5 includes/class-woocommerce.php:4539 #: admin/wc-admin-classes.php:38 includes/class-woocommerce.php:79 45 40 msgid "Project Donations" 46 41 msgstr "Project Donations" 47 42 48 #: admin/wc-admin-classes.php: 7543 #: admin/wc-admin-classes.php:81 49 44 msgid "Default settings" 50 45 msgstr "Standaard instellingen" 51 46 52 #: admin/wc-admin-classes.php: 7847 #: admin/wc-admin-classes.php:84 53 48 msgid "These settings can be overridden for each product." 54 49 msgstr "Deze instellingen kunnen voor elk product worden gewijzigd." 55 50 56 #: admin/wc-admin-classes.php:8 151 #: admin/wc-admin-classes.php:87 57 52 msgid "Add project post type" 58 53 msgstr "Een projecttype toevoegen" 59 54 60 #: admin/wc-admin-classes.php: 8655 #: admin/wc-admin-classes.php:92 61 56 msgid "Create a project post type" 62 57 msgstr "Creëer een project item type" 63 58 64 #: admin/wc-admin-classes.php: 87 admin/wc-admin-classes.php:12559 #: admin/wc-admin-classes.php:93 admin/wc-admin-classes.php:131 65 60 msgid "(enable only if no other plugin implements it)" 66 61 msgstr "(alleen activeren als geen andere extensie het implementeert)" 67 62 68 #: admin/wc-admin-classes.php:9 263 #: admin/wc-admin-classes.php:98 69 64 msgid "Get projects from post type" 70 65 msgstr "Verkrijg projecten van het type artikel" 71 66 72 #: admin/wc-admin-classes.php:1 1967 #: admin/wc-admin-classes.php:125 73 68 msgid "Customer defined amount" 74 69 msgstr "Door de klant bepaald bedrag" 75 70 76 #: admin/wc-admin-classes.php:1 2471 #: admin/wc-admin-classes.php:130 77 72 msgid "Allow customer to choose the amount to pay" 78 73 msgstr "De klant toestaan het te betalen bedrag te kiezen" 79 74 80 #: admin/wc-admin-classes.php:13 075 #: admin/wc-admin-classes.php:136 81 76 msgid "Minimum donation amount (%s)" 82 77 msgstr "Minimum donatiebedrag (%s)" 83 78 84 #: admin/wc-admin-classes.php:189 79 #: admin/wc-admin-classes.php:149 80 msgid "Donate button label" 81 msgstr "Knop voor doneren" 82 83 #: admin/wc-admin-classes.php:151 admin/wc-admin-classes.php:152 includes/class-woocommerce.php:367 84 #: includes/class-woocommerce.php:375 85 msgid "Donate" 86 msgstr "Doneren" 87 88 #: admin/wc-admin-classes.php:157 89 msgid "Donation field placeholder" 90 msgstr "Donatieveld placeholder" 91 92 #: admin/wc-admin-classes.php:159 admin/wc-admin-classes.php:160 includes/class-woocommerce.php:341 93 msgid "Donation amount" 94 msgstr "Donatiebedrag" 95 96 #: admin/wc-admin-classes.php:215 85 97 msgid "No products found" 86 98 msgstr "Geen producten gevonden" 87 99 88 #: admin/wc-admin-classes.php:191 100 #: admin/wc-admin-classes.php:238 101 msgid "No categories found" 102 msgstr "Geen categorie gevonden" 103 104 #: admin/wc-admin-classes.php:262 105 msgid "No taxonomies found" 106 msgstr "Geen taxonomie gevonden" 107 108 #: admin/wc-admin-classes.php:279 109 msgid "No post types found, wich is tretty weird." 110 msgstr "Geen type artikel gevonden, wat nogal vreemd is." 111 112 #: includes/class-project.php:92 113 msgid "Projects" 114 msgstr "Projecten" 115 116 #: includes/class-project.php:93 includes/class-woocommerce.php:311 includes/class-woocommerce.php:510 117 msgid "Project" 118 msgstr "Project" 119 120 #: includes/class-project.php:94 121 msgid "Add New" 122 msgstr "Toevoegen" 123 124 #: includes/class-project.php:95 125 msgid "Add New Project" 126 msgstr "Een project toevoegen" 127 128 #: includes/class-project.php:96 129 msgid "Edit Project" 130 msgstr "Het project wijzigen" 131 132 #: includes/class-project.php:97 133 msgid "New Project" 134 msgstr "Nieuw project" 135 136 #: includes/class-project.php:98 137 msgid "All Projects" 138 msgstr "Alle projecten" 139 140 #: includes/class-project.php:99 141 msgid "View Project" 142 msgstr "Zie project" 143 144 #: includes/class-project.php:100 145 msgid "Search Projects" 146 msgstr "Zoeken in projecten" 147 148 #: includes/class-project.php:101 149 msgid "Nothing found" 150 msgstr "Niets gevonden" 151 152 #: includes/class-project.php:102 153 msgid "Nothing found in Trash" 154 msgstr "Niets gevonden in de mand" 155 156 #: includes/class-project.php:133 157 msgid "Project Categories" 158 msgstr "Categorie projecten" 159 160 #: includes/class-project.php:134 161 msgid "Project Category" 162 msgstr "Categorie projecten" 163 164 #: includes/class-project.php:135 165 msgid "Search Categories" 166 msgstr "Zoeken in categorieën" 167 168 #: includes/class-project.php:136 169 msgid "All Categories" 170 msgstr "Alle categorieën" 171 172 #: includes/class-project.php:137 173 msgid "Parent Category" 174 msgstr "Ouder categorie" 175 176 #: includes/class-project.php:138 177 msgid "Parent Category:" 178 msgstr "Verwante categorie :" 179 180 #: includes/class-project.php:139 181 msgid "Edit Category" 182 msgstr "Categorie wijzigen" 183 184 #: includes/class-project.php:140 185 msgid "Update Category" 186 msgstr "Categorie bijwerken" 187 188 #: includes/class-project.php:141 189 msgid "Add New Category" 190 msgstr "Een categorie toevoegen" 191 192 #: includes/class-project.php:142 193 msgid "New Category Name" 194 msgstr "Naam van de nieuwe categorie" 195 196 #: includes/class-project.php:143 197 msgid "Categories" 198 msgstr "Categorieën" 199 200 #: includes/class-project.php:144 201 msgid "You currently don't have any project categories." 202 msgstr "U hebt momenteel geen projectcategorieën." 203 204 #: includes/class-project.php:158 205 msgid "Project Tags" 206 msgstr "Project labels" 207 208 #: includes/class-project.php:159 209 msgid "Project Tag" 210 msgstr "Projectlabel" 211 212 #: includes/class-project.php:160 213 msgid "Search Tags" 214 msgstr "Zoeken in etiketten" 215 216 #: includes/class-project.php:161 217 msgid "All Tags" 218 msgstr "Alle etiketten" 219 220 #: includes/class-project.php:162 221 msgid "Parent Tag" 222 msgstr "Label van de ouders" 223 224 #: includes/class-project.php:163 225 msgid "Parent Tag:" 226 msgstr "Ouder label :" 227 228 #: includes/class-project.php:164 229 msgid "Edit Tag" 230 msgstr "Verander het etiket" 231 232 #: includes/class-project.php:165 233 msgid "Update Tag" 234 msgstr "Het etiket bijwerken" 235 236 #: includes/class-project.php:166 237 msgid "Add New Tag" 238 msgstr "Een etiket toevoegen" 239 240 #: includes/class-project.php:167 241 msgid "New Tag Name" 242 msgstr "Naam van het nieuwe label" 243 244 #: includes/class-project.php:168 245 msgid "Tags" 246 msgstr "Etiketten" 247 248 #: includes/class-project.php:378 249 msgid "Goal achieved: " 250 msgstr "Doel bereikt: " 251 252 #: includes/class-project.php:379 253 msgid "Goal: " 254 msgstr "Doel: " 255 256 #: includes/class-project.php:407 257 msgid "Collected: %1$s (%2$s sale)" 258 msgid_plural "Collected: %1$s (%2$s sales)" 259 msgstr[0] "Verzameld: %1$s (%2$s verkoop)" 260 msgstr[1] "Verzameld: %1$s (%2$s verkopen)" 261 262 #: includes/class-project.php:434 263 msgid "Project goals and counterparts" 264 msgstr "Projectdoelen en tegenhangers" 265 266 #: includes/class-project.php:444 267 msgid "Add a goal" 268 msgstr "Voeg een doel toe" 269 270 #: includes/class-project.php:450 271 msgid "Goals" 272 msgstr "Doelen" 273 274 #: includes/class-project.php:456 includes/class-project.php:611 includes/class-woocommerce.php:345 275 msgid "Amount" 276 msgstr "Bedrag" 277 278 #: includes/class-project.php:464 includes/class-project.php:493 includes/class-project.php:612 279 #: includes/class-project.php:669 280 msgid "Description" 281 msgstr "Beschrijving" 282 283 #: includes/class-project.php:478 284 msgid "Add a counterpart" 285 msgstr "Voeg een tegenhanger toe" 286 287 #: includes/class-project.php:485 includes/class-project.php:669 288 msgid "Price" 289 msgstr "Prijs" 290 291 #: includes/class-project.php:500 includes/class-project.php:669 292 msgid "Threshold" 293 msgstr "Drempelwaarde" 294 295 #: includes/class-project.php:527 296 msgid "Edit" 297 msgstr "Bewerken" 298 299 #: includes/class-project.php:667 300 msgid "Counterparts" 301 msgstr "Tegenhangers" 302 303 #: includes/class-woocommerce.php:64 304 msgid "Project Donation" 305 msgstr "Project Donation" 306 307 #: includes/class-woocommerce.php:65 308 msgid "Check to add a project field to product page." 309 msgstr "Activeer om een projectveld aan de productpagina toe te voegen." 310 311 #: includes/class-woocommerce.php:107 312 msgid "Fixed project" 313 msgstr "Vastgesteld project" 314 315 #: includes/class-woocommerce.php:109 includes/classes.php:84 316 msgid "Select a project" 317 msgstr "Kies een project" 318 319 #: includes/class-woocommerce.php:123 320 msgid "Create at least one project first" 321 msgstr "Maak eerst minimaal één project aan" 322 323 #: includes/class-woocommerce.php:314 324 msgid "Enter a project name" 325 msgstr "Voer een projectnaam in" 326 327 #: includes/class-woocommerce.php:324 328 msgid "Project: " 329 msgstr "Project: " 330 331 #: includes/class-woocommerce.php:345 332 msgid "Add to fee" 333 msgstr "Toevoegen aan prijslijst" 334 335 #: includes/class-woocommerce.php:417 336 msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay." 337 msgstr "\"%s\" kan niet aan het mandje worden toegevoegd. Geef een geldig bedrag om te betalen." 338 339 #: includes/class-woocommerce.php:431 340 msgid "\"%s\" could not be added to the cart. Please provide a project name." 341 msgstr "\"%s\" kan niet aan het mandje worden toegevoegd. Geef een projectnaam." 342 343 #: includes/class-woocommerce.php:512 344 msgid "Project ID" 345 msgstr "Project-ID" 346 347 #: includes/class-woocommerce.php:532 348 msgid "From" 349 msgstr "Van" 350 351 #: includes/class-woocommerce.php:545 352 msgid "%s will be added to the chosen amount, the total price will be calculated before checkout." 353 msgstr "" 354 "Het gekozen bedrag zal worden toegevoegd aan de basisprijs van %s, de totale prijs zal worden berekend voor de " 355 "validatie van de bestelling." 356 357 #: includes/classes.php:81 358 msgid "No posts found" 359 msgstr "Geen items gevonden" 360 361 #: admin/wc-admin-classes.php:218 89 362 msgctxt "Select product" 90 363 msgid "None" 91 364 msgstr "Geen" 92 365 93 #: admin/wc-admin-classes.php:207 94 msgid "No categories found" 95 msgstr "Geen categorie gevonden" 96 97 #: admin/wc-admin-classes.php:209 366 #: admin/wc-admin-classes.php:241 98 367 msgctxt "Select category" 99 368 msgid "None" 100 369 msgstr "Geen" 101 370 102 #: admin/wc-admin-classes.php:226 103 msgid "No taxonomies found" 104 msgstr "Geen taxonomie gevonden" 105 106 #: admin/wc-admin-classes.php:227 371 #: admin/wc-admin-classes.php:264 107 372 msgctxt "Select taxonomy" 108 373 msgid "None" 109 374 msgstr "Geen" 110 375 111 #: admin/wc-admin-classes.php:241 112 msgid "No post types found, wich is tretty weird." 113 msgstr "Geen type artikel gevonden, wat nogal vreemd is." 114 115 #: admin/wc-admin-classes.php:243 376 #: admin/wc-admin-classes.php:282 116 377 msgctxt "Select post type" 117 378 msgid "None" 118 379 msgstr "Geen" 119 380 120 #: includes/classes.php:62 includes/classes.php:67121 msgid "Donate"122 msgstr "Doneren"123 124 #: includes/classes.php:214 includes/classes.php:373125 #: includes/post-type-project.php:6126 msgid "Project"127 msgstr "Project"128 129 #: includes/classes.php:217130 msgid "Enter a project name"131 msgstr "Voer een projectnaam in"132 133 #: includes/classes.php:227134 msgid "Project: "135 msgstr "Project: "136 137 #: includes/classes.php:235138 msgid "Add to fee"139 msgstr "Toevoegen aan prijslijst"140 141 #: includes/classes.php:235142 msgid "Amount"143 msgstr "Bedrag"144 145 #: includes/classes.php:236146 msgid "Donation amount"147 msgstr "Donatiebedrag"148 149 #: includes/classes.php:299150 msgid ""151 "\"%s\" could not be added to the cart. Please provide a valid amount to pay."152 msgstr ""153 "\"%s\" kan niet aan het mandje worden toegevoegd. Geef een geldig bedrag om "154 "te betalen."155 156 #: includes/classes.php:310157 msgid "\"%s\" could not be added to the cart. Please provide a project name."158 msgstr ""159 "\"%s\" kan niet aan het mandje worden toegevoegd. Geef een projectnaam."160 161 #: includes/classes.php:375162 msgid "Project ID"163 msgstr "Project-ID"164 165 #: includes/classes.php:392166 msgid "From"167 msgstr "Van"168 169 #: includes/classes.php:403170 msgid ""171 "%s will be added to the chosen amount, the total price will be calculated "172 "before checkout."173 msgstr ""174 "Het gekozen bedrag zal worden toegevoegd aan de basisprijs van %s, de totale "175 "prijs zal worden berekend voor de validatie van de bestelling."176 177 #: includes/classes.php:448178 msgid "No posts found"179 msgstr "Geen items gevonden"180 181 #: includes/classes.php:450 includes/class-woocommerce.php:70182 msgid "Select a project"183 msgstr "Kies een project"184 185 #: includes/post-type-project.php:5186 msgid "Projects"187 msgstr "Projecten"188 189 #: includes/post-type-project.php:7190 msgid "Add New"191 msgstr "Toevoegen"192 193 #: includes/post-type-project.php:8194 msgid "Add New Project"195 msgstr "Een project toevoegen"196 197 #: includes/post-type-project.php:9198 msgid "Edit Project"199 msgstr "Het project wijzigen"200 201 #: includes/post-type-project.php:10202 msgid "New Project"203 msgstr "Nieuw project"204 205 #: includes/post-type-project.php:11206 msgid "All Projects"207 msgstr "Alle projecten"208 209 #: includes/post-type-project.php:12210 msgid "View Project"211 msgstr "Zie project"212 213 #: includes/post-type-project.php:13214 msgid "Search Projects"215 msgstr "Zoeken in projecten"216 217 #: includes/post-type-project.php:14218 msgid "Nothing found"219 msgstr "Niets gevonden"220 221 #: includes/post-type-project.php:15222 msgid "Nothing found in Trash"223 msgstr "Niets gevonden in de mand"224 225 #: includes/post-type-project.php:46226 msgid "Project Categories"227 msgstr "Categorie projecten"228 229 #: includes/post-type-project.php:47230 msgid "Project Category"231 msgstr "Categorie projecten"232 233 #: includes/post-type-project.php:48234 msgid "Search Categories"235 msgstr "Zoeken in categorieën"236 237 #: includes/post-type-project.php:49238 msgid "All Categories"239 msgstr "Alle categorieën"240 241 #: includes/post-type-project.php:50242 msgid "Parent Category"243 msgstr "Ouder categorie"244 245 #: includes/post-type-project.php:51246 msgid "Parent Category:"247 msgstr "Verwante categorie :"248 249 #: includes/post-type-project.php:52250 msgid "Edit Category"251 msgstr "Categorie wijzigen"252 253 #: includes/post-type-project.php:53254 msgid "Update Category"255 msgstr "Categorie bijwerken"256 257 #: includes/post-type-project.php:54258 msgid "Add New Category"259 msgstr "Een categorie toevoegen"260 261 #: includes/post-type-project.php:55262 msgid "New Category Name"263 msgstr "Naam van de nieuwe categorie"264 265 #: includes/post-type-project.php:56266 msgid "Categories"267 msgstr "Categorieën"268 269 #: includes/post-type-project.php:57270 msgid "You currently don't have any project categories."271 msgstr "U hebt momenteel geen projectcategorieën."272 273 #: includes/post-type-project.php:71274 msgid "Project Tags"275 msgstr "Project labels"276 277 #: includes/post-type-project.php:72278 msgid "Project Tag"279 msgstr "Projectlabel"280 281 #: includes/post-type-project.php:73282 msgid "Search Tags"283 msgstr "Zoeken in etiketten"284 285 #: includes/post-type-project.php:74286 msgid "All Tags"287 msgstr "Alle etiketten"288 289 #: includes/post-type-project.php:75290 msgid "Parent Tag"291 msgstr "Label van de ouders"292 293 #: includes/post-type-project.php:76294 msgid "Parent Tag:"295 msgstr "Ouder label :"296 297 #: includes/post-type-project.php:77298 msgid "Edit Tag"299 msgstr "Verander het etiket"300 301 #: includes/post-type-project.php:78302 msgid "Update Tag"303 msgstr "Het etiket bijwerken"304 305 #: includes/post-type-project.php:79306 msgid "Add New Tag"307 msgstr "Een etiket toevoegen"308 309 #: includes/post-type-project.php:80310 msgid "New Tag Name"311 msgstr "Naam van het nieuwe label"312 313 #: includes/post-type-project.php:81314 msgid "Tags"315 msgstr "Etiketten"316 317 #: includes/class-woocommerce.php:35318 msgid "Project Donation"319 msgstr "Project Donation"320 321 #: includes/class-woocommerce.php:36322 msgid "Check to add a project field to product page."323 msgstr "Activeer om een projectveld aan de productpagina toe te voegen."324 325 #: includes/class-woocommerce.php:68326 msgid "Fixed project"327 msgstr ""328 329 #: includes/class-woocommerce.php:84330 msgid "Create at least one project first"331 msgstr ""332 333 381 #~ msgid "Amount to add" 334 382 #~ msgstr "Toe te voegen bedrag" -
project-donations-wc/trunk/languages/project-donations-wc.pot
r2924105 r3053009 1 1 # Copyright (C) 2023 Magiiic 2 # This file is distributed under the same license as the Project Donations for WooCommerce plugin.2 # This file is distributed under the same license as the Project Donations for WooCommerceplugin. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Project Donations for WooCommerce 1.5\n"5 "Project-Id-Version: Project Donations for WooCommerce1.5.6-rc-4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-wc-dev\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023- 06-08T23:31:27+00:00\n"12 "POT-Creation-Date: 2023-10-31T02:28:07+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.8. 0\n"14 "X-Generator: WP-CLI 2.8.1\n" 15 15 16 16 #. Plugin Name of the plugin … … 23 23 24 24 #. Description of the plugin 25 msgid " Add project field to WooCommerce products, allow clients to link their purchase to a project"25 msgid "Empower charity and crowdfunding projects with WooCommerce integration." 26 26 msgstr "" 27 27 … … 34 34 msgstr "" 35 35 36 #: admin/wc-admin-classes.php:2 336 #: admin/wc-admin-classes.php:24 37 37 msgid "Settings" 38 38 msgstr "" 39 39 40 #: admin/wc-admin-classes.php:3 541 #: includes/class-woocommerce.php: 4540 #: admin/wc-admin-classes.php:38 41 #: includes/class-woocommerce.php:79 42 42 msgid "Project Donations" 43 43 msgstr "" 44 44 45 #: admin/wc-admin-classes.php: 7545 #: admin/wc-admin-classes.php:81 46 46 msgid "Default settings" 47 47 msgstr "" 48 48 49 #: admin/wc-admin-classes.php: 7849 #: admin/wc-admin-classes.php:84 50 50 msgid "These settings can be overridden for each product." 51 51 msgstr "" 52 52 53 #: admin/wc-admin-classes.php:8 153 #: admin/wc-admin-classes.php:87 54 54 msgid "Add project post type" 55 55 msgstr "" 56 56 57 #: admin/wc-admin-classes.php: 8657 #: admin/wc-admin-classes.php:92 58 58 msgid "Create a project post type" 59 59 msgstr "" 60 60 61 #: admin/wc-admin-classes.php:87 61 #: admin/wc-admin-classes.php:93 62 #: admin/wc-admin-classes.php:131 63 msgid "(enable only if no other plugin implements it)" 64 msgstr "" 65 66 #: admin/wc-admin-classes.php:98 67 msgid "Get projects from post type" 68 msgstr "" 69 62 70 #: admin/wc-admin-classes.php:125 63 msgid "(enable only if no other plugin implements it)"64 msgstr ""65 66 #: admin/wc-admin-classes.php:9267 msgid "Get projects from post type"68 msgstr ""69 70 #: admin/wc-admin-classes.php:11971 71 msgid "Customer defined amount" 72 72 msgstr "" 73 73 74 #: admin/wc-admin-classes.php:1 2474 #: admin/wc-admin-classes.php:130 75 75 msgid "Allow customer to choose the amount to pay" 76 76 msgstr "" 77 77 78 #: admin/wc-admin-classes.php:13 078 #: admin/wc-admin-classes.php:136 79 79 msgid "Minimum donation amount (%s)" 80 80 msgstr "" 81 81 82 #: admin/wc-admin-classes.php:189 82 #: admin/wc-admin-classes.php:149 83 msgid "Donate button label" 84 msgstr "" 85 86 #: admin/wc-admin-classes.php:151 87 #: admin/wc-admin-classes.php:152 88 #: includes/class-woocommerce.php:367 89 #: includes/class-woocommerce.php:375 90 msgid "Donate" 91 msgstr "" 92 93 #: admin/wc-admin-classes.php:157 94 msgid "Donation field placeholder" 95 msgstr "" 96 97 #: admin/wc-admin-classes.php:159 98 #: admin/wc-admin-classes.php:160 99 #: includes/class-woocommerce.php:341 100 msgid "Donation amount" 101 msgstr "" 102 103 #: admin/wc-admin-classes.php:215 83 104 msgid "No products found" 84 105 msgstr "" 85 106 86 #: admin/wc-admin-classes.php: 191107 #: admin/wc-admin-classes.php:218 87 108 msgctxt "Select product" 88 109 msgid "None" 89 110 msgstr "" 90 111 91 #: admin/wc-admin-classes.php:2 07112 #: admin/wc-admin-classes.php:238 92 113 msgid "No categories found" 93 114 msgstr "" 94 115 95 #: admin/wc-admin-classes.php:2 09116 #: admin/wc-admin-classes.php:241 96 117 msgctxt "Select category" 97 118 msgid "None" 98 119 msgstr "" 99 120 100 #: admin/wc-admin-classes.php:2 26121 #: admin/wc-admin-classes.php:262 101 122 msgid "No taxonomies found" 102 123 msgstr "" 103 124 104 #: admin/wc-admin-classes.php:2 27125 #: admin/wc-admin-classes.php:264 105 126 msgctxt "Select taxonomy" 106 127 msgid "None" 107 128 msgstr "" 108 129 109 #: admin/wc-admin-classes.php:2 41130 #: admin/wc-admin-classes.php:279 110 131 msgid "No post types found, wich is tretty weird." 111 132 msgstr "" 112 133 113 #: admin/wc-admin-classes.php:2 43134 #: admin/wc-admin-classes.php:282 114 135 msgctxt "Select post type" 115 136 msgid "None" 116 137 msgstr "" 117 138 118 #: includes/class-project.php:178 139 #: includes/class-project.php:92 140 msgid "Projects" 141 msgstr "" 142 143 #: includes/class-project.php:93 144 #: includes/class-woocommerce.php:311 145 #: includes/class-woocommerce.php:510 146 msgid "Project" 147 msgstr "" 148 149 #: includes/class-project.php:94 150 msgid "Add New" 151 msgstr "" 152 153 #: includes/class-project.php:95 154 msgid "Add New Project" 155 msgstr "" 156 157 #: includes/class-project.php:96 158 msgid "Edit Project" 159 msgstr "" 160 161 #: includes/class-project.php:97 162 msgid "New Project" 163 msgstr "" 164 165 #: includes/class-project.php:98 166 msgid "All Projects" 167 msgstr "" 168 169 #: includes/class-project.php:99 170 msgid "View Project" 171 msgstr "" 172 173 #: includes/class-project.php:100 174 msgid "Search Projects" 175 msgstr "" 176 177 #: includes/class-project.php:101 178 msgid "Nothing found" 179 msgstr "" 180 181 #: includes/class-project.php:102 182 msgid "Nothing found in Trash" 183 msgstr "" 184 185 #: includes/class-project.php:133 186 msgid "Project Categories" 187 msgstr "" 188 189 #: includes/class-project.php:134 190 msgid "Project Category" 191 msgstr "" 192 193 #: includes/class-project.php:135 194 msgid "Search Categories" 195 msgstr "" 196 197 #: includes/class-project.php:136 198 msgid "All Categories" 199 msgstr "" 200 201 #: includes/class-project.php:137 202 msgid "Parent Category" 203 msgstr "" 204 205 #: includes/class-project.php:138 206 msgid "Parent Category:" 207 msgstr "" 208 209 #: includes/class-project.php:139 210 msgid "Edit Category" 211 msgstr "" 212 213 #: includes/class-project.php:140 214 msgid "Update Category" 215 msgstr "" 216 217 #: includes/class-project.php:141 218 msgid "Add New Category" 219 msgstr "" 220 221 #: includes/class-project.php:142 222 msgid "New Category Name" 223 msgstr "" 224 225 #: includes/class-project.php:143 226 msgid "Categories" 227 msgstr "" 228 229 #: includes/class-project.php:144 230 msgid "You currently don't have any project categories." 231 msgstr "" 232 233 #: includes/class-project.php:158 234 msgid "Project Tags" 235 msgstr "" 236 237 #: includes/class-project.php:159 238 msgid "Project Tag" 239 msgstr "" 240 241 #: includes/class-project.php:160 242 msgid "Search Tags" 243 msgstr "" 244 245 #: includes/class-project.php:161 246 msgid "All Tags" 247 msgstr "" 248 249 #: includes/class-project.php:162 250 msgid "Parent Tag" 251 msgstr "" 252 253 #: includes/class-project.php:163 254 msgid "Parent Tag:" 255 msgstr "" 256 257 #: includes/class-project.php:164 258 msgid "Edit Tag" 259 msgstr "" 260 261 #: includes/class-project.php:165 262 msgid "Update Tag" 263 msgstr "" 264 265 #: includes/class-project.php:166 266 msgid "Add New Tag" 267 msgstr "" 268 269 #: includes/class-project.php:167 270 msgid "New Tag Name" 271 msgstr "" 272 273 #: includes/class-project.php:168 274 msgid "Tags" 275 msgstr "" 276 277 #: includes/class-project.php:378 119 278 msgid "Goal achieved: " 120 279 msgstr "" 121 280 122 #: includes/class-project.php: 179281 #: includes/class-project.php:379 123 282 msgid "Goal: " 124 283 msgstr "" 125 284 126 #: includes/class-project.php: 205127 msgid "Collected: % s (%s sale)"128 msgid_plural "Collected: % s (%s sales)"285 #: includes/class-project.php:407 286 msgid "Collected: %1$s (%2$s sale)" 287 msgid_plural "Collected: %1$s (%2$s sales)" 129 288 msgstr[0] "" 130 289 msgstr[1] "" 131 290 132 #: includes/class-project.php: 226291 #: includes/class-project.php:434 133 292 msgid "Project goals and counterparts" 134 293 msgstr "" 135 294 136 #: includes/class-project.php: 236295 #: includes/class-project.php:444 137 296 msgid "Add a goal" 138 297 msgstr "" 139 298 140 #: includes/class-project.php: 241299 #: includes/class-project.php:450 141 300 msgid "Goals" 142 301 msgstr "" 143 302 144 #: includes/class-project.php: 246145 #: includes/class-project.php: 392146 #: includes/class es.php:256303 #: includes/class-project.php:456 304 #: includes/class-project.php:611 305 #: includes/class-woocommerce.php:345 147 306 msgid "Amount" 148 307 msgstr "" 149 308 150 #: includes/class-project.php: 254151 #: includes/class-project.php: 283152 #: includes/class-project.php: 393153 #: includes/class-project.php: 440309 #: includes/class-project.php:464 310 #: includes/class-project.php:493 311 #: includes/class-project.php:612 312 #: includes/class-project.php:669 154 313 msgid "Description" 155 314 msgstr "" 156 315 157 #: includes/class-project.php: 268316 #: includes/class-project.php:478 158 317 msgid "Add a counterpart" 159 318 msgstr "" 160 319 161 #: includes/class-project.php: 275162 #: includes/class-project.php: 440320 #: includes/class-project.php:485 321 #: includes/class-project.php:669 163 322 msgid "Price" 164 323 msgstr "" 165 324 166 #: includes/class-project.php: 290167 #: includes/class-project.php: 440325 #: includes/class-project.php:500 326 #: includes/class-project.php:669 168 327 msgid "Threshold" 169 328 msgstr "" 170 329 171 #: includes/class-project.php: 322330 #: includes/class-project.php:527 172 331 msgid "Edit" 173 332 msgstr "" 174 333 175 #: includes/class-project.php: 438334 #: includes/class-project.php:667 176 335 msgid "Counterparts" 177 336 msgstr "" 178 337 179 #: includes/classes.php:63 180 #: includes/classes.php:68 181 msgid "Donate" 182 msgstr "" 183 184 #: includes/classes.php:225 185 #: includes/classes.php:394 186 #: includes/post-type-project.php:6 187 msgid "Project" 188 msgstr "" 189 190 #: includes/classes.php:228 338 #: includes/class-woocommerce.php:64 339 msgid "Project Donation" 340 msgstr "" 341 342 #: includes/class-woocommerce.php:65 343 msgid "Check to add a project field to product page." 344 msgstr "" 345 346 #: includes/class-woocommerce.php:107 347 msgid "Fixed project" 348 msgstr "" 349 350 #: includes/class-woocommerce.php:109 351 #: includes/classes.php:84 352 msgid "Select a project" 353 msgstr "" 354 355 #: includes/class-woocommerce.php:123 356 msgid "Create at least one project first" 357 msgstr "" 358 359 #: includes/class-woocommerce.php:314 191 360 msgid "Enter a project name" 192 361 msgstr "" 193 362 194 #: includes/class es.php:238363 #: includes/class-woocommerce.php:324 195 364 msgid "Project: " 196 365 msgstr "" 197 366 198 #: includes/class es.php:256367 #: includes/class-woocommerce.php:345 199 368 msgid "Add to fee" 200 369 msgstr "" 201 370 202 #: includes/classes.php:257 203 msgid "Donation amount" 204 msgstr "" 205 206 #: includes/classes.php:320 371 #: includes/class-woocommerce.php:417 207 372 msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay." 208 373 msgstr "" 209 374 210 #: includes/class es.php:331375 #: includes/class-woocommerce.php:431 211 376 msgid "\"%s\" could not be added to the cart. Please provide a project name." 212 377 msgstr "" 213 378 214 #: includes/class es.php:396379 #: includes/class-woocommerce.php:512 215 380 msgid "Project ID" 216 381 msgstr "" 217 382 218 #: includes/class es.php:413383 #: includes/class-woocommerce.php:532 219 384 msgid "From" 220 385 msgstr "" 221 386 222 #: includes/class es.php:424387 #: includes/class-woocommerce.php:545 223 388 msgid "%s will be added to the chosen amount, the total price will be calculated before checkout." 224 389 msgstr "" 225 390 226 #: includes/classes.php: 469391 #: includes/classes.php:81 227 392 msgid "No posts found" 228 393 msgstr "" 229 230 #: includes/classes.php:471231 #: includes/class-woocommerce.php:70232 msgid "Select a project"233 msgstr ""234 235 #: includes/post-type-project.php:5236 msgid "Projects"237 msgstr ""238 239 #: includes/post-type-project.php:7240 msgid "Add New"241 msgstr ""242 243 #: includes/post-type-project.php:8244 msgid "Add New Project"245 msgstr ""246 247 #: includes/post-type-project.php:9248 msgid "Edit Project"249 msgstr ""250 251 #: includes/post-type-project.php:10252 msgid "New Project"253 msgstr ""254 255 #: includes/post-type-project.php:11256 msgid "All Projects"257 msgstr ""258 259 #: includes/post-type-project.php:12260 msgid "View Project"261 msgstr ""262 263 #: includes/post-type-project.php:13264 msgid "Search Projects"265 msgstr ""266 267 #: includes/post-type-project.php:14268 msgid "Nothing found"269 msgstr ""270 271 #: includes/post-type-project.php:15272 msgid "Nothing found in Trash"273 msgstr ""274 275 #: includes/post-type-project.php:46276 msgid "Project Categories"277 msgstr ""278 279 #: includes/post-type-project.php:47280 msgid "Project Category"281 msgstr ""282 283 #: includes/post-type-project.php:48284 msgid "Search Categories"285 msgstr ""286 287 #: includes/post-type-project.php:49288 msgid "All Categories"289 msgstr ""290 291 #: includes/post-type-project.php:50292 msgid "Parent Category"293 msgstr ""294 295 #: includes/post-type-project.php:51296 msgid "Parent Category:"297 msgstr ""298 299 #: includes/post-type-project.php:52300 msgid "Edit Category"301 msgstr ""302 303 #: includes/post-type-project.php:53304 msgid "Update Category"305 msgstr ""306 307 #: includes/post-type-project.php:54308 msgid "Add New Category"309 msgstr ""310 311 #: includes/post-type-project.php:55312 msgid "New Category Name"313 msgstr ""314 315 #: includes/post-type-project.php:56316 msgid "Categories"317 msgstr ""318 319 #: includes/post-type-project.php:57320 msgid "You currently don't have any project categories."321 msgstr ""322 323 #: includes/post-type-project.php:71324 msgid "Project Tags"325 msgstr ""326 327 #: includes/post-type-project.php:72328 msgid "Project Tag"329 msgstr ""330 331 #: includes/post-type-project.php:73332 msgid "Search Tags"333 msgstr ""334 335 #: includes/post-type-project.php:74336 msgid "All Tags"337 msgstr ""338 339 #: includes/post-type-project.php:75340 msgid "Parent Tag"341 msgstr ""342 343 #: includes/post-type-project.php:76344 msgid "Parent Tag:"345 msgstr ""346 347 #: includes/post-type-project.php:77348 msgid "Edit Tag"349 msgstr ""350 351 #: includes/post-type-project.php:78352 msgid "Update Tag"353 msgstr ""354 355 #: includes/post-type-project.php:79356 msgid "Add New Tag"357 msgstr ""358 359 #: includes/post-type-project.php:80360 msgid "New Tag Name"361 msgstr ""362 363 #: includes/post-type-project.php:81364 msgid "Tags"365 msgstr ""366 367 #: includes/class-woocommerce.php:35368 msgid "Project Donation"369 msgstr ""370 371 #: includes/class-woocommerce.php:36372 msgid "Check to add a project field to product page."373 msgstr ""374 375 #: includes/class-woocommerce.php:68376 msgid "Fixed project"377 msgstr ""378 379 #: includes/class-woocommerce.php:84380 msgid "Create at least one project first"381 msgstr "" -
project-donations-wc/trunk/project-donations-wc.php
r2924105 r3053009 3 3 * Plugin Name: Project Donations for WooCommerce 4 4 * Plugin URI: https://wordpress.org/plugins/project-donations-wc/ 5 * Description: Add project field to WooCommerce products, allow clients to link their purchase to a project5 * Description: Empower charity and crowdfunding projects with WooCommerce integration. 6 6 * Author: Magiiic 7 7 * Author URI: https://magiiic.com/ 8 8 * Text Domain: project-donations-wc 9 9 * Domain Path: /languages 10 * Version: 1.5. 510 * Version: 1.5.6 11 11 * 12 12 * @package project-donations-wc 13 * @link https://github.com/magicoli/project-donations-wc 14 * 15 * Donate to support the project: 16 * @link https://magiiic.com/donate/?project=project-donations-wc 13 17 * 14 18 * Icon1x: https://ps.w.org/project-donations-wc/assets/icon-128x128.jpg … … 20 24 // Your code starts here. 21 25 if ( ! defined( 'PRDWC_VERSION' ) ) { 22 define( 'PRDWC_VERSION', '1.5. 5');26 define( 'PRDWC_VERSION', '1.5.6'); 23 27 define( 'PRDWC_PLUGIN', plugin_basename( __FILE__ ) ); 24 28 define( 'PRDWC_SLUG', dirname( PRDWC_PLUGIN ) ); -
project-donations-wc/trunk/readme.txt
r2924105 r3053009 4 4 Tags: woocommerce, projects, product, donation 5 5 Requires at least: 4.7 6 Tested up to: 6. 2.27 Requires PHP: 7. 48 Stable tag: 1.5. 56 Tested up to: 6.5 7 Requires PHP: 7.3 8 Stable tag: 1.5.6 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 80 80 81 81 == Changelog == 82 83 = 1.5.6 = 84 * added option to customize donate placeholder and button label 85 * fixed in progress orders not counted in achievements total 86 * updated external libraries 87 * updated docblock comments 82 88 83 89 = 1.5.5 =
Note: See TracChangeset
for help on using the changeset viewer.