Plugin Directory

Changeset 3359077


Ignore:
Timestamp:
09/10/2025 10:04:47 AM (7 months ago)
Author:
combidesk
Message:

1.28 release

Location:
combidesk-exact/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • combidesk-exact/trunk/classes/class-application.php

    r3313811 r3359077  
    44
    55class Application {
    6    
    7     private $plugin_name = '';
    86    private $title = '';
    97    private $menu_title = '';
     
    1210   
    1311    public function __construct() {
    14         $this->plugin_name         = 'combidesk-exact';
    1512        $this->run();
    1613    }
     
    3027   
    3128    public function init() {
    32         load_plugin_textdomain( $this->plugin_name, false, dirname( plugin_basename( __FILE__ ) ) . '/../languages' );
     29        load_plugin_textdomain( 'combidesk-exact', false, dirname( plugin_basename( __FILE__ ) ) . '/../languages' );
    3330       
    34         $this->plugin_product_name = __( 'Exact Online', $this->plugin_name );
    35         $this->title               = sprintf( __( 'Combidesk - %s for WooCommerce', $this->plugin_name ), $this->plugin_product_name );
     31        $this->plugin_product_name = __( 'Exact Online', 'combidesk-exact' );
     32        $this->title               = sprintf( __( 'Combidesk - %s for WooCommerce', 'combidesk-exact' ), $this->plugin_product_name );
    3633        $this->menu_title          = sprintf( __( 'Combidesk - %s', $this->plugin_product_name ), $this->plugin_product_name );
    3734       
    3835        //Dummy literals can't have sprintf!
    39         $this->description = __( 'Synchronize your WooCommerce orders automatically to Exact Online', $this->plugin_name );
     36        $this->description = __( 'Synchronize your WooCommerce orders automatically to Exact Online', 'combidesk-exact' );
    4037    }
    4138   
     
    7370        echo '
    7471          <h1>' . esc_html( $this->title ) . '</h1>
    75             ' . sprintf( __( 'With this integration you never have to transfer order data from WooCommerce to %s again. As a result, your data is always up-to-date, error-free and you have time to do what you do best!', $this->plugin_name ), $this->plugin_product_name ) . '
     72            ' . sprintf( __( 'With this integration you never have to transfer order data from WooCommerce to %s again. As a result, your data is always up-to-date, error-free and you have time to do what you do best!', 'combidesk-exact' ), $this->plugin_product_name ) . '
    7673            <br><br>
    77             <h2>' . __( 'Key features', $this->plugin_name ) . '</h2>
     74            <h2>' . __( 'Key features', 'combidesk-exact' ) . '</h2>
    7875            <ul>
    79                 <li>' . __( 'This integration syncs every 60 minutes.', $this->plugin_name ) . '</li>
    80                 <li>' . __( 'Completed orders will be transferred automatically during installation.', $this->plugin_name ) . '</li>
    81                 <li>' . __( 'Order history can be automatically transferred.', $this->plugin_name ) . '</li>
     76                <li>' . __( 'This integration syncs every 60 minutes.', 'combidesk-exact' ) . '</li>
     77                <li>' . __( 'Completed orders will be transferred automatically during installation.', 'combidesk-exact' ) . '</li>
     78                <li>' . __( 'Order history can be automatically transferred.', 'combidesk-exact' ) . '</li>
    8279                <li>' . __( 'Orders can be created in Exact Online as sales entry, sales invoice or sales order.', 'combidesk-exact' ) . '</li>
    83                 <li>' . sprintf( __( 'Customers will be generated in %s based on their unique e-mail address.', $this->plugin_name ), $this->plugin_product_name ) . '</li>
    84                 <li>' . sprintf( __( 'Use %s as an affordable and simple accounting software. We recommend that billing be done from WooCommerce.', $this->plugin_name ), $this->plugin_product_name ) . '</li>
     80                <li>' . sprintf( __( 'Customers will be generated in %s based on their unique e-mail address.', 'combidesk-exact' ), $this->plugin_product_name ) . '</li>
     81                <li>' . sprintf( __( 'Use %s as an affordable and simple accounting software. We recommend that billing be done from WooCommerce.', 'combidesk-exact' ), $this->plugin_product_name ) . '</li>
    8582            </ul>
    8683          <br><br>
     
    8885          <form class="combidesk__cta-form" action="https://combidesk.com/integration/woocommerce-exactonline" method="GET" target="_BLANK">
    8986            <input type="hidden" name="email_address" value="' . esc_attr( $email_address ) . '" />
    90             <input type="submit" value="' . __( 'Install this integration', $this->plugin_name ) . '" />
     87            <input type="submit" value="' . __( 'Install this integration', 'combidesk-exact' ) . '" />
    9188          </form>
    9289         
    9390          <form class="combidesk__cta-form" action="https://www.exact.com/nl/producten/boekhouden" method="GET" target="_BLANK">
    9491            <input type="hidden" name="email_address" value="' . esc_attr( $email_address ) . '" />
    95             <input type="submit" value="' . sprintf( __( 'No %s account yet?', $this->plugin_name ), $this->plugin_product_name ) . '" />
     92            <input type="submit" value="' . sprintf( __( 'No %s account yet?', 'combidesk-exact' ), $this->plugin_product_name ) . '" />
    9693          </form>';
    9794       
  • combidesk-exact/trunk/combidesk-exact.php

    r3313811 r3359077  
    33/**
    44 * Plugin Name: Combidesk - Exact Online
    5  * Version: 1.26
     5 * Version: 1.28
    66 * Description: Synchroniseer je WooCommerce orders automatisch naar Exact Online
    77 * Author: Combidesk
     
    1212 *
    1313 * WC requires at least: 2.2
    14  * WC tested up to: 9.9.4
     14 * WC tested up to: 10.1.2
    1515 *
    1616 **/
  • combidesk-exact/trunk/languages/combidesk-exact.pot

    r3313811 r3359077  
    77"Content-Type: text/plain; charset=UTF-8\n"
    88"Content-Transfer-Encoding: 8bit\n"
    9 "POT-Creation-Date: 2025-06-18 10:58+0000\n"
     9"POT-Creation-Date: 2025-09-10 09:46+0000\n"
    1010"X-Poedit-Basepath: ..\n"
    1111"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
     
    1515"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1616
    17 #: ../classes/class-application.php:82, ../dist/classes/class-application.php:82
     17#: ../classes/class-application.php:31, ../dist/classes/class-application.php:31
     18msgid "Exact Online"
     19msgstr ""
     20
     21#: ../classes/class-application.php:32, ../dist/classes/class-application.php:32
     22msgid "Combidesk - %s for WooCommerce"
     23msgstr ""
     24
     25#: ../classes/class-application.php:36, ../dist/classes/class-application.php:36
     26msgid "Synchronize your WooCommerce orders automatically to Exact Online"
     27msgstr ""
     28
     29#: ../classes/class-application.php:72, ../dist/classes/class-application.php:72
     30msgid "With this integration you never have to transfer order data from WooCommerce to %s again. As a result, your data is always up-to-date, error-free and you have time to do what you do best!"
     31msgstr ""
     32
     33#: ../classes/class-application.php:74, ../dist/classes/class-application.php:74
     34msgid "Key features"
     35msgstr ""
     36
     37#: ../classes/class-application.php:76, ../dist/classes/class-application.php:76
     38msgid "This integration syncs every 60 minutes."
     39msgstr ""
     40
     41#: ../classes/class-application.php:77, ../dist/classes/class-application.php:77
     42msgid "Completed orders will be transferred automatically during installation."
     43msgstr ""
     44
     45#: ../classes/class-application.php:78, ../dist/classes/class-application.php:78
     46msgid "Order history can be automatically transferred."
     47msgstr ""
     48
     49#: ../classes/class-application.php:79, ../dist/classes/class-application.php:79
    1850msgid "Orders can be created in Exact Online as sales entry, sales invoice or sales order."
    1951msgstr ""
     52
     53#: ../classes/class-application.php:80, ../dist/classes/class-application.php:80
     54msgid "Customers will be generated in %s based on their unique e-mail address."
     55msgstr ""
     56
     57#: ../classes/class-application.php:81, ../dist/classes/class-application.php:81
     58msgid "Use %s as an affordable and simple accounting software. We recommend that billing be done from WooCommerce."
     59msgstr ""
     60
     61#: ../classes/class-application.php:87, ../dist/classes/class-application.php:87
     62msgid "Install this integration"
     63msgstr ""
     64
     65#: ../classes/class-application.php:92, ../dist/classes/class-application.php:92
     66msgid "No %s account yet?"
     67msgstr ""
  • combidesk-exact/trunk/readme.txt

    r3313811 r3359077  
    55Tags: WooCommerce, Exact, ExactOnline
    66Requires at least: 4.9
    7 Tested up to: 6.8.1
    8 Stable tag: 1.26
    9 Version: 1.26
     7Tested up to: 6.8.2
     8Stable tag: 1.28
     9Version: 1.28
    1010Requires PHP: 5.2.4
    1111Website: https://combidesk.com/
     
    1616== Description ==
    1717
    18 Deze koppeling synchroniseert automatisch WooCommerce orders naar Exact Online. Dit bespaart tijd, je hoeft nooit meer dubbel werk te verrichten én je maakt minder fouten. Er is immers geen handwerk meer nodig.
     18Deze koppeling synchroniseert automatisch bestellingen en klantgegevens vanuit WooCommerce naar Exact Online. Hierdoor is je boekhouding altijd up to date en bespaar je kostbare tijd.
    1919
    2020= Belangrijkste kenmerken =
    2121
    22 * Deze koppeling wordt iedere 120 minuten gesynchroniseerd.
    23 * Afgeronde orders worden overgezet vanaf het moment van installatie.
    24 * Orderhistorie kan automatisch worden meegenomen.
    25 * Orders kunnen in Exact Online worden aangemaakt als Verkoopboeking, Verkoopfactuur of Verkooporder.
    26 * Klanten worden op basis van een uniek e-mailadres aangemaakt in Exact Online.
    27 * Wij adviseren om de facturatie vanuit WooCommerce te laten verlopen.
     22* De koppeling synchroniseert automatisch elke 120 minuten.
     23* Maak bestellingen en/of terugbetalingen aan in Exact Online.
     24* Kies uit: verkoopboeking, verkoopfactuur of verkooporder. Synchroniseer vervolgens op basis van de geselecteerde status.
     25* De WooCommerce factuur (PFD) kan toegevoegd worden aan een verkoopboeking in Exact Online.
     26* Er kunnen artikelen aangemaakt worden voor verkoopfacturen of verkooporders.
     27* Het gewenste Exact Online dagboek kan worden geselecteerd.
     28* Kortingen, zowel kortingscodes als winkelwagen kortingen worden meegenomen.
     29* Bestelinformatie producten (productnaam, aantal, bedrag van de bestelregel en de btw) en verzendkosten worden overgenomen.
     30* Geschikt voor OOS (One-Stop Shop).
    2831
    29 = Voordelen =
     32= Waarom wil je WooCommerce en Exact Online koppelen? =
    3033
    31 **Je administratie altijd up-to-date**
    32 Deze koppeling wordt iedere 120 minuten gesynchroniseerd.
    33 
    34 **Exporteer bestaande orders**
    35 Tijdens het installeren kun je ervoor kiezen om bestaande WooCommerce orders te exporteren. Dit kan vanaf het begin van het boekjaar, per kwartaal of vanaf het begin van de maand. Orders kunnen in Exact Online worden aangemaakt als Verkoopboeking, Verkoopfactuur of Verkooporder.
    36 
    37 = Datasynchronisatie =
    38 
    39 Onderstaande data wordt gesynchroniseerd tussen beide pakketten.
    40 
    41 * WooCommerce orders worden automatisch gesynchroniseerd naar Exact Online.
    42 * Klanten in WooCommerce worden aangemaakt als klant in Exact Online.
    43 * Bepaal op basis van de orderstatus wanneer er gesynchroniseerd moet worden.
    44 * Bestaande bestellingen kunnen worden overgenomen van WooCommerce naar je Exact Online account (export functie).
    45 * Orders kunnen in Exact Online worden aangemaakt als Verkoopboeking, Verkoopfactuur of Verkooporder.
    46 * Bestelinformatie producten (productnaam, aantal, bedrag van de bestelregel en de btw) en verzendkosten worden overgenomen.
    47 * Kortingen, zowel kortingscodes als winkelwagen kortingen worden meegenomen.
    48 * Je bespaart tijd, werkt efficiënter en verhoogt je werkplezier
     34* Exporteer bestaande orders vanaf het begin van het boekjaar, per kwartaal of vanaf het begin van de maand.
     35* Synchroniseer moeiteloos bestellingen en terugbetaalde orders van WooCommerce naar Exact Online.
     36* Bepaal op basis van de orderstatus wanneer en gesynchroniseerd moet worden.
     37* Je bespaart kostbare tijd.
     38* Minder handwerk, en dus minder kans op fouten.
    4939
    5040= Kosten =
    5141
    52 De proefperiode bedraagt 30 dagen, daarna kost de koppeling € 18,- per administratie per maand. Kies je voor een jaarlicentie, dan ontvang je jaarlijks 2 maanden korting.
     42De proefperiode bedraagt 30 dagen, daarna kost de koppeling € 18 per maand. Kies je voor een jaarlicentie? Dan ontvang je jaarlijks 2 maanden korting en betaal je € 180 per maand.
    5343
    54 = Service level =
    55 Je kunt het Service level altijd wijzigen. De prijs wordt voor de eerstvolgende betaalperiode aangepast.
     44= Service level (SLA) abonnementen (Basis, Pro, Premium) =
    5645
    57 == BASIS ==
    58 Synchroniseer ongeveer elke 120 minuten.
    59 Support vragen kunnen via chat gesteld worden en worden op volgorde van binnenkomst afgehandeld.
    60 + €6.00 per maand
     46Om je goed te kunnen helpen bij het gebruik van onze koppeling, bieden we drie service levels aan: basis, pro en premium. Je kunt het service level altijd wijzigen in je koppeling. De prijs wordt voor de eerstvolgende betaalperiode aangepast.
    6147
    62 == PRO ==
    63 Zoals BASIS
    64 + synchroniseer nagenoeg real-time.
    65 + €18.00 per maand
     48== Basis ==
     49* Geen meerprijs.
     50* Koppeling synchroniseert ongeveer elke 120 minuten.
     51* Supportvragen kunnen via chat gesteld worden en worden op volgorde van binnenkomst afgehandeld.
    6652
    67 == PREMIUM ==
    68 Zoals PRO
    69 + Support vragen via de CHAT worden met de HOOGSTE prioriteit behandeld.
    70 + Vragen kunnen worden gesteld via een speciaal EMAIL adres en TELEFOONNUMMER.
     53== Pro ==
     54* + € 6 per maand.
     55* Koppeling synchroniseert nagenoeg realtime.
     56* Supportvragen kunnen via chat gesteld worden en worden op volgorde van binnenkomst afgehandeld.
    7157
    72 = Support =
     58== Premium ==
     59* + € 18 per maand.
     60* Koppeling synchroniseert nagenoeg realtime.
     61* Support vragen via de chat worden met de hoogste prioriteit behandeld.
     62* Vragen kunnen gesteld worden via een speciaal e-mailadres en telefoonnummer.
    7363
    74 [Installatiehandleiding](https://help.combidesk.com/nl/articles/3957630-installatiehandleiding-woocommerce-exact-online-koppeling)
     64= Hulp bij installatie =
     65Kom je er even niet uit? [Combidesk kan de koppeling voor je installeren](https://nl.combidesk.com/klantenservice/hulp-bij-installatie?from=WooCommerce&to=Yuki&utm_source=wordpress&utm_medium=website&utm_campaign=yuki). Hiervoor worden eenmalige installatiekosten van € 125 gerekend. Besluit je de koppeling niet te gebruiken? Dan krijg je dit bedrag terug.
    7566
    7667== Installation ==
    7768
    78 = From within WordPress =
     69Als je een beetje handig bent, is het installeren van de Exact Online koppeling met WooCommerce een fluitje van een cent.
    7970
    80 1. Visit 'Plugins > Add New'.
    81 2. Search for 'Combidesk Exact Online'.
    82 3. Activate 'Combidesk - Exact Online' from your Plugins page.
    83 
    84 = Manually =
    85 
    86 1. Upload the 'combidesk-exact' folder to the `/wp-content/plugins/` directory.
    87 3. Activate 'Combidesk - Exact Online' from your Plugins page.
    88 
     71* Ga naar “Plugins” en klik op “Add New”.
     72* Zoek vervolgens naar onze koppeling en activeer deze.
     73* Volg de instructies op het scherm of raadpleeg onze uitgebreide [installatiehandleiding](https://nl.combidesk.com/klantenservice/hulp-bij-installatie?from=WooCommerce&to=Exact+Online&utm_source=wordpress&utm_medium=website&utm_campaign=exact_online).
    8974
    9075== Changelog ==
    9176
    92 $README_ANCHOR
     77= 1.28 =
     78Release Date: September 10, 2025
     79
     80Support for WordPress 6.8.2 and WooCommerce 10.1.2
    9381
    9482= 1.26 =
Note: See TracChangeset for help on using the changeset viewer.