Plugin Directory

Changeset 3053009


Ignore:
Timestamp:
03/18/2024 12:59:19 AM (2 years ago)
Author:
magicoli69
Message:

version 1.5.6

Location:
project-donations-wc
Files:
32 added
7 deleted
17 edited

Legend:

Unmodified
Added
Removed
  • project-donations-wc/trunk/admin/wc-admin-classes.php

    r2924105 r3053009  
    146146            ),
    147147            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(
    148164                'type' => 'sectionend',
    149165                'id'   => 'prdwc_section_projects_end',
  • project-donations-wc/trunk/includes/class-project.php

    r2924105 r3053009  
    11<?php
     2
    23/**
    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/**
    418 * Project class.
    519 *    - register project post type if needed
    620 *    - register project fields
    721 *    - register project and goals related shortcodes
     22 *
     23 * @since 1.5
    824 */
    925class PRDWC_Project {
     26
     27    /**
     28     * The post type for the project.
     29     *
     30     * @var string
     31     */
    1032    protected $post_type;
     33
     34    /**
     35     * The project's post object.
     36     *
     37     * @var WP_Post
     38     */
    1139    protected $post;
     40
     41    /**
     42     * The project ID.
     43     *
     44     * @var int
     45     */
    1246    protected $project_id;
    1347
     48    /**
     49     * Constructor for the PRDWC_Project class.
     50     *
     51     * @param mixed $args Project ID or post object.
     52     */
    1453    public function __construct( $args = array() ) {
    1554        $post_id = null;
     
    2564    }
    2665
     66    /**
     67     * Retrieves the project post type option value.
     68     *
     69     * @return string The project post type.
     70     */
    2771    public static function post_type() {
    2872        return ( get_option( 'prdwc_create_project_post_type' ) == 'yes' ) ? 'project' : get_option( 'prdwc_project_post_type' );
    2973    }
    3074
     75    /**
     76     * Register the PRDWC_Project class hooks.
     77     */
    3178    public function init() {
    3279        add_filter( 'rwmb_meta_boxes', array( $this, 'register_fields' ) );
     
    3885    }
    3986
    40 
     87    /**
     88     * Registers the project post type.
     89     */
    4190    function register_post_types() {
    4291        $labels = array(
     
    131180    }
    132181
     182    /**
     183     * Registers the project-related shortcodes.
     184     */
    133185    function register_shortcodes() {
    134186        add_shortcode( 'achievements', array( $this, 'render_achievements' ) );
     
    136188    }
    137189
    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     */
    139216    function get_project_id( $args = null ) {
    140217        $post_id = ( ! empty( $this->project_id ) ) ? $this->project_id : get_the_ID( $args );
     
    163240            if ( get_post_type( $project_id ) !== self::post_type() ) {
    164241                // Invalid project ID
    165                 return false;
     242                $project_id  = false;
     243                // return false;
    166244            }
    167245        }
     
    169247        if ( empty( $project_id ) ) {
    170248            // No project found
    171             return false;
    172         }
    173 
    174         // Check if the project ID is valid
     249            $project_id  = false;
     250            // return false;
     251        }
    175252
    176253        return $project_id;
    177254    }
    178255
     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     */
    179264    function get_achievements( $atts = array() ) {
    180265        // Check if project_id is set in shortcode attributes
    181266        $project_id = $this->get_project_id( $atts );
     267        if(empty($project_id)) {
     268            return false;
     269        }
    182270
    183271        // Get the product IDs associated with the project
     
    204292                $orders = wc_get_orders(
    205293                    array(
    206                         'status'       => 'completed',
     294                        'status'       => [ 'wc-processing', 'completed' ],
    207295                        'return'       => 'ids',
    208296                        'limit'        => -1,
    209                         'date_created' => '>=' . date( 'Y-m-d', strtotime( '-30 days' ) ), // Example: Retrieve orders from the last 30 days
     297                        // 'date_created' => '>=' . date( 'Y-m-d', strtotime( '-30 days' ) ), // Example: Retrieve orders from the last 30 days
    210298                        'meta_query'   => array(
    211299                            array(
     
    258346    }
    259347
     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     */
    260356    function render_achievements( $atts = array() ) {
    261357        $achievements   = $this->get_achievements( $atts );
     358        if(empty( $achievements) ) return '';
     359
    262360        $progress_bar   = isset( $atts['progress_bar'] ) ? $atts['progress_bar'] : get_option( 'prdwc_progress_bar', true );
    263361        $show_goal_name = isset( $atts['show_goal_name'] ) ? $atts['show_goal_name'] : get_option( 'prdwc_show_goal_name', true );
     
    324422    }
    325423
     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     */
    326430    function register_fields( $meta_boxes ) {
    327431        $prefix = '';
     
    409513    }
    410514
    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     */
    424523    function render_edit_button( $field_group_name ) {
    425524        $html = '';
     
    471570    }
    472571
     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     */
    473580    function render_goals( $atts = array() ) {
    474581        $progress_bar = isset( $atts['progress_bar'] ) ? $atts['progress_bar'] : get_option( 'prdwc_progress_bar', true );
     
    479586
    480587        $achievements = $this->get_achievements( $atts );
     588        if(empty($achievements)) {
     589            return '';
     590        }
     591
    481592        $next_goal    = $achievements['next_goal'];
    482593        $sales_total  = $achievements['sales_total'];
     
    539650    }
    540651
     652    /**
     653     * Renders the counterparts table.
     654     *
     655     * @since 1.5
     656     *
     657     * @return string The rendered counterparts table HTML.
     658     */
    541659    function render_counterparts() {
    542660        $post_id = $this->get_the_ID();
  • project-donations-wc/trunk/includes/class-woocommerce.php

    r2924105 r3053009  
    11<?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 */
    313class PRDWC_WooCommerce {
    414
     
    616    }
    717
     18    /**
     19     * Initialize the WooCommerce integration.
     20     */
    821    public function init() {
    922
     
    3952    }
    4053
    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     */
    5860    static function add_product_type_options( $product_type_options ) {
    5961        $product_type_options['linkproject'] = array(
     
    6769    }
    6870
    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     */
    7077    public function add_donations_tab( $tabs ) {
    7178        $tabs['donations'] = array(
     
    7885    }
    7986
     87    /**
     88     * Add the donations tab content.
     89     */
    8090    public function add_donations_tab_content() {
    8191        global $post;
     
    120130    }
    121131
     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     */
    122139    public static function save_product_type_options( $post_ID, $product, $update ) {
    123140        update_post_meta( $product->ID, '_linkproject', isset( $_POST['_linkproject'] ) ? 'yes' : 'no' );
     
    128145    }
    129146
     147    /**
     148     * Display custom fields on the product page.
     149     */
    130150    static function display_custom_fields_simple() {
    131151        global $post, $product;
     
    140160    }
    141161
     162    /**
     163     * Display custom fields on the product page.
     164     */
    142165    static function display_custom_field( $args ) {
    143166        if ( empty( $args['name'] ) ) {
     
    315338
    316339        if ( prdwc_allow_custom_amount() ) {
     340            $placeholder = get_option('prdwc_donate_field_placeholder');
     341            $placeholder = empty($placeholder) ? __( 'Donation amount', 'project-donations-wc' ) : $placeholder;
     342
    317343            $fields[] = array(
    318344                'name'              => 'amount',
    319345                '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,
    321347                'type'              => 'number',
    322348                'required'          => true,
     
    338364    static function add_to_cart_button( $text, $product ) {
    339365        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;
    341368        }
    342369        return $text;
     
    345372    static function single_add_to_cart_button( $text, $product ) {
    346373        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;
    348376        }
    349377        return $text;
  • project-donations-wc/trunk/includes/classes.php

    r2924105 r3053009  
    22
    33/**
    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
    511 */
     12
    613class PRDWC {
    714
     
    2027    }
    2128
     29    /**
     30     * Enqueues admin styles and scripts.
     31     *
     32     * @since 1.5.5
     33     */
    2234    function enqueue_admin_styles() {
    2335        wp_enqueue_script( 'prdwc-admin-script', plugin_dir_url( __DIR__ ) . 'admin/admin.js', array( 'jquery' ), PRDWC_VERSION . '-' . time(), true );
     
    3042    }
    3143
     44    /**
     45     * Enqueues public scripts.
     46     *
     47     * @since 1.5.5
     48     */
    3249    function enqueue_public_scripts() {
    3350        wp_enqueue_style( 'prdwc-style', plugin_dir_url( __DIR__ ) . 'public/public.css', array(), PRDWC_VERSION . time() );
     
    4259    }
    4360
     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     */
    4469    static function select_post_options( $args = array() ) {
    4570        $args = array_merge(
  • project-donations-wc/trunk/includes/functions.php

    r2924105 r3053009  
    11<?php defined( 'PRDWC_VERSION' ) || die;
    22
     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 */
    319function prdwc_is_donation( $product_id ) {
    420    // return true; // let's handle this later
     
    622}
    723
     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 */
    831function prdwc_allow_custom_amount() {
    932    if ( get_option( 'prdwc_custom_amount' ) == 'yes' ) {
  • project-donations-wc/trunk/languages/project-donations-wc-de_DE.po

    r2924105 r3053009  
    22msgstr ""
    33"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"
    76"PO-Revision-Date: \n"
    8 "Last-Translator: \n"
     7"Last-Translator: gpt-po v1.0.7\n"
    98"Language-Team: \n"
    109"Language: de\n"
    1110"MIME-Version: 1.0\n"
    12 "Content-Type: text/plain; charset=UTF-8\n"
     11"Content-Type: text/plain; charset=utf-8\n"
    1312"Content-Transfer-Encoding: 8bit\n"
     13"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1414"X-Generator: Poedit 3.0.1\n"
    1515
     
    2222msgstr "https://wordpress.org/plugins/project-donations-wc/"
    2323
    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"
     24msgid "Empower charity and crowdfunding projects with WooCommerce integration."
     25msgstr "Turbo für Ihre gemeinnützigen Projekte und Crowdfunding-Aktionen dank WooCommerce."
    3126
    3227#. Author of the plugin
     
    3833msgstr "https://magiiic.com/"
    3934
    40 #: admin/wc-admin-classes.php:23
     35#: admin/wc-admin-classes.php:24
    4136msgid "Settings"
    4237msgstr "Einstellungen"
    4338
    44 #: admin/wc-admin-classes.php:35 includes/class-woocommerce.php:45
     39#: admin/wc-admin-classes.php:38 includes/class-woocommerce.php:79
    4540msgid "Project Donations"
    4641msgstr "Projektspenden"
    4742
    48 #: admin/wc-admin-classes.php:75
     43#: admin/wc-admin-classes.php:81
    4944msgid "Default settings"
    5045msgstr "Standardeinstellungen"
    5146
    52 #: admin/wc-admin-classes.php:78
     47#: admin/wc-admin-classes.php:84
    5348msgid "These settings can be overridden for each product."
    5449msgstr "Diese Einstellungen können für jedes Produkt geändert werden."
    5550
    56 #: admin/wc-admin-classes.php:81
     51#: admin/wc-admin-classes.php:87
    5752msgid "Add project post type"
    5853msgstr "Projekttyp hinzufügen"
    5954
    60 #: admin/wc-admin-classes.php:86
     55#: admin/wc-admin-classes.php:92
    6156msgid "Create a project post type"
    6257msgstr "Erstellen einer Projektmaterialart"
    6358
    64 #: admin/wc-admin-classes.php:87 admin/wc-admin-classes.php:125
     59#: admin/wc-admin-classes.php:93 admin/wc-admin-classes.php:131
    6560msgid "(enable only if no other plugin implements it)"
    6661msgstr "(nur aktivieren, wenn keine andere Erweiterung sie implementiert)"
    6762
    68 #: admin/wc-admin-classes.php:92
     63#: admin/wc-admin-classes.php:98
    6964msgid "Get projects from post type"
    7065msgstr "Projekte von der Artikelart abrufen"
    7166
    72 #: admin/wc-admin-classes.php:119
     67#: admin/wc-admin-classes.php:125
    7368msgid "Customer defined amount"
    7469msgstr "Von der Klientin/dem Klienten festgelegter Betrag"
    7570
    76 #: admin/wc-admin-classes.php:124
     71#: admin/wc-admin-classes.php:130
    7772msgid "Allow customer to choose the amount to pay"
    7873msgstr "Dem Kunden erlauben, den zu zahlenden Betrag zu wählen"
    7974
    80 #: admin/wc-admin-classes.php:130
     75#: admin/wc-admin-classes.php:136
    8176msgid "Minimum donation amount (%s)"
    8277msgstr "Mindestbetrag der Spende (%s)"
    8378
    84 #: admin/wc-admin-classes.php:189
     79#: admin/wc-admin-classes.php:149
     80msgid "Donate button label"
     81msgstr "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
     85msgid "Donate"
     86msgstr "Spenden"
     87
     88#: admin/wc-admin-classes.php:157
     89msgid "Donation field placeholder"
     90msgstr "Spendenfeld Platzhalter"
     91
     92#: admin/wc-admin-classes.php:159 admin/wc-admin-classes.php:160 includes/class-woocommerce.php:341
     93msgid "Donation amount"
     94msgstr "Spendenbetrag"
     95
     96#: admin/wc-admin-classes.php:215
    8597msgid "No products found"
    8698msgstr "Keine Produkte gefunden"
    8799
    88 #: admin/wc-admin-classes.php:191
     100#: admin/wc-admin-classes.php:238
     101msgid "No categories found"
     102msgstr "Keine Kategorien gefunden"
     103
     104#: admin/wc-admin-classes.php:262
     105msgid "No taxonomies found"
     106msgstr "Keine Taxonomie gefunden"
     107
     108#: admin/wc-admin-classes.php:279
     109msgid "No post types found, wich is tretty weird."
     110msgstr "Es wurde keine Art von Artikel gefunden, was ziemlich seltsam ist."
     111
     112#: includes/class-project.php:92
     113msgid "Projects"
     114msgstr "Projekte"
     115
     116#: includes/class-project.php:93 includes/class-woocommerce.php:311 includes/class-woocommerce.php:510
     117msgid "Project"
     118msgstr "Projekt"
     119
     120#: includes/class-project.php:94
     121msgid "Add New"
     122msgstr "Hinzufügen"
     123
     124#: includes/class-project.php:95
     125msgid "Add New Project"
     126msgstr "Projekt hinzufügen"
     127
     128#: includes/class-project.php:96
     129msgid "Edit Project"
     130msgstr "Projekt bearbeiten"
     131
     132#: includes/class-project.php:97
     133msgid "New Project"
     134msgstr "Neues Projekt"
     135
     136#: includes/class-project.php:98
     137msgid "All Projects"
     138msgstr "Alle Projekte"
     139
     140#: includes/class-project.php:99
     141msgid "View Project"
     142msgstr "Projekt ansehen"
     143
     144#: includes/class-project.php:100
     145msgid "Search Projects"
     146msgstr "In Projekten suchen"
     147
     148#: includes/class-project.php:101
     149msgid "Nothing found"
     150msgstr "Nichts gefunden"
     151
     152#: includes/class-project.php:102
     153msgid "Nothing found in Trash"
     154msgstr "Nichts im Papierkorb gefunden"
     155
     156#: includes/class-project.php:133
     157msgid "Project Categories"
     158msgstr "Projektkategorie"
     159
     160#: includes/class-project.php:134
     161msgid "Project Category"
     162msgstr "Kategorie des Projekts"
     163
     164#: includes/class-project.php:135
     165msgid "Search Categories"
     166msgstr "Kategorien durchsuchen"
     167
     168#: includes/class-project.php:136
     169msgid "All Categories"
     170msgstr "Alle Kategorien"
     171
     172#: includes/class-project.php:137
     173msgid "Parent Category"
     174msgstr "Übergeordnete Kategorie"
     175
     176#: includes/class-project.php:138
     177msgid "Parent Category:"
     178msgstr "Verwandte Kategorie :"
     179
     180#: includes/class-project.php:139
     181msgid "Edit Category"
     182msgstr "Kategorie bearbeiten"
     183
     184#: includes/class-project.php:140
     185msgid "Update Category"
     186msgstr "Kategorie aktualisieren"
     187
     188#: includes/class-project.php:141
     189msgid "Add New Category"
     190msgstr "Kategorie hinzufügen"
     191
     192#: includes/class-project.php:142
     193msgid "New Category Name"
     194msgstr "Name der neuen Kategorie"
     195
     196#: includes/class-project.php:143
     197msgid "Categories"
     198msgstr "Kategorien"
     199
     200#: includes/class-project.php:144
     201msgid "You currently don't have any project categories."
     202msgstr "Sie haben derzeit keine Projektkategorien."
     203
     204#: includes/class-project.php:158
     205msgid "Project Tags"
     206msgstr "Projektbeschriftungen"
     207
     208#: includes/class-project.php:159
     209msgid "Project Tag"
     210msgstr "Projektbeschriftung"
     211
     212#: includes/class-project.php:160
     213msgid "Search Tags"
     214msgstr "In den Etiketten suchen"
     215
     216#: includes/class-project.php:161
     217msgid "All Tags"
     218msgstr "Alle Etiketten"
     219
     220#: includes/class-project.php:162
     221msgid "Parent Tag"
     222msgstr "Übergeordnete Etikette"
     223
     224#: includes/class-project.php:163
     225msgid "Parent Tag:"
     226msgstr "Parent Label :"
     227
     228#: includes/class-project.php:164
     229msgid "Edit Tag"
     230msgstr "Etikett bearbeiten"
     231
     232#: includes/class-project.php:165
     233msgid "Update Tag"
     234msgstr "Etikett aktualisieren"
     235
     236#: includes/class-project.php:166
     237msgid "Add New Tag"
     238msgstr "Etikett hinzufügen"
     239
     240#: includes/class-project.php:167
     241msgid "New Tag Name"
     242msgstr "Name des neuen Etiketts"
     243
     244#: includes/class-project.php:168
     245msgid "Tags"
     246msgstr "Etiketten"
     247
     248#: includes/class-project.php:378
     249msgid "Goal achieved: "
     250msgstr "Ziel erreicht: "
     251
     252#: includes/class-project.php:379
     253msgid "Goal: "
     254msgstr "Ziel: "
     255
     256#: includes/class-project.php:407
     257msgid "Collected: %1$s (%2$s sale)"
     258msgid_plural "Collected: %1$s (%2$s sales)"
     259msgstr[0] "Gesammelt: %1$s (%2$s Verkauf)"
     260msgstr[1] "Gesammelt: %1$s (%2$s Verkauf)"
     261
     262#: includes/class-project.php:434
     263msgid "Project goals and counterparts"
     264msgstr "Projektziele und Gegenstücke"
     265
     266#: includes/class-project.php:444
     267msgid "Add a goal"
     268msgstr "Füge ein Ziel hinzu"
     269
     270#: includes/class-project.php:450
     271msgid "Goals"
     272msgstr "Ziele"
     273
     274#: includes/class-project.php:456 includes/class-project.php:611 includes/class-woocommerce.php:345
     275msgid "Amount"
     276msgstr "Betrag"
     277
     278#: includes/class-project.php:464 includes/class-project.php:493 includes/class-project.php:612
     279#: includes/class-project.php:669
     280msgid "Description"
     281msgstr "Beschreibung"
     282
     283#: includes/class-project.php:478
     284msgid "Add a counterpart"
     285msgstr "Fügen Sie einen Gegenpart hinzu"
     286
     287#: includes/class-project.php:485 includes/class-project.php:669
     288msgid "Price"
     289msgstr "Preis"
     290
     291#: includes/class-project.php:500 includes/class-project.php:669
     292msgid "Threshold"
     293msgstr "Schwelle"
     294
     295#: includes/class-project.php:527
     296msgid "Edit"
     297msgstr "Bearbeiten"
     298
     299#: includes/class-project.php:667
     300msgid "Counterparts"
     301msgstr "Gegenstücke"
     302
     303#: includes/class-woocommerce.php:64
     304msgid "Project Donation"
     305msgstr "Project Donation"
     306
     307#: includes/class-woocommerce.php:65
     308msgid "Check to add a project field to product page."
     309msgstr "Aktivieren, um ein Projektfeld auf der Produktseite hinzuzufügen."
     310
     311#: includes/class-woocommerce.php:107
     312msgid "Fixed project"
     313msgstr "Festes Projekt"
     314
     315#: includes/class-woocommerce.php:109 includes/classes.php:84
     316msgid "Select a project"
     317msgstr "Projekt auswählen"
     318
     319#: includes/class-woocommerce.php:123
     320msgid "Create at least one project first"
     321msgstr "Erstellen Sie zuerst mindestens ein Projekt"
     322
     323#: includes/class-woocommerce.php:314
     324msgid "Enter a project name"
     325msgstr "Geben Sie einen Projektnamen ein"
     326
     327#: includes/class-woocommerce.php:324
     328msgid "Project: "
     329msgstr "Projekt: "
     330
     331#: includes/class-woocommerce.php:345
     332msgid "Add to fee"
     333msgstr "Zur Preisliste hinzufügen"
     334
     335#: includes/class-woocommerce.php:417
     336msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay."
     337msgstr "\"%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
     340msgid "\"%s\" could not be added to the cart. Please provide a project name."
     341msgstr "\"%s\" kann nicht in den Warenkorb gelegt werden. Bitte geben Sie einen Projektnamen an."
     342
     343#: includes/class-woocommerce.php:512
     344msgid "Project ID"
     345msgstr "Projekt-ID"
     346
     347#: includes/class-woocommerce.php:532
     348msgid "From"
     349msgstr "Ab"
     350
     351#: includes/class-woocommerce.php:545
     352msgid "%s will be added to the chosen amount, the total price will be calculated before checkout."
     353msgstr ""
     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
     358msgid "No posts found"
     359msgstr "Keine Artikel gefunden"
     360
     361#: admin/wc-admin-classes.php:218
    89362msgctxt "Select product"
    90363msgid "None"
    91364msgstr "Keine"
    92365
    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
    98367msgctxt "Select category"
    99368msgid "None"
    100369msgstr "Keine"
    101370
    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
    107372msgctxt "Select taxonomy"
    108373msgid "None"
    109374msgstr "Keine"
    110375
    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
    116377msgctxt "Select post type"
    117378msgid "None"
    118379msgstr "Keine"
    119380
    120 #: includes/classes.php:62 includes/classes.php:67
    121 msgid "Donate"
    122 msgstr "Spenden"
    123 
    124 #: includes/classes.php:214 includes/classes.php:373
    125 #: includes/post-type-project.php:6
    126 msgid "Project"
    127 msgstr "Projekt"
    128 
    129 #: includes/classes.php:217
    130 msgid "Enter a project name"
    131 msgstr "Geben Sie einen Projektnamen ein"
    132 
    133 #: includes/classes.php:227
    134 msgid "Project: "
    135 msgstr "Projekt: "
    136 
    137 #: includes/classes.php:235
    138 msgid "Add to fee"
    139 msgstr "Zur Preisliste hinzufügen"
    140 
    141 #: includes/classes.php:235
    142 msgid "Amount"
    143 msgstr "Betrag"
    144 
    145 #: includes/classes.php:236
    146 msgid "Donation amount"
    147 msgstr "Spendenbetrag"
    148 
    149 #: includes/classes.php:299
    150 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:310
    157 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:375
    163 msgid "Project ID"
    164 msgstr "Projekt-ID"
    165 
    166 #: includes/classes.php:392
    167 msgid "From"
    168 msgstr "Ab"
    169 
    170 #: includes/classes.php:403
    171 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:448
    179 msgid "No posts found"
    180 msgstr "Keine Artikel gefunden"
    181 
    182 #: includes/classes.php:450 includes/class-woocommerce.php:70
    183 msgid "Select a project"
    184 msgstr "Projekt auswählen"
    185 
    186 #: includes/post-type-project.php:5
    187 msgid "Projects"
    188 msgstr "Projekte"
    189 
    190 #: includes/post-type-project.php:7
    191 msgid "Add New"
    192 msgstr "Hinzufügen"
    193 
    194 #: includes/post-type-project.php:8
    195 msgid "Add New Project"
    196 msgstr "Projekt hinzufügen"
    197 
    198 #: includes/post-type-project.php:9
    199 msgid "Edit Project"
    200 msgstr "Projekt bearbeiten"
    201 
    202 #: includes/post-type-project.php:10
    203 msgid "New Project"
    204 msgstr "Neues Projekt"
    205 
    206 #: includes/post-type-project.php:11
    207 msgid "All Projects"
    208 msgstr "Alle Projekte"
    209 
    210 #: includes/post-type-project.php:12
    211 msgid "View Project"
    212 msgstr "Projekt ansehen"
    213 
    214 #: includes/post-type-project.php:13
    215 msgid "Search Projects"
    216 msgstr "In Projekten suchen"
    217 
    218 #: includes/post-type-project.php:14
    219 msgid "Nothing found"
    220 msgstr "Nichts gefunden"
    221 
    222 #: includes/post-type-project.php:15
    223 msgid "Nothing found in Trash"
    224 msgstr "Nichts im Papierkorb gefunden"
    225 
    226 #: includes/post-type-project.php:46
    227 msgid "Project Categories"
    228 msgstr "Projektkategorie"
    229 
    230 #: includes/post-type-project.php:47
    231 msgid "Project Category"
    232 msgstr "Kategorie des Projekts"
    233 
    234 #: includes/post-type-project.php:48
    235 msgid "Search Categories"
    236 msgstr "Kategorien durchsuchen"
    237 
    238 #: includes/post-type-project.php:49
    239 msgid "All Categories"
    240 msgstr "Alle Kategorien"
    241 
    242 #: includes/post-type-project.php:50
    243 msgid "Parent Category"
    244 msgstr "Übergeordnete Kategorie"
    245 
    246 #: includes/post-type-project.php:51
    247 msgid "Parent Category:"
    248 msgstr "Verwandte Kategorie :"
    249 
    250 #: includes/post-type-project.php:52
    251 msgid "Edit Category"
    252 msgstr "Kategorie bearbeiten"
    253 
    254 #: includes/post-type-project.php:53
    255 msgid "Update Category"
    256 msgstr "Kategorie aktualisieren"
    257 
    258 #: includes/post-type-project.php:54
    259 msgid "Add New Category"
    260 msgstr "Kategorie hinzufügen"
    261 
    262 #: includes/post-type-project.php:55
    263 msgid "New Category Name"
    264 msgstr "Name der neuen Kategorie"
    265 
    266 #: includes/post-type-project.php:56
    267 msgid "Categories"
    268 msgstr "Kategorien"
    269 
    270 #: includes/post-type-project.php:57
    271 msgid "You currently don't have any project categories."
    272 msgstr "Sie haben derzeit keine Projektkategorien."
    273 
    274 #: includes/post-type-project.php:71
    275 msgid "Project Tags"
    276 msgstr "Projektbeschriftungen"
    277 
    278 #: includes/post-type-project.php:72
    279 msgid "Project Tag"
    280 msgstr "Projektbeschriftung"
    281 
    282 #: includes/post-type-project.php:73
    283 msgid "Search Tags"
    284 msgstr "In den Etiketten suchen"
    285 
    286 #: includes/post-type-project.php:74
    287 msgid "All Tags"
    288 msgstr "Alle Etiketten"
    289 
    290 #: includes/post-type-project.php:75
    291 msgid "Parent Tag"
    292 msgstr "Übergeordnete Etikette"
    293 
    294 #: includes/post-type-project.php:76
    295 msgid "Parent Tag:"
    296 msgstr "Parent Label :"
    297 
    298 #: includes/post-type-project.php:77
    299 msgid "Edit Tag"
    300 msgstr "Etikett bearbeiten"
    301 
    302 #: includes/post-type-project.php:78
    303 msgid "Update Tag"
    304 msgstr "Etikett aktualisieren"
    305 
    306 #: includes/post-type-project.php:79
    307 msgid "Add New Tag"
    308 msgstr "Etikett hinzufügen"
    309 
    310 #: includes/post-type-project.php:80
    311 msgid "New Tag Name"
    312 msgstr "Name des neuen Etiketts"
    313 
    314 #: includes/post-type-project.php:81
    315 msgid "Tags"
    316 msgstr "Etiketten"
    317 
    318 #: includes/class-woocommerce.php:35
    319 msgid "Project Donation"
    320 msgstr "Project Donation"
    321 
    322 #: includes/class-woocommerce.php:36
    323 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:68
    327 msgid "Fixed project"
    328 msgstr ""
    329 
    330 #: includes/class-woocommerce.php:84
    331 msgid "Create at least one project first"
    332 msgstr ""
    333 
    334381#~ msgid "Amount to add"
    335382#~ msgstr "Hinzuzufügender Betrag"
  • project-donations-wc/trunk/languages/project-donations-wc-fr_FR.po

    r2924105 r3053009  
    22msgstr ""
    33"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"
    76"PO-Revision-Date: \n"
    8 "Last-Translator: \n"
     7"Last-Translator: gpt-po v1.0.7\n"
    98"Language-Team: \n"
    109"Language: fr\n"
    1110"MIME-Version: 1.0\n"
    12 "Content-Type: text/plain; charset=UTF-8\n"
     11"Content-Type: text/plain; charset=utf-8\n"
    1312"Content-Transfer-Encoding: 8bit\n"
    1413"Plural-Forms: nplurals=2; plural=(n > 1);\n"
     
    2322msgstr "https://wordpress.org/plugins/project-donations-wc/"
    2423
    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"
     24msgid "Empower charity and crowdfunding projects with WooCommerce integration."
     25msgstr "Boostez vos projets caritatifs et crowdfundings avec WooCommerce."
    3226
    3327#. Author of the plugin
     
    3933msgstr "https://magiiic.com/fr/"
    4034
    41 #: admin/wc-admin-classes.php:23
     35#: admin/wc-admin-classes.php:24
    4236msgid "Settings"
    4337msgstr "Réglages"
    4438
    45 #: admin/wc-admin-classes.php:35 includes/class-woocommerce.php:45
     39#: admin/wc-admin-classes.php:38 includes/class-woocommerce.php:79
    4640msgid "Project Donations"
    4741msgstr "Project Donations"
    4842
    49 #: admin/wc-admin-classes.php:75
     43#: admin/wc-admin-classes.php:81
    5044msgid "Default settings"
    5145msgstr "Réglages par défaut"
    5246
    53 #: admin/wc-admin-classes.php:78
     47#: admin/wc-admin-classes.php:84
    5448msgid "These settings can be overridden for each product."
    5549msgstr "Ces réglages peuvent être modifiés pour chaque produit."
    5650
    57 #: admin/wc-admin-classes.php:81
     51#: admin/wc-admin-classes.php:87
    5852msgid "Add project post type"
    5953msgstr "Ajouter un type projet"
    6054
    61 #: admin/wc-admin-classes.php:86
     55#: admin/wc-admin-classes.php:92
    6256msgid "Create a project post type"
    6357msgstr "Créer un type d'articles projet"
    6458
    65 #: admin/wc-admin-classes.php:87 admin/wc-admin-classes.php:125
     59#: admin/wc-admin-classes.php:93 admin/wc-admin-classes.php:131
    6660msgid "(enable only if no other plugin implements it)"
    6761msgstr "(activer uniquement si aucune autre extension de l'implémente)"
    6862
    69 #: admin/wc-admin-classes.php:92
     63#: admin/wc-admin-classes.php:98
    7064msgid "Get projects from post type"
    7165msgstr "Obtenir les projets depuis le type d'article"
    7266
    73 #: admin/wc-admin-classes.php:119
     67#: admin/wc-admin-classes.php:125
    7468msgid "Customer defined amount"
    7569msgstr "Montant défini par le client"
    7670
    77 #: admin/wc-admin-classes.php:124
     71#: admin/wc-admin-classes.php:130
    7872msgid "Allow customer to choose the amount to pay"
    7973msgstr "Permettre au client de choisir le montant à payer"
    8074
    81 #: admin/wc-admin-classes.php:130
     75#: admin/wc-admin-classes.php:136
    8276msgid "Minimum donation amount (%s)"
    8377msgstr "Montant minimum de donation (%s)"
    8478
    85 #: admin/wc-admin-classes.php:189
     79#: admin/wc-admin-classes.php:149
     80msgid "Donate button label"
     81msgstr "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
     85msgid "Donate"
     86msgstr "Faire un don"
     87
     88#: admin/wc-admin-classes.php:157
     89msgid "Donation field placeholder"
     90msgstr "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
     94msgid "Donation amount"
     95msgstr "Montant du don"
     96
     97#: admin/wc-admin-classes.php:215
    8698msgid "No products found"
    8799msgstr "Aucun produit trouvé"
    88100
    89 #: admin/wc-admin-classes.php:191
     101#: admin/wc-admin-classes.php:238
     102msgid "No categories found"
     103msgstr "Aucune catégorie trouvée"
     104
     105#: admin/wc-admin-classes.php:262
     106msgid "No taxonomies found"
     107msgstr "Aucune taxonomie trouvée"
     108
     109#: admin/wc-admin-classes.php:279
     110msgid "No post types found, wich is tretty weird."
     111msgstr "Aucun type d'article trouvé, ce qui est plutôt bizarre."
     112
     113#: includes/class-project.php:92
     114msgid "Projects"
     115msgstr "Projets"
     116
     117#: includes/class-project.php:93 includes/class-woocommerce.php:311
     118#: includes/class-woocommerce.php:510
     119msgid "Project"
     120msgstr "Projet"
     121
     122#: includes/class-project.php:94
     123msgid "Add New"
     124msgstr "Ajouter"
     125
     126#: includes/class-project.php:95
     127msgid "Add New Project"
     128msgstr "Ajouter un projet"
     129
     130#: includes/class-project.php:96
     131msgid "Edit Project"
     132msgstr "Modifier le projet"
     133
     134#: includes/class-project.php:97
     135msgid "New Project"
     136msgstr "Nouveau projet"
     137
     138#: includes/class-project.php:98
     139msgid "All Projects"
     140msgstr "Tous les projets"
     141
     142#: includes/class-project.php:99
     143msgid "View Project"
     144msgstr "Voir projet"
     145
     146#: includes/class-project.php:100
     147msgid "Search Projects"
     148msgstr "Rechercher dans les projets"
     149
     150#: includes/class-project.php:101
     151msgid "Nothing found"
     152msgstr "Rien trouvé"
     153
     154#: includes/class-project.php:102
     155msgid "Nothing found in Trash"
     156msgstr "Rien trouvé dans la corbeille"
     157
     158#: includes/class-project.php:133
     159msgid "Project Categories"
     160msgstr "Catégorie de projet"
     161
     162#: includes/class-project.php:134
     163msgid "Project Category"
     164msgstr "Catégorie du projet"
     165
     166#: includes/class-project.php:135
     167msgid "Search Categories"
     168msgstr "Rechercher dans les catégories"
     169
     170#: includes/class-project.php:136
     171msgid "All Categories"
     172msgstr "Toutes les catégories"
     173
     174#: includes/class-project.php:137
     175msgid "Parent Category"
     176msgstr "Catégorie parente"
     177
     178#: includes/class-project.php:138
     179msgid "Parent Category:"
     180msgstr "Catégorie parente :"
     181
     182#: includes/class-project.php:139
     183msgid "Edit Category"
     184msgstr "Modifier la catégorie"
     185
     186#: includes/class-project.php:140
     187msgid "Update Category"
     188msgstr "Mettre à jour la catégorie"
     189
     190#: includes/class-project.php:141
     191msgid "Add New Category"
     192msgstr "Ajouter une catégorie"
     193
     194#: includes/class-project.php:142
     195msgid "New Category Name"
     196msgstr "Nom de la nouvelle catégorie"
     197
     198#: includes/class-project.php:143
     199msgid "Categories"
     200msgstr "Catégories"
     201
     202#: includes/class-project.php:144
     203msgid "You currently don't have any project categories."
     204msgstr "Vous n'avez actuellement aucune catégorie de projet."
     205
     206#: includes/class-project.php:158
     207msgid "Project Tags"
     208msgstr "Étiquettes de projet"
     209
     210#: includes/class-project.php:159
     211msgid "Project Tag"
     212msgstr "Étiquette de projet"
     213
     214#: includes/class-project.php:160
     215msgid "Search Tags"
     216msgstr "Rechercher dans les étiquettes"
     217
     218#: includes/class-project.php:161
     219msgid "All Tags"
     220msgstr "Toutes les étiquettes"
     221
     222#: includes/class-project.php:162
     223msgid "Parent Tag"
     224msgstr "Étiquette parente"
     225
     226#: includes/class-project.php:163
     227msgid "Parent Tag:"
     228msgstr "Étiquette parente :"
     229
     230#: includes/class-project.php:164
     231msgid "Edit Tag"
     232msgstr "Modifier l'étiquette"
     233
     234#: includes/class-project.php:165
     235msgid "Update Tag"
     236msgstr "Mettre à jour l'étiquette"
     237
     238#: includes/class-project.php:166
     239msgid "Add New Tag"
     240msgstr "Ajouter une étiquette"
     241
     242#: includes/class-project.php:167
     243msgid "New Tag Name"
     244msgstr "Nom de la nouvelle étiquette"
     245
     246#: includes/class-project.php:168
     247msgid "Tags"
     248msgstr "Étiquettes"
     249
     250#: includes/class-project.php:378
     251msgid "Goal achieved: "
     252msgstr "Objectif atteint : "
     253
     254#: includes/class-project.php:379
     255msgid "Goal: "
     256msgstr "Objectif : "
     257
     258#: includes/class-project.php:407
     259msgid "Collected: %1$s (%2$s sale)"
     260msgid_plural "Collected: %1$s (%2$s sales)"
     261msgstr[0] "Collecté : %1$s (%2$s vente)"
     262msgstr[1] "Collecté : %1$s (%2$s ventes)"
     263
     264#: includes/class-project.php:434
     265msgid "Project goals and counterparts"
     266msgstr "Objectifs et contreparties"
     267
     268#: includes/class-project.php:444
     269msgid "Add a goal"
     270msgstr "Ajouter un objectif"
     271
     272#: includes/class-project.php:450
     273msgid "Goals"
     274msgstr "Objectifs"
     275
     276#: includes/class-project.php:456 includes/class-project.php:611
     277#: includes/class-woocommerce.php:345
     278msgid "Amount"
     279msgstr "Montant"
     280
     281#: includes/class-project.php:464 includes/class-project.php:493
     282#: includes/class-project.php:612 includes/class-project.php:669
     283msgid "Description"
     284msgstr "Description"
     285
     286#: includes/class-project.php:478
     287msgid "Add a counterpart"
     288msgstr "Ajouter une contrepartie"
     289
     290#: includes/class-project.php:485 includes/class-project.php:669
     291msgid "Price"
     292msgstr "Prix"
     293
     294#: includes/class-project.php:500 includes/class-project.php:669
     295msgid "Threshold"
     296msgstr "Seuil"
     297
     298#: includes/class-project.php:527
     299msgid "Edit"
     300msgstr "Modifier"
     301
     302#: includes/class-project.php:667
     303msgid "Counterparts"
     304msgstr "Contreparties"
     305
     306#: includes/class-woocommerce.php:64
     307msgid "Project Donation"
     308msgstr "Project Donation"
     309
     310#: includes/class-woocommerce.php:65
     311msgid "Check to add a project field to product page."
     312msgstr "Activer pour ajouter un champ projet à la page produit."
     313
     314#: includes/class-woocommerce.php:107
     315msgid "Fixed project"
     316msgstr "Projet fixe"
     317
     318#: includes/class-woocommerce.php:109 includes/classes.php:84
     319msgid "Select a project"
     320msgstr "Choisir un projet"
     321
     322#: includes/class-woocommerce.php:123
     323msgid "Create at least one project first"
     324msgstr "Créez au moins un projet"
     325
     326#: includes/class-woocommerce.php:314
     327msgid "Enter a project name"
     328msgstr "Entrez un nom de projet"
     329
     330#: includes/class-woocommerce.php:324
     331msgid "Project: "
     332msgstr "Projet : "
     333
     334#: includes/class-woocommerce.php:345
     335msgid "Add to fee"
     336msgstr "Ajouter au tarif"
     337
     338#: includes/class-woocommerce.php:417
     339msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay."
     340msgstr "\"%s\" ne peut pas être ajouté au panier. Merci de fournir un montant à payer valide."
     341
     342#: includes/class-woocommerce.php:431
     343msgid "\"%s\" could not be added to the cart. Please provide a project name."
     344msgstr "\"%s\" ne peut pas être ajouté au panier. Merci de fournir un nom de projet."
     345
     346#: includes/class-woocommerce.php:512
     347msgid "Project ID"
     348msgstr "ID du projet"
     349
     350#: includes/class-woocommerce.php:532
     351msgid "From"
     352msgstr "À partir de"
     353
     354#: includes/class-woocommerce.php:545
     355msgid "%s will be added to the chosen amount, the total price will be calculated before checkout."
     356msgstr "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
     359msgid "No posts found"
     360msgstr "Aucun article trouvé"
     361
     362#: admin/wc-admin-classes.php:218
    90363msgctxt "Select product"
    91364msgid "None"
    92365msgstr "Aucun"
    93366
    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
    99368msgctxt "Select category"
    100369msgid "None"
    101370msgstr "Aucune"
    102371
    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
    108373msgctxt "Select taxonomy"
    109374msgid "None"
    110375msgstr "Aucune"
    111376
    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
    117378msgctxt "Select post type"
    118379msgid "None"
    119380msgstr "Aucun"
    120381
    121 #: includes/class-project.php:178
    122 msgid "Goal achieved: "
    123 msgstr "Objectif atteint : "
    124 
    125 #: includes/class-project.php:179
    126 msgid "Goal: "
    127 msgstr "Objectif : "
    128 
    129 #: includes/class-project.php:205
    130 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:226
    136 msgid "Project goals and counterparts"
    137 msgstr "Objectifs et contreparties"
    138 
    139 #: includes/class-project.php:236
    140 msgid "Add a goal"
    141 msgstr "Ajouter un objectif"
    142 
    143 #: includes/class-project.php:241
    144 msgid "Goals"
    145 msgstr "Objectifs"
    146 
    147 #: includes/class-project.php:246 includes/class-project.php:392
    148 #: includes/classes.php:256
    149 msgid "Amount"
    150 msgstr "Montant"
    151 
    152 #: includes/class-project.php:254 includes/class-project.php:283
    153 #: includes/class-project.php:393 includes/class-project.php:440
    154 msgid "Description"
    155 msgstr "Description"
    156 
    157 #: includes/class-project.php:268
    158 msgid "Add a counterpart"
    159 msgstr "Ajouter une contrepartie"
    160 
    161 #: includes/class-project.php:275 includes/class-project.php:440
    162 msgid "Price"
    163 msgstr "Prix"
    164 
    165 #: includes/class-project.php:290 includes/class-project.php:440
    166 msgid "Threshold"
    167 msgstr "Seuil"
    168 
    169 #: includes/class-project.php:322
    170 msgid "Edit"
    171 msgstr "Modifier"
    172 
    173 #: includes/class-project.php:438
    174 msgid "Counterparts"
    175 msgstr "Contreparties"
    176 
    177 #: includes/classes.php:63 includes/classes.php:68
    178 msgid "Donate"
    179 msgstr "Faire un don"
    180 
    181 #: includes/classes.php:225 includes/classes.php:394
    182 #: includes/post-type-project.php:6
    183 msgid "Project"
    184 msgstr "Projet"
    185 
    186 #: includes/classes.php:228
    187 msgid "Enter a project name"
    188 msgstr "Entrez un nom de projet"
    189 
    190 #: includes/classes.php:238
    191 msgid "Project: "
    192 msgstr "Projet : "
    193 
    194 #: includes/classes.php:256
    195 msgid "Add to fee"
    196 msgstr "Ajouter au tarif"
    197 
    198 #: includes/classes.php:257
    199 msgid "Donation amount"
    200 msgstr "Montant du don"
    201 
    202 #: includes/classes.php:320
    203 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:331
    210 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:396
    215 msgid "Project ID"
    216 msgstr "ID du projet"
    217 
    218 #: includes/classes.php:413
    219 msgid "From"
    220 msgstr "À partir de"
    221 
    222 #: includes/classes.php:424
    223 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:469
    231 msgid "No posts found"
    232 msgstr "Aucun article trouvé"
    233 
    234 #: includes/classes.php:471 includes/class-woocommerce.php:70
    235 msgid "Select a project"
    236 msgstr "Choisir un projet"
    237 
    238 #: includes/post-type-project.php:5
    239 msgid "Projects"
    240 msgstr "Projets"
    241 
    242 #: includes/post-type-project.php:7
    243 msgid "Add New"
    244 msgstr "Ajouter"
    245 
    246 #: includes/post-type-project.php:8
    247 msgid "Add New Project"
    248 msgstr "Ajouter un projet"
    249 
    250 #: includes/post-type-project.php:9
    251 msgid "Edit Project"
    252 msgstr "Modifier le projet"
    253 
    254 #: includes/post-type-project.php:10
    255 msgid "New Project"
    256 msgstr "Nouveau projet"
    257 
    258 #: includes/post-type-project.php:11
    259 msgid "All Projects"
    260 msgstr "Tous les projets"
    261 
    262 #: includes/post-type-project.php:12
    263 msgid "View Project"
    264 msgstr "Voir projet"
    265 
    266 #: includes/post-type-project.php:13
    267 msgid "Search Projects"
    268 msgstr "Rechercher dans les projets"
    269 
    270 #: includes/post-type-project.php:14
    271 msgid "Nothing found"
    272 msgstr "Rien trouvé"
    273 
    274 #: includes/post-type-project.php:15
    275 msgid "Nothing found in Trash"
    276 msgstr "Rien trouvé dans la corbeille"
    277 
    278 #: includes/post-type-project.php:46
    279 msgid "Project Categories"
    280 msgstr "Catégorie de projet"
    281 
    282 #: includes/post-type-project.php:47
    283 msgid "Project Category"
    284 msgstr "Catégorie du projet"
    285 
    286 #: includes/post-type-project.php:48
    287 msgid "Search Categories"
    288 msgstr "Rechercher dans les catégories"
    289 
    290 #: includes/post-type-project.php:49
    291 msgid "All Categories"
    292 msgstr "Toutes les catégories"
    293 
    294 #: includes/post-type-project.php:50
    295 msgid "Parent Category"
    296 msgstr "Catégorie parente"
    297 
    298 #: includes/post-type-project.php:51
    299 msgid "Parent Category:"
    300 msgstr "Catégorie parente :"
    301 
    302 #: includes/post-type-project.php:52
    303 msgid "Edit Category"
    304 msgstr "Modifier la catégorie"
    305 
    306 #: includes/post-type-project.php:53
    307 msgid "Update Category"
    308 msgstr "Mettre à jour la catégorie"
    309 
    310 #: includes/post-type-project.php:54
    311 msgid "Add New Category"
    312 msgstr "Ajouter une catégorie"
    313 
    314 #: includes/post-type-project.php:55
    315 msgid "New Category Name"
    316 msgstr "Nom de la nouvelle catégorie"
    317 
    318 #: includes/post-type-project.php:56
    319 msgid "Categories"
    320 msgstr "Catégories"
    321 
    322 #: includes/post-type-project.php:57
    323 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:71
    327 msgid "Project Tags"
    328 msgstr "Étiquettes de projet"
    329 
    330 #: includes/post-type-project.php:72
    331 msgid "Project Tag"
    332 msgstr "Étiquette de projet"
    333 
    334 #: includes/post-type-project.php:73
    335 msgid "Search Tags"
    336 msgstr "Rechercher dans les étiquettes"
    337 
    338 #: includes/post-type-project.php:74
    339 msgid "All Tags"
    340 msgstr "Toutes les étiquettes"
    341 
    342 #: includes/post-type-project.php:75
    343 msgid "Parent Tag"
    344 msgstr "Étiquette parente"
    345 
    346 #: includes/post-type-project.php:76
    347 msgid "Parent Tag:"
    348 msgstr "Étiquette parente :"
    349 
    350 #: includes/post-type-project.php:77
    351 msgid "Edit Tag"
    352 msgstr "Modifier l'étiquette"
    353 
    354 #: includes/post-type-project.php:78
    355 msgid "Update Tag"
    356 msgstr "Mettre à jour l'étiquette"
    357 
    358 #: includes/post-type-project.php:79
    359 msgid "Add New Tag"
    360 msgstr "Ajouter une étiquette"
    361 
    362 #: includes/post-type-project.php:80
    363 msgid "New Tag Name"
    364 msgstr "Nom de la nouvelle étiquette"
    365 
    366 #: includes/post-type-project.php:81
    367 msgid "Tags"
    368 msgstr "Étiquettes"
    369 
    370 #: includes/class-woocommerce.php:35
    371 msgid "Project Donation"
    372 msgstr "Project Donation"
    373 
    374 #: includes/class-woocommerce.php:36
    375 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:68
    379 msgid "Fixed project"
    380 msgstr "Projet fixe"
    381 
    382 #: includes/class-woocommerce.php:84
    383 msgid "Create at least one project first"
    384 msgstr "Créez au moins un projet"
    385 
    386382#~ msgid "Next goal: "
    387383#~ msgstr "Objectif suivant : "
  • project-donations-wc/trunk/languages/project-donations-wc-nl_NL.po

    r2924105 r3053009  
    22msgstr ""
    33"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"
    76"PO-Revision-Date: \n"
    8 "Last-Translator: \n"
     7"Last-Translator: gpt-po v1.0.7\n"
    98"Language-Team: \n"
    109"Language: nl\n"
    1110"MIME-Version: 1.0\n"
    12 "Content-Type: text/plain; charset=UTF-8\n"
     11"Content-Type: text/plain; charset=utf-8\n"
    1312"Content-Transfer-Encoding: 8bit\n"
     13"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1414"X-Generator: Poedit 3.0.1\n"
    1515
     
    2222msgstr "https://wordpress.org/plugins/project-donations-wc/"
    2323
    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"
     24msgid "Empower charity and crowdfunding projects with WooCommerce integration."
     25msgstr "Boost je liefdadigheids- en crowdfundingprojecten met WooCommerce."
    3126
    3227#. Author of the plugin
     
    3833msgstr "https://magiiic.com/"
    3934
    40 #: admin/wc-admin-classes.php:23
     35#: admin/wc-admin-classes.php:24
    4136msgid "Settings"
    4237msgstr "Instellingen"
    4338
    44 #: admin/wc-admin-classes.php:35 includes/class-woocommerce.php:45
     39#: admin/wc-admin-classes.php:38 includes/class-woocommerce.php:79
    4540msgid "Project Donations"
    4641msgstr "Project Donations"
    4742
    48 #: admin/wc-admin-classes.php:75
     43#: admin/wc-admin-classes.php:81
    4944msgid "Default settings"
    5045msgstr "Standaard instellingen"
    5146
    52 #: admin/wc-admin-classes.php:78
     47#: admin/wc-admin-classes.php:84
    5348msgid "These settings can be overridden for each product."
    5449msgstr "Deze instellingen kunnen voor elk product worden gewijzigd."
    5550
    56 #: admin/wc-admin-classes.php:81
     51#: admin/wc-admin-classes.php:87
    5752msgid "Add project post type"
    5853msgstr "Een projecttype toevoegen"
    5954
    60 #: admin/wc-admin-classes.php:86
     55#: admin/wc-admin-classes.php:92
    6156msgid "Create a project post type"
    6257msgstr "Creëer een project item type"
    6358
    64 #: admin/wc-admin-classes.php:87 admin/wc-admin-classes.php:125
     59#: admin/wc-admin-classes.php:93 admin/wc-admin-classes.php:131
    6560msgid "(enable only if no other plugin implements it)"
    6661msgstr "(alleen activeren als geen andere extensie het implementeert)"
    6762
    68 #: admin/wc-admin-classes.php:92
     63#: admin/wc-admin-classes.php:98
    6964msgid "Get projects from post type"
    7065msgstr "Verkrijg projecten van het type artikel"
    7166
    72 #: admin/wc-admin-classes.php:119
     67#: admin/wc-admin-classes.php:125
    7368msgid "Customer defined amount"
    7469msgstr "Door de klant bepaald bedrag"
    7570
    76 #: admin/wc-admin-classes.php:124
     71#: admin/wc-admin-classes.php:130
    7772msgid "Allow customer to choose the amount to pay"
    7873msgstr "De klant toestaan het te betalen bedrag te kiezen"
    7974
    80 #: admin/wc-admin-classes.php:130
     75#: admin/wc-admin-classes.php:136
    8176msgid "Minimum donation amount (%s)"
    8277msgstr "Minimum donatiebedrag (%s)"
    8378
    84 #: admin/wc-admin-classes.php:189
     79#: admin/wc-admin-classes.php:149
     80msgid "Donate button label"
     81msgstr "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
     85msgid "Donate"
     86msgstr "Doneren"
     87
     88#: admin/wc-admin-classes.php:157
     89msgid "Donation field placeholder"
     90msgstr "Donatieveld placeholder"
     91
     92#: admin/wc-admin-classes.php:159 admin/wc-admin-classes.php:160 includes/class-woocommerce.php:341
     93msgid "Donation amount"
     94msgstr "Donatiebedrag"
     95
     96#: admin/wc-admin-classes.php:215
    8597msgid "No products found"
    8698msgstr "Geen producten gevonden"
    8799
    88 #: admin/wc-admin-classes.php:191
     100#: admin/wc-admin-classes.php:238
     101msgid "No categories found"
     102msgstr "Geen categorie gevonden"
     103
     104#: admin/wc-admin-classes.php:262
     105msgid "No taxonomies found"
     106msgstr "Geen taxonomie gevonden"
     107
     108#: admin/wc-admin-classes.php:279
     109msgid "No post types found, wich is tretty weird."
     110msgstr "Geen type artikel gevonden, wat nogal vreemd is."
     111
     112#: includes/class-project.php:92
     113msgid "Projects"
     114msgstr "Projecten"
     115
     116#: includes/class-project.php:93 includes/class-woocommerce.php:311 includes/class-woocommerce.php:510
     117msgid "Project"
     118msgstr "Project"
     119
     120#: includes/class-project.php:94
     121msgid "Add New"
     122msgstr "Toevoegen"
     123
     124#: includes/class-project.php:95
     125msgid "Add New Project"
     126msgstr "Een project toevoegen"
     127
     128#: includes/class-project.php:96
     129msgid "Edit Project"
     130msgstr "Het project wijzigen"
     131
     132#: includes/class-project.php:97
     133msgid "New Project"
     134msgstr "Nieuw project"
     135
     136#: includes/class-project.php:98
     137msgid "All Projects"
     138msgstr "Alle projecten"
     139
     140#: includes/class-project.php:99
     141msgid "View Project"
     142msgstr "Zie project"
     143
     144#: includes/class-project.php:100
     145msgid "Search Projects"
     146msgstr "Zoeken in projecten"
     147
     148#: includes/class-project.php:101
     149msgid "Nothing found"
     150msgstr "Niets gevonden"
     151
     152#: includes/class-project.php:102
     153msgid "Nothing found in Trash"
     154msgstr "Niets gevonden in de mand"
     155
     156#: includes/class-project.php:133
     157msgid "Project Categories"
     158msgstr "Categorie projecten"
     159
     160#: includes/class-project.php:134
     161msgid "Project Category"
     162msgstr "Categorie projecten"
     163
     164#: includes/class-project.php:135
     165msgid "Search Categories"
     166msgstr "Zoeken in categorieën"
     167
     168#: includes/class-project.php:136
     169msgid "All Categories"
     170msgstr "Alle categorieën"
     171
     172#: includes/class-project.php:137
     173msgid "Parent Category"
     174msgstr "Ouder categorie"
     175
     176#: includes/class-project.php:138
     177msgid "Parent Category:"
     178msgstr "Verwante categorie :"
     179
     180#: includes/class-project.php:139
     181msgid "Edit Category"
     182msgstr "Categorie wijzigen"
     183
     184#: includes/class-project.php:140
     185msgid "Update Category"
     186msgstr "Categorie bijwerken"
     187
     188#: includes/class-project.php:141
     189msgid "Add New Category"
     190msgstr "Een categorie toevoegen"
     191
     192#: includes/class-project.php:142
     193msgid "New Category Name"
     194msgstr "Naam van de nieuwe categorie"
     195
     196#: includes/class-project.php:143
     197msgid "Categories"
     198msgstr "Categorieën"
     199
     200#: includes/class-project.php:144
     201msgid "You currently don't have any project categories."
     202msgstr "U hebt momenteel geen projectcategorieën."
     203
     204#: includes/class-project.php:158
     205msgid "Project Tags"
     206msgstr "Project labels"
     207
     208#: includes/class-project.php:159
     209msgid "Project Tag"
     210msgstr "Projectlabel"
     211
     212#: includes/class-project.php:160
     213msgid "Search Tags"
     214msgstr "Zoeken in etiketten"
     215
     216#: includes/class-project.php:161
     217msgid "All Tags"
     218msgstr "Alle etiketten"
     219
     220#: includes/class-project.php:162
     221msgid "Parent Tag"
     222msgstr "Label van de ouders"
     223
     224#: includes/class-project.php:163
     225msgid "Parent Tag:"
     226msgstr "Ouder label :"
     227
     228#: includes/class-project.php:164
     229msgid "Edit Tag"
     230msgstr "Verander het etiket"
     231
     232#: includes/class-project.php:165
     233msgid "Update Tag"
     234msgstr "Het etiket bijwerken"
     235
     236#: includes/class-project.php:166
     237msgid "Add New Tag"
     238msgstr "Een etiket toevoegen"
     239
     240#: includes/class-project.php:167
     241msgid "New Tag Name"
     242msgstr "Naam van het nieuwe label"
     243
     244#: includes/class-project.php:168
     245msgid "Tags"
     246msgstr "Etiketten"
     247
     248#: includes/class-project.php:378
     249msgid "Goal achieved: "
     250msgstr "Doel bereikt: "
     251
     252#: includes/class-project.php:379
     253msgid "Goal: "
     254msgstr "Doel: "
     255
     256#: includes/class-project.php:407
     257msgid "Collected: %1$s (%2$s sale)"
     258msgid_plural "Collected: %1$s (%2$s sales)"
     259msgstr[0] "Verzameld: %1$s (%2$s verkoop)"
     260msgstr[1] "Verzameld: %1$s (%2$s verkopen)"
     261
     262#: includes/class-project.php:434
     263msgid "Project goals and counterparts"
     264msgstr "Projectdoelen en tegenhangers"
     265
     266#: includes/class-project.php:444
     267msgid "Add a goal"
     268msgstr "Voeg een doel toe"
     269
     270#: includes/class-project.php:450
     271msgid "Goals"
     272msgstr "Doelen"
     273
     274#: includes/class-project.php:456 includes/class-project.php:611 includes/class-woocommerce.php:345
     275msgid "Amount"
     276msgstr "Bedrag"
     277
     278#: includes/class-project.php:464 includes/class-project.php:493 includes/class-project.php:612
     279#: includes/class-project.php:669
     280msgid "Description"
     281msgstr "Beschrijving"
     282
     283#: includes/class-project.php:478
     284msgid "Add a counterpart"
     285msgstr "Voeg een tegenhanger toe"
     286
     287#: includes/class-project.php:485 includes/class-project.php:669
     288msgid "Price"
     289msgstr "Prijs"
     290
     291#: includes/class-project.php:500 includes/class-project.php:669
     292msgid "Threshold"
     293msgstr "Drempelwaarde"
     294
     295#: includes/class-project.php:527
     296msgid "Edit"
     297msgstr "Bewerken"
     298
     299#: includes/class-project.php:667
     300msgid "Counterparts"
     301msgstr "Tegenhangers"
     302
     303#: includes/class-woocommerce.php:64
     304msgid "Project Donation"
     305msgstr "Project Donation"
     306
     307#: includes/class-woocommerce.php:65
     308msgid "Check to add a project field to product page."
     309msgstr "Activeer om een projectveld aan de productpagina toe te voegen."
     310
     311#: includes/class-woocommerce.php:107
     312msgid "Fixed project"
     313msgstr "Vastgesteld project"
     314
     315#: includes/class-woocommerce.php:109 includes/classes.php:84
     316msgid "Select a project"
     317msgstr "Kies een project"
     318
     319#: includes/class-woocommerce.php:123
     320msgid "Create at least one project first"
     321msgstr "Maak eerst minimaal één project aan"
     322
     323#: includes/class-woocommerce.php:314
     324msgid "Enter a project name"
     325msgstr "Voer een projectnaam in"
     326
     327#: includes/class-woocommerce.php:324
     328msgid "Project: "
     329msgstr "Project: "
     330
     331#: includes/class-woocommerce.php:345
     332msgid "Add to fee"
     333msgstr "Toevoegen aan prijslijst"
     334
     335#: includes/class-woocommerce.php:417
     336msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay."
     337msgstr "\"%s\" kan niet aan het mandje worden toegevoegd. Geef een geldig bedrag om te betalen."
     338
     339#: includes/class-woocommerce.php:431
     340msgid "\"%s\" could not be added to the cart. Please provide a project name."
     341msgstr "\"%s\" kan niet aan het mandje worden toegevoegd. Geef een projectnaam."
     342
     343#: includes/class-woocommerce.php:512
     344msgid "Project ID"
     345msgstr "Project-ID"
     346
     347#: includes/class-woocommerce.php:532
     348msgid "From"
     349msgstr "Van"
     350
     351#: includes/class-woocommerce.php:545
     352msgid "%s will be added to the chosen amount, the total price will be calculated before checkout."
     353msgstr ""
     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
     358msgid "No posts found"
     359msgstr "Geen items gevonden"
     360
     361#: admin/wc-admin-classes.php:218
    89362msgctxt "Select product"
    90363msgid "None"
    91364msgstr "Geen"
    92365
    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
    98367msgctxt "Select category"
    99368msgid "None"
    100369msgstr "Geen"
    101370
    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
    107372msgctxt "Select taxonomy"
    108373msgid "None"
    109374msgstr "Geen"
    110375
    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
    116377msgctxt "Select post type"
    117378msgid "None"
    118379msgstr "Geen"
    119380
    120 #: includes/classes.php:62 includes/classes.php:67
    121 msgid "Donate"
    122 msgstr "Doneren"
    123 
    124 #: includes/classes.php:214 includes/classes.php:373
    125 #: includes/post-type-project.php:6
    126 msgid "Project"
    127 msgstr "Project"
    128 
    129 #: includes/classes.php:217
    130 msgid "Enter a project name"
    131 msgstr "Voer een projectnaam in"
    132 
    133 #: includes/classes.php:227
    134 msgid "Project: "
    135 msgstr "Project: "
    136 
    137 #: includes/classes.php:235
    138 msgid "Add to fee"
    139 msgstr "Toevoegen aan prijslijst"
    140 
    141 #: includes/classes.php:235
    142 msgid "Amount"
    143 msgstr "Bedrag"
    144 
    145 #: includes/classes.php:236
    146 msgid "Donation amount"
    147 msgstr "Donatiebedrag"
    148 
    149 #: includes/classes.php:299
    150 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:310
    157 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:375
    162 msgid "Project ID"
    163 msgstr "Project-ID"
    164 
    165 #: includes/classes.php:392
    166 msgid "From"
    167 msgstr "Van"
    168 
    169 #: includes/classes.php:403
    170 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:448
    178 msgid "No posts found"
    179 msgstr "Geen items gevonden"
    180 
    181 #: includes/classes.php:450 includes/class-woocommerce.php:70
    182 msgid "Select a project"
    183 msgstr "Kies een project"
    184 
    185 #: includes/post-type-project.php:5
    186 msgid "Projects"
    187 msgstr "Projecten"
    188 
    189 #: includes/post-type-project.php:7
    190 msgid "Add New"
    191 msgstr "Toevoegen"
    192 
    193 #: includes/post-type-project.php:8
    194 msgid "Add New Project"
    195 msgstr "Een project toevoegen"
    196 
    197 #: includes/post-type-project.php:9
    198 msgid "Edit Project"
    199 msgstr "Het project wijzigen"
    200 
    201 #: includes/post-type-project.php:10
    202 msgid "New Project"
    203 msgstr "Nieuw project"
    204 
    205 #: includes/post-type-project.php:11
    206 msgid "All Projects"
    207 msgstr "Alle projecten"
    208 
    209 #: includes/post-type-project.php:12
    210 msgid "View Project"
    211 msgstr "Zie project"
    212 
    213 #: includes/post-type-project.php:13
    214 msgid "Search Projects"
    215 msgstr "Zoeken in projecten"
    216 
    217 #: includes/post-type-project.php:14
    218 msgid "Nothing found"
    219 msgstr "Niets gevonden"
    220 
    221 #: includes/post-type-project.php:15
    222 msgid "Nothing found in Trash"
    223 msgstr "Niets gevonden in de mand"
    224 
    225 #: includes/post-type-project.php:46
    226 msgid "Project Categories"
    227 msgstr "Categorie projecten"
    228 
    229 #: includes/post-type-project.php:47
    230 msgid "Project Category"
    231 msgstr "Categorie projecten"
    232 
    233 #: includes/post-type-project.php:48
    234 msgid "Search Categories"
    235 msgstr "Zoeken in categorieën"
    236 
    237 #: includes/post-type-project.php:49
    238 msgid "All Categories"
    239 msgstr "Alle categorieën"
    240 
    241 #: includes/post-type-project.php:50
    242 msgid "Parent Category"
    243 msgstr "Ouder categorie"
    244 
    245 #: includes/post-type-project.php:51
    246 msgid "Parent Category:"
    247 msgstr "Verwante categorie :"
    248 
    249 #: includes/post-type-project.php:52
    250 msgid "Edit Category"
    251 msgstr "Categorie wijzigen"
    252 
    253 #: includes/post-type-project.php:53
    254 msgid "Update Category"
    255 msgstr "Categorie bijwerken"
    256 
    257 #: includes/post-type-project.php:54
    258 msgid "Add New Category"
    259 msgstr "Een categorie toevoegen"
    260 
    261 #: includes/post-type-project.php:55
    262 msgid "New Category Name"
    263 msgstr "Naam van de nieuwe categorie"
    264 
    265 #: includes/post-type-project.php:56
    266 msgid "Categories"
    267 msgstr "Categorieën"
    268 
    269 #: includes/post-type-project.php:57
    270 msgid "You currently don't have any project categories."
    271 msgstr "U hebt momenteel geen projectcategorieën."
    272 
    273 #: includes/post-type-project.php:71
    274 msgid "Project Tags"
    275 msgstr "Project labels"
    276 
    277 #: includes/post-type-project.php:72
    278 msgid "Project Tag"
    279 msgstr "Projectlabel"
    280 
    281 #: includes/post-type-project.php:73
    282 msgid "Search Tags"
    283 msgstr "Zoeken in etiketten"
    284 
    285 #: includes/post-type-project.php:74
    286 msgid "All Tags"
    287 msgstr "Alle etiketten"
    288 
    289 #: includes/post-type-project.php:75
    290 msgid "Parent Tag"
    291 msgstr "Label van de ouders"
    292 
    293 #: includes/post-type-project.php:76
    294 msgid "Parent Tag:"
    295 msgstr "Ouder label :"
    296 
    297 #: includes/post-type-project.php:77
    298 msgid "Edit Tag"
    299 msgstr "Verander het etiket"
    300 
    301 #: includes/post-type-project.php:78
    302 msgid "Update Tag"
    303 msgstr "Het etiket bijwerken"
    304 
    305 #: includes/post-type-project.php:79
    306 msgid "Add New Tag"
    307 msgstr "Een etiket toevoegen"
    308 
    309 #: includes/post-type-project.php:80
    310 msgid "New Tag Name"
    311 msgstr "Naam van het nieuwe label"
    312 
    313 #: includes/post-type-project.php:81
    314 msgid "Tags"
    315 msgstr "Etiketten"
    316 
    317 #: includes/class-woocommerce.php:35
    318 msgid "Project Donation"
    319 msgstr "Project Donation"
    320 
    321 #: includes/class-woocommerce.php:36
    322 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:68
    326 msgid "Fixed project"
    327 msgstr ""
    328 
    329 #: includes/class-woocommerce.php:84
    330 msgid "Create at least one project first"
    331 msgstr ""
    332 
    333381#~ msgid "Amount to add"
    334382#~ msgstr "Toe te voegen bedrag"
  • project-donations-wc/trunk/languages/project-donations-wc.pot

    r2924105 r3053009  
    11# 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.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Project Donations for WooCommerce 1.5\n"
     5"Project-Id-Version: Project Donations for WooCommerce1.5.6-rc-4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project-donations-wc-dev\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"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"
    1313"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"
    1515
    1616#. Plugin Name of the plugin
     
    2323
    2424#. Description of the plugin
    25 msgid "Add project field to WooCommerce products, allow clients to link their purchase to a project"
     25msgid "Empower charity and crowdfunding projects with WooCommerce integration."
    2626msgstr ""
    2727
     
    3434msgstr ""
    3535
    36 #: admin/wc-admin-classes.php:23
     36#: admin/wc-admin-classes.php:24
    3737msgid "Settings"
    3838msgstr ""
    3939
    40 #: admin/wc-admin-classes.php:35
    41 #: includes/class-woocommerce.php:45
     40#: admin/wc-admin-classes.php:38
     41#: includes/class-woocommerce.php:79
    4242msgid "Project Donations"
    4343msgstr ""
    4444
    45 #: admin/wc-admin-classes.php:75
     45#: admin/wc-admin-classes.php:81
    4646msgid "Default settings"
    4747msgstr ""
    4848
    49 #: admin/wc-admin-classes.php:78
     49#: admin/wc-admin-classes.php:84
    5050msgid "These settings can be overridden for each product."
    5151msgstr ""
    5252
    53 #: admin/wc-admin-classes.php:81
     53#: admin/wc-admin-classes.php:87
    5454msgid "Add project post type"
    5555msgstr ""
    5656
    57 #: admin/wc-admin-classes.php:86
     57#: admin/wc-admin-classes.php:92
    5858msgid "Create a project post type"
    5959msgstr ""
    6060
    61 #: admin/wc-admin-classes.php:87
     61#: admin/wc-admin-classes.php:93
     62#: admin/wc-admin-classes.php:131
     63msgid "(enable only if no other plugin implements it)"
     64msgstr ""
     65
     66#: admin/wc-admin-classes.php:98
     67msgid "Get projects from post type"
     68msgstr ""
     69
    6270#: 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:92
    67 msgid "Get projects from post type"
    68 msgstr ""
    69 
    70 #: admin/wc-admin-classes.php:119
    7171msgid "Customer defined amount"
    7272msgstr ""
    7373
    74 #: admin/wc-admin-classes.php:124
     74#: admin/wc-admin-classes.php:130
    7575msgid "Allow customer to choose the amount to pay"
    7676msgstr ""
    7777
    78 #: admin/wc-admin-classes.php:130
     78#: admin/wc-admin-classes.php:136
    7979msgid "Minimum donation amount (%s)"
    8080msgstr ""
    8181
    82 #: admin/wc-admin-classes.php:189
     82#: admin/wc-admin-classes.php:149
     83msgid "Donate button label"
     84msgstr ""
     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
     90msgid "Donate"
     91msgstr ""
     92
     93#: admin/wc-admin-classes.php:157
     94msgid "Donation field placeholder"
     95msgstr ""
     96
     97#: admin/wc-admin-classes.php:159
     98#: admin/wc-admin-classes.php:160
     99#: includes/class-woocommerce.php:341
     100msgid "Donation amount"
     101msgstr ""
     102
     103#: admin/wc-admin-classes.php:215
    83104msgid "No products found"
    84105msgstr ""
    85106
    86 #: admin/wc-admin-classes.php:191
     107#: admin/wc-admin-classes.php:218
    87108msgctxt "Select product"
    88109msgid "None"
    89110msgstr ""
    90111
    91 #: admin/wc-admin-classes.php:207
     112#: admin/wc-admin-classes.php:238
    92113msgid "No categories found"
    93114msgstr ""
    94115
    95 #: admin/wc-admin-classes.php:209
     116#: admin/wc-admin-classes.php:241
    96117msgctxt "Select category"
    97118msgid "None"
    98119msgstr ""
    99120
    100 #: admin/wc-admin-classes.php:226
     121#: admin/wc-admin-classes.php:262
    101122msgid "No taxonomies found"
    102123msgstr ""
    103124
    104 #: admin/wc-admin-classes.php:227
     125#: admin/wc-admin-classes.php:264
    105126msgctxt "Select taxonomy"
    106127msgid "None"
    107128msgstr ""
    108129
    109 #: admin/wc-admin-classes.php:241
     130#: admin/wc-admin-classes.php:279
    110131msgid "No post types found, wich is tretty weird."
    111132msgstr ""
    112133
    113 #: admin/wc-admin-classes.php:243
     134#: admin/wc-admin-classes.php:282
    114135msgctxt "Select post type"
    115136msgid "None"
    116137msgstr ""
    117138
    118 #: includes/class-project.php:178
     139#: includes/class-project.php:92
     140msgid "Projects"
     141msgstr ""
     142
     143#: includes/class-project.php:93
     144#: includes/class-woocommerce.php:311
     145#: includes/class-woocommerce.php:510
     146msgid "Project"
     147msgstr ""
     148
     149#: includes/class-project.php:94
     150msgid "Add New"
     151msgstr ""
     152
     153#: includes/class-project.php:95
     154msgid "Add New Project"
     155msgstr ""
     156
     157#: includes/class-project.php:96
     158msgid "Edit Project"
     159msgstr ""
     160
     161#: includes/class-project.php:97
     162msgid "New Project"
     163msgstr ""
     164
     165#: includes/class-project.php:98
     166msgid "All Projects"
     167msgstr ""
     168
     169#: includes/class-project.php:99
     170msgid "View Project"
     171msgstr ""
     172
     173#: includes/class-project.php:100
     174msgid "Search Projects"
     175msgstr ""
     176
     177#: includes/class-project.php:101
     178msgid "Nothing found"
     179msgstr ""
     180
     181#: includes/class-project.php:102
     182msgid "Nothing found in Trash"
     183msgstr ""
     184
     185#: includes/class-project.php:133
     186msgid "Project Categories"
     187msgstr ""
     188
     189#: includes/class-project.php:134
     190msgid "Project Category"
     191msgstr ""
     192
     193#: includes/class-project.php:135
     194msgid "Search Categories"
     195msgstr ""
     196
     197#: includes/class-project.php:136
     198msgid "All Categories"
     199msgstr ""
     200
     201#: includes/class-project.php:137
     202msgid "Parent Category"
     203msgstr ""
     204
     205#: includes/class-project.php:138
     206msgid "Parent Category:"
     207msgstr ""
     208
     209#: includes/class-project.php:139
     210msgid "Edit Category"
     211msgstr ""
     212
     213#: includes/class-project.php:140
     214msgid "Update Category"
     215msgstr ""
     216
     217#: includes/class-project.php:141
     218msgid "Add New Category"
     219msgstr ""
     220
     221#: includes/class-project.php:142
     222msgid "New Category Name"
     223msgstr ""
     224
     225#: includes/class-project.php:143
     226msgid "Categories"
     227msgstr ""
     228
     229#: includes/class-project.php:144
     230msgid "You currently don't have any project categories."
     231msgstr ""
     232
     233#: includes/class-project.php:158
     234msgid "Project Tags"
     235msgstr ""
     236
     237#: includes/class-project.php:159
     238msgid "Project Tag"
     239msgstr ""
     240
     241#: includes/class-project.php:160
     242msgid "Search Tags"
     243msgstr ""
     244
     245#: includes/class-project.php:161
     246msgid "All Tags"
     247msgstr ""
     248
     249#: includes/class-project.php:162
     250msgid "Parent Tag"
     251msgstr ""
     252
     253#: includes/class-project.php:163
     254msgid "Parent Tag:"
     255msgstr ""
     256
     257#: includes/class-project.php:164
     258msgid "Edit Tag"
     259msgstr ""
     260
     261#: includes/class-project.php:165
     262msgid "Update Tag"
     263msgstr ""
     264
     265#: includes/class-project.php:166
     266msgid "Add New Tag"
     267msgstr ""
     268
     269#: includes/class-project.php:167
     270msgid "New Tag Name"
     271msgstr ""
     272
     273#: includes/class-project.php:168
     274msgid "Tags"
     275msgstr ""
     276
     277#: includes/class-project.php:378
    119278msgid "Goal achieved: "
    120279msgstr ""
    121280
    122 #: includes/class-project.php:179
     281#: includes/class-project.php:379
    123282msgid "Goal: "
    124283msgstr ""
    125284
    126 #: includes/class-project.php:205
    127 msgid "Collected: %s (%s sale)"
    128 msgid_plural "Collected: %s (%s sales)"
     285#: includes/class-project.php:407
     286msgid "Collected: %1$s (%2$s sale)"
     287msgid_plural "Collected: %1$s (%2$s sales)"
    129288msgstr[0] ""
    130289msgstr[1] ""
    131290
    132 #: includes/class-project.php:226
     291#: includes/class-project.php:434
    133292msgid "Project goals and counterparts"
    134293msgstr ""
    135294
    136 #: includes/class-project.php:236
     295#: includes/class-project.php:444
    137296msgid "Add a goal"
    138297msgstr ""
    139298
    140 #: includes/class-project.php:241
     299#: includes/class-project.php:450
    141300msgid "Goals"
    142301msgstr ""
    143302
    144 #: includes/class-project.php:246
    145 #: includes/class-project.php:392
    146 #: includes/classes.php:256
     303#: includes/class-project.php:456
     304#: includes/class-project.php:611
     305#: includes/class-woocommerce.php:345
    147306msgid "Amount"
    148307msgstr ""
    149308
    150 #: includes/class-project.php:254
    151 #: includes/class-project.php:283
    152 #: includes/class-project.php:393
    153 #: includes/class-project.php:440
     309#: includes/class-project.php:464
     310#: includes/class-project.php:493
     311#: includes/class-project.php:612
     312#: includes/class-project.php:669
    154313msgid "Description"
    155314msgstr ""
    156315
    157 #: includes/class-project.php:268
     316#: includes/class-project.php:478
    158317msgid "Add a counterpart"
    159318msgstr ""
    160319
    161 #: includes/class-project.php:275
    162 #: includes/class-project.php:440
     320#: includes/class-project.php:485
     321#: includes/class-project.php:669
    163322msgid "Price"
    164323msgstr ""
    165324
    166 #: includes/class-project.php:290
    167 #: includes/class-project.php:440
     325#: includes/class-project.php:500
     326#: includes/class-project.php:669
    168327msgid "Threshold"
    169328msgstr ""
    170329
    171 #: includes/class-project.php:322
     330#: includes/class-project.php:527
    172331msgid "Edit"
    173332msgstr ""
    174333
    175 #: includes/class-project.php:438
     334#: includes/class-project.php:667
    176335msgid "Counterparts"
    177336msgstr ""
    178337
    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
     339msgid "Project Donation"
     340msgstr ""
     341
     342#: includes/class-woocommerce.php:65
     343msgid "Check to add a project field to product page."
     344msgstr ""
     345
     346#: includes/class-woocommerce.php:107
     347msgid "Fixed project"
     348msgstr ""
     349
     350#: includes/class-woocommerce.php:109
     351#: includes/classes.php:84
     352msgid "Select a project"
     353msgstr ""
     354
     355#: includes/class-woocommerce.php:123
     356msgid "Create at least one project first"
     357msgstr ""
     358
     359#: includes/class-woocommerce.php:314
    191360msgid "Enter a project name"
    192361msgstr ""
    193362
    194 #: includes/classes.php:238
     363#: includes/class-woocommerce.php:324
    195364msgid "Project: "
    196365msgstr ""
    197366
    198 #: includes/classes.php:256
     367#: includes/class-woocommerce.php:345
    199368msgid "Add to fee"
    200369msgstr ""
    201370
    202 #: includes/classes.php:257
    203 msgid "Donation amount"
    204 msgstr ""
    205 
    206 #: includes/classes.php:320
     371#: includes/class-woocommerce.php:417
    207372msgid "\"%s\" could not be added to the cart. Please provide a valid amount to pay."
    208373msgstr ""
    209374
    210 #: includes/classes.php:331
     375#: includes/class-woocommerce.php:431
    211376msgid "\"%s\" could not be added to the cart. Please provide a project name."
    212377msgstr ""
    213378
    214 #: includes/classes.php:396
     379#: includes/class-woocommerce.php:512
    215380msgid "Project ID"
    216381msgstr ""
    217382
    218 #: includes/classes.php:413
     383#: includes/class-woocommerce.php:532
    219384msgid "From"
    220385msgstr ""
    221386
    222 #: includes/classes.php:424
     387#: includes/class-woocommerce.php:545
    223388msgid "%s will be added to the chosen amount, the total price will be calculated before checkout."
    224389msgstr ""
    225390
    226 #: includes/classes.php:469
     391#: includes/classes.php:81
    227392msgid "No posts found"
    228393msgstr ""
    229 
    230 #: includes/classes.php:471
    231 #: includes/class-woocommerce.php:70
    232 msgid "Select a project"
    233 msgstr ""
    234 
    235 #: includes/post-type-project.php:5
    236 msgid "Projects"
    237 msgstr ""
    238 
    239 #: includes/post-type-project.php:7
    240 msgid "Add New"
    241 msgstr ""
    242 
    243 #: includes/post-type-project.php:8
    244 msgid "Add New Project"
    245 msgstr ""
    246 
    247 #: includes/post-type-project.php:9
    248 msgid "Edit Project"
    249 msgstr ""
    250 
    251 #: includes/post-type-project.php:10
    252 msgid "New Project"
    253 msgstr ""
    254 
    255 #: includes/post-type-project.php:11
    256 msgid "All Projects"
    257 msgstr ""
    258 
    259 #: includes/post-type-project.php:12
    260 msgid "View Project"
    261 msgstr ""
    262 
    263 #: includes/post-type-project.php:13
    264 msgid "Search Projects"
    265 msgstr ""
    266 
    267 #: includes/post-type-project.php:14
    268 msgid "Nothing found"
    269 msgstr ""
    270 
    271 #: includes/post-type-project.php:15
    272 msgid "Nothing found in Trash"
    273 msgstr ""
    274 
    275 #: includes/post-type-project.php:46
    276 msgid "Project Categories"
    277 msgstr ""
    278 
    279 #: includes/post-type-project.php:47
    280 msgid "Project Category"
    281 msgstr ""
    282 
    283 #: includes/post-type-project.php:48
    284 msgid "Search Categories"
    285 msgstr ""
    286 
    287 #: includes/post-type-project.php:49
    288 msgid "All Categories"
    289 msgstr ""
    290 
    291 #: includes/post-type-project.php:50
    292 msgid "Parent Category"
    293 msgstr ""
    294 
    295 #: includes/post-type-project.php:51
    296 msgid "Parent Category:"
    297 msgstr ""
    298 
    299 #: includes/post-type-project.php:52
    300 msgid "Edit Category"
    301 msgstr ""
    302 
    303 #: includes/post-type-project.php:53
    304 msgid "Update Category"
    305 msgstr ""
    306 
    307 #: includes/post-type-project.php:54
    308 msgid "Add New Category"
    309 msgstr ""
    310 
    311 #: includes/post-type-project.php:55
    312 msgid "New Category Name"
    313 msgstr ""
    314 
    315 #: includes/post-type-project.php:56
    316 msgid "Categories"
    317 msgstr ""
    318 
    319 #: includes/post-type-project.php:57
    320 msgid "You currently don't have any project categories."
    321 msgstr ""
    322 
    323 #: includes/post-type-project.php:71
    324 msgid "Project Tags"
    325 msgstr ""
    326 
    327 #: includes/post-type-project.php:72
    328 msgid "Project Tag"
    329 msgstr ""
    330 
    331 #: includes/post-type-project.php:73
    332 msgid "Search Tags"
    333 msgstr ""
    334 
    335 #: includes/post-type-project.php:74
    336 msgid "All Tags"
    337 msgstr ""
    338 
    339 #: includes/post-type-project.php:75
    340 msgid "Parent Tag"
    341 msgstr ""
    342 
    343 #: includes/post-type-project.php:76
    344 msgid "Parent Tag:"
    345 msgstr ""
    346 
    347 #: includes/post-type-project.php:77
    348 msgid "Edit Tag"
    349 msgstr ""
    350 
    351 #: includes/post-type-project.php:78
    352 msgid "Update Tag"
    353 msgstr ""
    354 
    355 #: includes/post-type-project.php:79
    356 msgid "Add New Tag"
    357 msgstr ""
    358 
    359 #: includes/post-type-project.php:80
    360 msgid "New Tag Name"
    361 msgstr ""
    362 
    363 #: includes/post-type-project.php:81
    364 msgid "Tags"
    365 msgstr ""
    366 
    367 #: includes/class-woocommerce.php:35
    368 msgid "Project Donation"
    369 msgstr ""
    370 
    371 #: includes/class-woocommerce.php:36
    372 msgid "Check to add a project field to product page."
    373 msgstr ""
    374 
    375 #: includes/class-woocommerce.php:68
    376 msgid "Fixed project"
    377 msgstr ""
    378 
    379 #: includes/class-woocommerce.php:84
    380 msgid "Create at least one project first"
    381 msgstr ""
  • project-donations-wc/trunk/project-donations-wc.php

    r2924105 r3053009  
    33 * Plugin Name:     Project Donations for WooCommerce
    44 * 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 project
     5 * Description:     Empower charity and crowdfunding projects with WooCommerce integration.
    66 * Author:          Magiiic
    77 * Author URI:      https://magiiic.com/
    88 * Text Domain:     project-donations-wc
    99 * Domain Path:     /languages
    10  * Version:         1.5.5
     10 * Version:         1.5.6
    1111 *
    1212 * @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
    1317 *
    1418 * Icon1x: https://ps.w.org/project-donations-wc/assets/icon-128x128.jpg
     
    2024// Your code starts here.
    2125if ( ! defined( 'PRDWC_VERSION' ) ) {
    22     define( 'PRDWC_VERSION', '1.5.5');
     26    define( 'PRDWC_VERSION', '1.5.6');
    2327    define( 'PRDWC_PLUGIN', plugin_basename( __FILE__ ) );
    2428    define( 'PRDWC_SLUG', dirname( PRDWC_PLUGIN ) );
  • project-donations-wc/trunk/readme.txt

    r2924105 r3053009  
    44Tags: woocommerce, projects, product, donation
    55Requires at least: 4.7
    6 Tested up to: 6.2.2
    7 Requires PHP: 7.4
    8 Stable tag: 1.5.5
     6Tested up to: 6.5
     7Requires PHP: 7.3
     8Stable tag: 1.5.6
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8080
    8181== 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
    8288
    8389= 1.5.5 =
Note: See TracChangeset for help on using the changeset viewer.