From c93280090d5152add7075afd5f62e4ddd1ec9f4f Mon Sep 17 00:00:00 2001 From: Saskia Date: Sun, 1 Feb 2015 22:03:42 +0100 Subject: [PATCH] 0.1.1 upload --- ...s-wc-google-trusted-stores-integration.php | 116 +++--- languages/wc_google_trusted_stores-de_DE.mo | Bin 6166 -> 6515 bytes languages/wc_google_trusted_stores-de_DE.po | 370 +++++++++--------- readme.txt | 23 +- ...erce-google-trusted-stores-integration.php | 6 +- 5 files changed, 268 insertions(+), 247 deletions(-) mode change 100755 => 100644 includes/class-wc-google-trusted-stores-integration.php mode change 100755 => 100644 readme.txt mode change 100755 => 100644 woocommerce-google-trusted-stores-integration.php diff --git a/includes/class-wc-google-trusted-stores-integration.php b/includes/class-wc-google-trusted-stores-integration.php old mode 100755 new mode 100644 index df2fcd0..344fd47 --- a/includes/class-wc-google-trusted-stores-integration.php +++ b/includes/class-wc-google-trusted-stores-integration.php @@ -10,11 +10,9 @@ */ class WC_Google_Trusted_Stores extends WC_Integration { + /** * Init and hook in the integration. - * - * @access public - * @return void */ public function __construct() { $this->id = 'google_trusted_stores'; @@ -29,8 +27,10 @@ public function __construct() { // Define user set variables $this->gts_id = $this->get_option( 'gts_id' ); - $this->gts_language = $this->get_option( 'gts_language' ); + $this->gts_locale = $this->get_option( 'gts_locale' ); $this->gts_ship_time = $this->get_option( 'gts_ship_time' ); + $this->gts_delivery_time = $this->get_option( 'gts_delivery_time' ); + $this->gts_non_us = $this->get_option( 'gts_non_us' ); $this->gts_google_shopping_account_enable = $this->get_option( 'gts_google_shopping_account_enable' ); $this->gts_google_shopping_account_id = $this->get_option( 'gts_google_shopping_account_id' ); $this->gts_google_shopping_account_country = $this->get_option( 'gts_google_shopping_account_country' ); @@ -38,15 +38,13 @@ public function __construct() { // Actions - add_action( 'woocommerce_update_options_integration_google_trusted_stores', array( $this, 'process_admin_options') ); + add_action( 'woocommerce_update_options_integration_google_trusted_stores', array( $this, 'process_admin_options' ) ); // Google Trusted Stores Badge Code add_action( 'wp_footer', array( $this, 'badge_code' ) ); // Order Confirmation Module Code add_action( 'woocommerce_thankyou', array( $this, 'confirmation_code' ) ); - - // } @@ -61,43 +59,56 @@ public function init_form_fields() { 'title' => __( 'General Options', 'wc_google_trusted_stores' ), 'type' => 'title', 'description' => __( 'The following options are required to show the Google Trusted Stores Badge', 'wc_google_trusted_stores' ), - 'id' => 'wc_gts_general_options' + 'id' => 'wc_gts_general_options', ), 'gts_id' => array( 'title' => __( 'Google Trusted Stores ID', 'wc_google_trusted_stores' ), 'description' => __( 'Log into your Google Trusted Stores account to find your ID. e.g. 000000', 'wc_google_trusted_stores' ), 'type' => 'text', - 'default' => '' + 'default' => '', ), - 'gts_language' => array( - 'title' => __( 'Language', 'wc_google_trusted_stores' ), - 'description' => __( 'Set the main language used by your store', 'wc_google_trusted_stores' ), - 'type' => 'select', - 'class' => 'chosen_select', - 'default' => defined( 'WPLANG' ) && WPLANG ? substr(WPLANG, 0, 2) : 'en', - 'options' => $this->languages + 'gts_locale' => array( + 'title' => __( 'Locale', 'wc_google_trusted_stores' ), + 'description' => sprintf( __( 'Set the main locale of your site. The locale should be in the format of %s', 'wc_google_trusted_stores' ), esc_html( '_' ) ), + 'type' => 'text', + 'default' => defined( 'WPLANG' ) && WPLANG ? WPLANG : 'en_US', ), 'gts_ship_time' => array( 'title' => __( 'Estimate Ship Time (weekdays)', 'wc_google_trusted_stores' ), - 'description' => __( 'Set the estimated shiptime in weekdays', 'wc_google_trusted_stores' ), + 'description' => __( 'Set the estimated ship time in weekdays', 'wc_google_trusted_stores' ), + 'type' => 'text', + 'default' => '1', + ), + + 'gts_delivery_time' => array( + 'title' => __( 'Estimate Delivery Time (weekdays)', 'wc_google_trusted_stores' ), + 'description' => __( 'Set the estimated delivery time in weekdays from the ship date', 'wc_google_trusted_stores' ), 'type' => 'text', - 'default' => '1' + 'default' => '7', + ), + + 'gts_non_us' => array( + 'title' => __( 'Non-US', 'wc_google_trusted_stores' ), + 'label' => __( 'Use the non-US Google Trusted Stores JavaScript', 'wc_google_trusted_stores' ), + 'type' => 'checkbox', + 'default' => 'yes', ), 'title_google_shopping' => array ( 'title' => __( 'Google Shopping Options', 'wc_google_trusted_stores' ), 'type' => 'title', - 'description' => __( 'The following options are recommended if you submit product feeds for Google Shopping.
Provide these fields only if you submit feeds for Google Shopping.', 'wc_google_trusted_stores' ) + 'description' => __( 'The following options are recommended if you submit product feeds for Google Shopping.
Provide these fields only if you submit feeds for Google Shopping.', 'wc_google_trusted_stores' ), ), 'gts_google_shopping_account_enable' => array( - 'title' => __( 'Enable Google Shopping', 'wc_google_trusted_stores' ), + 'title' => __( 'Google Shopping', 'wc_google_trusted_stores' ), + 'label' => __( 'Enable Google Shopping', 'wc_google_trusted_stores' ), 'type' => 'checkbox', 'default' => 'no', - 'show_if_checked' => 'option' + 'show_if_checked' => 'option', ), 'gts_google_shopping_account_id' => array( @@ -105,7 +116,7 @@ public function init_form_fields() { 'description' => __( 'Account ID from Google Shopping. This value should match the account ID you use to submit your product data feed you submit to Google Shopping.
Provide this field only if you submit feeds for Google Shopping.', 'wc_google_trusted_stores' ), 'type' => 'text', 'default' => '', - 'show_if_checked' => 'yes' + 'show_if_checked' => 'yes', ), 'gts_google_shopping_account_country' => array( @@ -115,7 +126,7 @@ public function init_form_fields() { 'class' => 'chosen_select', 'default' => WC()->countries->get_base_country(), 'options' => WC()->countries->countries, - 'show_if_checked' => 'yes' + 'show_if_checked' => 'yes', ), 'gts_google_shopping_account_language' => array( @@ -123,13 +134,13 @@ public function init_form_fields() { 'description' => __( 'Account language from Google Shopping. This value should match the account language you use to submit your product data feed to Google Shopping.', 'wc_google_trusted_stores' ), 'type' => 'select', 'class' => 'chosen_select', - 'default' => defined( 'WPLANG' ) && WPLANG ? substr(WPLANG, 0, 2) : 'en', + 'default' => defined( 'WPLANG' ) && WPLANG ? substr( WPLANG, 0, 2 ) : 'en', 'options' => $this->languages, - 'show_if_checked' => 'yes' + 'show_if_checked' => 'yes', ), 'gts_html' => array( - 'type' => 'gts' + 'type' => 'gts', ) ); @@ -141,22 +152,19 @@ public function generate_gts_html() { ob_start(); ?> gts_id ) return; + if ( ! $this->gts_id ) { + return; + } $code = 'var gts = gts || []; gts.push(["id", "' . esc_js( $this->gts_id ) . '"]); - gts.push(["locale", "' . esc_js( $this->gts_language ) . '"]);'; + gts.push(["locale", "' . esc_js( $this->gts_locale ) . '"]);'; if ( is_product() ) { global $product; $code .= 'gts.push(["google_base_offer_id", "' . esc_js( $product->id ) . '"]);'; - } if ( $this->gts_google_shopping_account_enable === 'yes' && $this->gts_google_shopping_account_id !== '' ) { + $code .= ' gts.push(["google_base_subaccount_id", "' . esc_js( $this->gts_google_shopping_account_id ) . '"]); gts.push(["google_base_country", "' . esc_js( $this->gts_google_shopping_account_country ) . '"]); @@ -189,13 +199,15 @@ public function badge_code() { '; } + $src = 'yes' === $this->gts_non_us ? 'www.googlecommerce.com/trustedstores/api/js' : 'www.googlecommerce.com/trustedstores/gtmp_compiled.js'; + $code .= ' (function() { var scheme = (("https:" == document.location.protocol) ? "https://" : "http://"); var gts = document.createElement("script"); gts.type = "text/javascript"; gts.async = true; - gts.src = scheme + "www.googlecommerce.com/trustedstores/gtmp_compiled.js"; + gts.src = scheme + "' . $src . '"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(gts, s); })(); @@ -212,30 +224,35 @@ public function badge_code() { */ public function confirmation_code( $order_id ) { - if ( get_post_meta( $order_id, '_wc_gts_tracked', true ) == 1 ) { //current_user_can('manage_options') + if ( 1 === get_post_meta( $order_id, '_wc_gts_tracked', true ) ) { return; } - if ( ! $this->gts_id ) return; + if ( ! $this->gts_id ) { + return; + } // Get the order - $order = new WC_Order( $order_id ); + $order = wc_get_order( $order_id ); // Get order items $items = $order->get_items(); - $ship_date = date ( 'Y-m-d', strtotime ( $this->gts_ship_time . ' weekdays', strtotime( $order->order_date ) ) ); + $ship_date = date( 'Y-m-d', strtotime( $this->gts_ship_time . ' weekdays', strtotime( $order->order_date ) ) ); $ship_date = apply_filters( 'wc_google_trusted_stores_order_ship_date', $ship_date, $order_id ); + $delivery_date = date( 'Y-m-d', strtotime( $this->gts_delivery_time . ' weekdays', strtotime( $ship_date ) ) ); + $delivery_date = apply_filters( 'wc_google_trusted_stores_order_delivery_date', $delivery_date, $order_id ); + $has_backorder = false; foreach ( $items as $item ) { $product = $order->get_product_from_item( $item ); + if ( $product && $product->exists() && $product->is_on_backorder() ) { $has_backorder = true; } - } $has_backorder = apply_filters( 'wc_google_trusted_stores_order_has_backorder', $has_backorder, $order_id ); @@ -252,10 +269,11 @@ public function confirmation_code( $order_id ) { ' . esc_html( $order->get_total_shipping() ) . ' ' . esc_html( $order->get_total_tax() ) . ' ' . esc_html( $ship_date ) . ' + ' . esc_html( $delivery_date ) . ' ' . ( $has_backorder ? 'Y' : 'N' ) . ' ' . ( $order->has_downloadable_item() ? 'Y' : 'N' ) . ' - '; //' . esc_html( $order->?? ) . ' + '; $google_shopping_acct_code = ''; @@ -278,7 +296,6 @@ public function confirmation_code( $order_id ) { $google_shopping_acct_code . ' '; - } echo ' @@ -437,4 +454,5 @@ public function get_languages() { ) ); } + } diff --git a/languages/wc_google_trusted_stores-de_DE.mo b/languages/wc_google_trusted_stores-de_DE.mo index 0dc5ae019b742dd742bb1f6e6acd242e6b23908d..eb9b4c80f9782212c1dbddff5048af70c82e10ee 100644 GIT binary patch delta 2208 zcmZ|PTWl0n7{KvEEwJ4}X|bg(DdBLjg5^?f5eh-DT%<$<+fsr=nRZUQ!(OJ&%mPKo zCSJg3G=xEj3J+>R)TAM#K4`?4*u)1lKER6-#qeMZ@}f}_!5IC2y9Y54$aH?^{(a}1 zSx&V6wzzP4a`|hDf7|(M;_s_6sVQ}E>@6!O9-@8`kKn8L#5kpn;?F4k&x}`!N4>y{ zCiMy?@VND~Z9iij#ww)>>H`WqYSeaoY3mnk{Sr!mE7oha{|}S^e_O{ZegAzKyc*`?h`#dDKU|CgEo&{TFQg zTbxe)Do(`;qSoVVtix5@*}*+Yr7E!kC2$?GhMI=b-;5Gyo~Fn%J7;v|#= zA3|wgk5yyXIZEJNd}06K0FH|6;$v*7E}hs<)ttW^-LEuAhJV?P@|x1oRiW%;DoXzh zl!YI#F0=h>P!iZ^+aI&;L^(NQ`|~L4972hExIlr;s-q}JatiOo_fS5XPf#X&gEHX? zF2`%winAw|`n!=wJ;{sBtEX*y0ojv!5oP}C)_1UhdSRG?Wd1oyreC83zKpZ*I?lvt zWHkfVSbK36NBum?iM(4|`k9TOB>V-+#x9~<(GSQis2^?pcO;>LxBTC?HC;@k&j5jFbv$j1#8Gi_6{UbPxaj~EKU(5dvvOtHm6XghZ zp=7+rwhy8FexJoH_y%_2RUE|Cbjmts@iKmh`|%{_EP<;Vm1@T(l!SI;LXKun<4D`s zOJxn~Ovc-5f+5}IWsRP*&zQ99425&!Wa8k+-b6GeK2cj0FH3fn_c<98A5Qj++v4Zu zcX!6$B{#2gZ_bWnwwKd4=j;B!&*~^;beQr6wd+Jib(*NyVnRmK;FkL0mdfdyd|6%l z{d&mH2Rig3vp{z-J5%ZiQ+__<>fT}uS+(B}SVAVO>hoQ*`o3`0!eSwIE3a2|ho%@Q zSIYF4iu&pfXRp)Q7kGn_>M@xx6(60jt!)0{_{xOF>c#UHE!V9}+gcxNTe7I7b}I?NY7#0Jw5|+kuzX&bJZOaA2v?V z%g}soAiOoj1Zg{AeHi7uurH-HG&}ihW@XUq=d>rJVE9D7V}$kCW$NWIQ8T;1B- zfWuXrfLnG=&>Zpogj{)s-ML0@DBgYB?KeNNb4qSZJt^&D6i2OH6YBrY=llAG_^HVW ZUHlHx@*RW=RF9MK!s5wyc&=M4{0oY*jB)?~ delta 1805 zcmYk*U1%It6u|MDG)d!bqA_VUrLAOaBs7H8O)yB46oe);joPM7!U_^_n!VW_vtP{2 zrnZO+`XE@SrlW?42vTXGHPyQM5Ur@x8d1=ys1UU&Lh~SsNFQu`(f`?8vCHiI=6;=f z?%CPv-7m$8R~oBcRD2Hd-NyHgN@*$8U;V$g@VJZix3~w7I;!=a$ z=u!`1Eshx{O#hTIgSRSGR6Y+}>S;4@%(PFK_RA<6yk(HlE8PS z{S!uL|AJgd!X1t1XxQ5m2uVzUnjB_X(oq)c+M8GIR`Mh}kkQj*`FxMsd>g&thGLQu8Pqo~l>sA3Tp2 zMc%0Qu|U=oL3K5(+lS>7oAy3rOZ9LA^_LSQ%!Fx_z`n7FGX5+|VzZ`y-uOC7h2Avd zAEIougp$Bzl#P~=oYg8e;dPXEWMlF6^#$8e7IdP#EIp?G0c@l_h8$8QO@9H2p`Jup z_ndJa4=45b3cNmKqd^C%~J3*{t>C_l|5 zq}u8W(_ThN9P3!FwD2cs_RJN#2nSlkA0E;LITtwOUOOypap!^go zrhgS>{vWu2Yo`A+bn^|0fotRuOCYsGW9-MLIg zyOY}T{G6+UcqkcM3XKI;c(}?-Ir-pRxOI!2O&08=whEq3Sci_RuU(%Xsavaw>$I0r zfn6UB2I>!Vghuv959%4mb8^|}0K4{D-LbBFqg}CRtcS7)A2s!b0% zdP=)Twc}em;@X||*(n%pe5!P0~V@>+7WJXxFzAj<&Qrm2(r? zO*@k*owbJT8QYt7oxHEDsrEu4lkRh^gzZ_upG_^nnWpev)`**<5Sa{-ti36hMK_mV zG?mNW9kez(!3)g`!Ej_`!ybJo_&u_1;HD&5`Cpn@%g!pM5N4EgB&8v{koUd3Ym-rV u2hWnI9y3elTCx?PxSggl-ekF8O~H+(2FWa9?JXb8_9>bgb`pv5lz#yt6&Usa diff --git a/languages/wc_google_trusted_stores-de_DE.po b/languages/wc_google_trusted_stores-de_DE.po index 2329620..94fde87 100644 --- a/languages/wc_google_trusted_stores-de_DE.po +++ b/languages/wc_google_trusted_stores-de_DE.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: WooCommerce Google Trusted Stores Integration v0.1.0\n" +"Project-Id-Version: WooCommerce Google Trusted Stores Integration v0.1.0-2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2014-10-05 20:09:55+0200\n" +"PO-Revision-Date: 2014-12-18 04:07:31+0100\n" "Last-Translator: saskia \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,799 +20,799 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Textdomain-Support: yes" -#: includes/class-wc-google-trusted-stores-integration.php:21 +#: includes/class-wc-google-trusted-stores-integration.php:19 #@ wc_google_trusted_stores msgid "Google Trusted Stores" msgstr "Google Zertifizierte Händler" -#: includes/class-wc-google-trusted-stores-integration.php:22 +#: includes/class-wc-google-trusted-stores-integration.php:20 #@ wc_google_trusted_stores msgid "Google Trusted Stores is a free service offered by Google that adds a badge to your online store allowing you to reach new customers and improve sales." msgstr "Das Programm \\\"Google Zertifizierter Händler\\\" ist ein kostenloser Googleservice. Mit dem Gütesiegel \\\"Google Zertifizierter Händler\\\" machen Sie darauf aufmerksam, dass Sie zuverlässigen Versand und ausgezeichneten Kundenservice bieten und positive Kundenbewertungen erhalten haben." -#: includes/class-wc-google-trusted-stores-integration.php:61 +#: includes/class-wc-google-trusted-stores-integration.php:59 #@ wc_google_trusted_stores msgid "General Options" msgstr "Allgemeine Einstellungen" -#: includes/class-wc-google-trusted-stores-integration.php:63 +#: includes/class-wc-google-trusted-stores-integration.php:61 #@ wc_google_trusted_stores msgid "The following options are required to show the Google Trusted Stores Badge" msgstr "Die nachfolgenden Einstellungen sind erforderlich, damit das Google Gütesiegel in Ihrem Shop angezeigt werden kann." -#: includes/class-wc-google-trusted-stores-integration.php:68 +#: includes/class-wc-google-trusted-stores-integration.php:66 #@ wc_google_trusted_stores msgid "Google Trusted Stores ID" msgstr "Google Zertifizierter Händler ID" -#: includes/class-wc-google-trusted-stores-integration.php:69 +#: includes/class-wc-google-trusted-stores-integration.php:67 #@ wc_google_trusted_stores msgid "Log into your Google Trusted Stores account to find your ID. e.g. 000000" msgstr "Sie finden Ihre ID, wenn Sie sich in Ihrem Google Zertifizierter Händler Konto anmelden. z. B.000000 " -#: includes/class-wc-google-trusted-stores-integration.php:75 -#: includes/class-wc-google-trusted-stores-integration.php:122 +#: includes/class-wc-google-trusted-stores-integration.php:133 #@ wc_google_trusted_stores msgid "Language" msgstr "Sprache" -#: includes/class-wc-google-trusted-stores-integration.php:76 -#@ wc_google_trusted_stores -msgid "Set the main language used by your store" -msgstr "Geben Sie die Hauptsprache Ihres Shops an" - -#: includes/class-wc-google-trusted-stores-integration.php:84 +#: includes/class-wc-google-trusted-stores-integration.php:80 #@ wc_google_trusted_stores msgid "Estimate Ship Time (weekdays)" -msgstr "Lieferzeit (Werktage)" +msgstr "Voraussichtliche Bearbeitungszeit (in Werktagen)" -#: includes/class-wc-google-trusted-stores-integration.php:85 -#@ wc_google_trusted_stores -msgid "Set the estimated shiptime in weekdays" -msgstr "Geben Sie die voraussichtliche Lieferzeit in Werktagen an" - -#: includes/class-wc-google-trusted-stores-integration.php:91 +#: includes/class-wc-google-trusted-stores-integration.php:101 #@ wc_google_trusted_stores msgid "Google Shopping Options" msgstr "Einstellungen für Google Shopping" -#: includes/class-wc-google-trusted-stores-integration.php:93 +#: includes/class-wc-google-trusted-stores-integration.php:103 #@ wc_google_trusted_stores msgid "The following options are recommended if you submit product feeds for Google Shopping.
Provide these fields only if you submit feeds for Google Shopping." msgstr "Wenn Sie Ihre Produkte per Produktfeed an Google Shopping übertragen, ist es empfehlenswert die nachfolgenden Felder auszufüllen.
Machen Sie diese Angaben nur dann, wenn Sie einen Produktfeed bereitstellen!" -#: includes/class-wc-google-trusted-stores-integration.php:97 +#: includes/class-wc-google-trusted-stores-integration.php:108 #@ wc_google_trusted_stores msgid "Enable Google Shopping" msgstr "Google Shopping aktivieren" -#: includes/class-wc-google-trusted-stores-integration.php:104 +#: includes/class-wc-google-trusted-stores-integration.php:115 #@ wc_google_trusted_stores msgid "Google Shopping Account ID" msgstr "Google Shopping / merchant Konto-ID" -#: includes/class-wc-google-trusted-stores-integration.php:105 +#: includes/class-wc-google-trusted-stores-integration.php:116 #@ wc_google_trusted_stores msgid "Account ID from Google Shopping. This value should match the account ID you use to submit your product data feed you submit to Google Shopping.
Provide this field only if you submit feeds for Google Shopping." msgstr "Konto-ID aus Ihrem Google Shopping. Dieser Wert sollte mit der Konto-ID übereinstimmen, die Sie verwenden, um Ihren Produktfeed an Google Shopping zu übertragen.
Machen Sie diese Angabe nur wenn Sie Feeds an Google Shopping übertragen." -#: includes/class-wc-google-trusted-stores-integration.php:112 +#: includes/class-wc-google-trusted-stores-integration.php:123 #@ wc_google_trusted_stores msgid "Google Shopping Account Country" msgstr "Google Shopping Konto Land" -#: includes/class-wc-google-trusted-stores-integration.php:113 +#: includes/class-wc-google-trusted-stores-integration.php:124 #@ wc_google_trusted_stores msgid "Account country from Google Shopping. This value should match the account country you use to submit your product data feed to Google Shopping." msgstr "Das Land Ihres Kontos bei Google Shopping. Dieser Wert sollte mit dem Land Ihres Googlekontos, das Sie für die Übertragung Ihrer Feeds an Google Shopping verwenden, übereinstimmen." -#: includes/class-wc-google-trusted-stores-integration.php:123 +#: includes/class-wc-google-trusted-stores-integration.php:134 #@ wc_google_trusted_stores msgid "Account language from Google Shopping. This value should match the account language you use to submit your product data feed to Google Shopping." msgstr "Die Kontosprache in Ihrem Google Shopping. Dieser Wert sollte mit der Sprache des Googlekontos übereinstimmen, das Sie verwenden, um Ihre Feeds an Google Shopping zu übertragen." -#: includes/class-wc-google-trusted-stores-integration.php:302 +#: includes/class-wc-google-trusted-stores-integration.php:319 #@ wc_google_trusted_stores msgid "English" msgstr "Englisch" -#: includes/class-wc-google-trusted-stores-integration.php:303 +#: includes/class-wc-google-trusted-stores-integration.php:320 #@ wc_google_trusted_stores msgid "Afar" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:304 +#: includes/class-wc-google-trusted-stores-integration.php:321 #@ wc_google_trusted_stores msgid "Abkhazian" msgstr "Abchasisch" -#: includes/class-wc-google-trusted-stores-integration.php:305 +#: includes/class-wc-google-trusted-stores-integration.php:322 #@ wc_google_trusted_stores msgid "Afrikaans" msgstr "Afrikaans" -#: includes/class-wc-google-trusted-stores-integration.php:306 +#: includes/class-wc-google-trusted-stores-integration.php:323 #@ wc_google_trusted_stores msgid "Amharic" msgstr "Amharisch" -#: includes/class-wc-google-trusted-stores-integration.php:307 +#: includes/class-wc-google-trusted-stores-integration.php:324 #@ wc_google_trusted_stores msgid "Arabic" msgstr "Arabisch" -#: includes/class-wc-google-trusted-stores-integration.php:308 +#: includes/class-wc-google-trusted-stores-integration.php:325 #@ wc_google_trusted_stores msgid "Assamese" msgstr "Assamesisch" -#: includes/class-wc-google-trusted-stores-integration.php:309 +#: includes/class-wc-google-trusted-stores-integration.php:326 #@ wc_google_trusted_stores msgid "Aymara" msgstr "Aymara" -#: includes/class-wc-google-trusted-stores-integration.php:310 +#: includes/class-wc-google-trusted-stores-integration.php:327 #@ wc_google_trusted_stores msgid "Azerbaijani" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:311 +#: includes/class-wc-google-trusted-stores-integration.php:328 #@ wc_google_trusted_stores msgid "Bashkir" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:312 +#: includes/class-wc-google-trusted-stores-integration.php:329 #@ wc_google_trusted_stores msgid "Byelorussian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:313 +#: includes/class-wc-google-trusted-stores-integration.php:330 #@ wc_google_trusted_stores msgid "Bulgarian" msgstr "Bulgarisch" -#: includes/class-wc-google-trusted-stores-integration.php:314 +#: includes/class-wc-google-trusted-stores-integration.php:331 #@ wc_google_trusted_stores msgid "Bihari" msgstr "Bihari" -#: includes/class-wc-google-trusted-stores-integration.php:315 +#: includes/class-wc-google-trusted-stores-integration.php:332 #@ wc_google_trusted_stores msgid "Bislama" msgstr "Bislama" -#: includes/class-wc-google-trusted-stores-integration.php:316 +#: includes/class-wc-google-trusted-stores-integration.php:333 #@ wc_google_trusted_stores msgid "Bengali/Bangla" msgstr "Bengalisch" -#: includes/class-wc-google-trusted-stores-integration.php:317 +#: includes/class-wc-google-trusted-stores-integration.php:334 #@ wc_google_trusted_stores msgid "Tibetan" msgstr "Tibetanisch" -#: includes/class-wc-google-trusted-stores-integration.php:318 +#: includes/class-wc-google-trusted-stores-integration.php:335 #@ wc_google_trusted_stores msgid "Breton" msgstr "Bretonisch" -#: includes/class-wc-google-trusted-stores-integration.php:319 +#: includes/class-wc-google-trusted-stores-integration.php:336 #@ wc_google_trusted_stores msgid "Catalan" msgstr "Katalan" -#: includes/class-wc-google-trusted-stores-integration.php:320 +#: includes/class-wc-google-trusted-stores-integration.php:337 #@ wc_google_trusted_stores msgid "Corsican" msgstr "Korsisch" -#: includes/class-wc-google-trusted-stores-integration.php:321 +#: includes/class-wc-google-trusted-stores-integration.php:338 #@ wc_google_trusted_stores msgid "Czech" msgstr "Tschechisch" -#: includes/class-wc-google-trusted-stores-integration.php:322 +#: includes/class-wc-google-trusted-stores-integration.php:339 #@ wc_google_trusted_stores msgid "Welsh" msgstr "Walisisch" -#: includes/class-wc-google-trusted-stores-integration.php:323 +#: includes/class-wc-google-trusted-stores-integration.php:340 #@ wc_google_trusted_stores msgid "Danish" msgstr "Dänisch" -#: includes/class-wc-google-trusted-stores-integration.php:324 +#: includes/class-wc-google-trusted-stores-integration.php:341 #@ wc_google_trusted_stores msgid "German" msgstr "Deutsch" -#: includes/class-wc-google-trusted-stores-integration.php:325 +#: includes/class-wc-google-trusted-stores-integration.php:342 #@ wc_google_trusted_stores msgid "Bhutani" msgstr "Bhutanisch" -#: includes/class-wc-google-trusted-stores-integration.php:326 +#: includes/class-wc-google-trusted-stores-integration.php:343 #@ wc_google_trusted_stores msgid "Greek" msgstr "Griechisch" -#: includes/class-wc-google-trusted-stores-integration.php:327 +#: includes/class-wc-google-trusted-stores-integration.php:344 #@ wc_google_trusted_stores msgid "Esperanto" msgstr "Esperanto" -#: includes/class-wc-google-trusted-stores-integration.php:328 +#: includes/class-wc-google-trusted-stores-integration.php:345 #@ wc_google_trusted_stores msgid "Spanish" msgstr "Spanisch" -#: includes/class-wc-google-trusted-stores-integration.php:329 +#: includes/class-wc-google-trusted-stores-integration.php:346 #@ wc_google_trusted_stores msgid "Estonian" msgstr "Estnisch" -#: includes/class-wc-google-trusted-stores-integration.php:330 +#: includes/class-wc-google-trusted-stores-integration.php:347 #@ wc_google_trusted_stores msgid "Basque" msgstr "Baskisch" -#: includes/class-wc-google-trusted-stores-integration.php:331 +#: includes/class-wc-google-trusted-stores-integration.php:348 #@ wc_google_trusted_stores msgid "Persian" msgstr "Persisch" -#: includes/class-wc-google-trusted-stores-integration.php:332 +#: includes/class-wc-google-trusted-stores-integration.php:349 #@ wc_google_trusted_stores msgid "Finnish" msgstr "Finnisch" -#: includes/class-wc-google-trusted-stores-integration.php:333 +#: includes/class-wc-google-trusted-stores-integration.php:350 #@ wc_google_trusted_stores msgid "Fiji" msgstr "Fidschianisch" -#: includes/class-wc-google-trusted-stores-integration.php:334 +#: includes/class-wc-google-trusted-stores-integration.php:351 #@ wc_google_trusted_stores msgid "Faeroese" msgstr "Färöisch" -#: includes/class-wc-google-trusted-stores-integration.php:335 +#: includes/class-wc-google-trusted-stores-integration.php:352 #@ wc_google_trusted_stores msgid "French" msgstr "Französisch" -#: includes/class-wc-google-trusted-stores-integration.php:336 +#: includes/class-wc-google-trusted-stores-integration.php:353 #@ wc_google_trusted_stores msgid "Frisian" msgstr "Friesisch" -#: includes/class-wc-google-trusted-stores-integration.php:337 +#: includes/class-wc-google-trusted-stores-integration.php:354 #@ wc_google_trusted_stores msgid "Irish" msgstr "Irisch" -#: includes/class-wc-google-trusted-stores-integration.php:338 +#: includes/class-wc-google-trusted-stores-integration.php:355 #@ wc_google_trusted_stores msgid "Scots/Gaelic" msgstr "Schottisch/Gälisch" -#: includes/class-wc-google-trusted-stores-integration.php:339 +#: includes/class-wc-google-trusted-stores-integration.php:356 #@ wc_google_trusted_stores msgid "Galician" msgstr "Galicisch" -#: includes/class-wc-google-trusted-stores-integration.php:340 +#: includes/class-wc-google-trusted-stores-integration.php:357 #@ wc_google_trusted_stores msgid "Guarani" msgstr "Guaraní" -#: includes/class-wc-google-trusted-stores-integration.php:341 +#: includes/class-wc-google-trusted-stores-integration.php:358 #@ wc_google_trusted_stores msgid "Gujarati" msgstr "Gujaratisch" -#: includes/class-wc-google-trusted-stores-integration.php:342 +#: includes/class-wc-google-trusted-stores-integration.php:359 #@ wc_google_trusted_stores msgid "Hausa" msgstr "Hausa" -#: includes/class-wc-google-trusted-stores-integration.php:343 +#: includes/class-wc-google-trusted-stores-integration.php:360 #@ wc_google_trusted_stores msgid "Hindi" msgstr "Hindi" -#: includes/class-wc-google-trusted-stores-integration.php:344 +#: includes/class-wc-google-trusted-stores-integration.php:361 #@ wc_google_trusted_stores msgid "Croatian" msgstr "Kroatisch" -#: includes/class-wc-google-trusted-stores-integration.php:345 +#: includes/class-wc-google-trusted-stores-integration.php:362 #@ wc_google_trusted_stores msgid "Hungarian" msgstr "Ungarisch" -#: includes/class-wc-google-trusted-stores-integration.php:346 +#: includes/class-wc-google-trusted-stores-integration.php:363 #@ wc_google_trusted_stores msgid "Armenian" msgstr "Armenisch" -#: includes/class-wc-google-trusted-stores-integration.php:347 +#: includes/class-wc-google-trusted-stores-integration.php:364 #@ wc_google_trusted_stores msgid "Interlingua" msgstr "Interlingua" -#: includes/class-wc-google-trusted-stores-integration.php:348 +#: includes/class-wc-google-trusted-stores-integration.php:365 #@ wc_google_trusted_stores msgid "Interlingue" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:349 +#: includes/class-wc-google-trusted-stores-integration.php:366 #@ wc_google_trusted_stores msgid "Inupiak" msgstr "Inupiaq" -#: includes/class-wc-google-trusted-stores-integration.php:350 +#: includes/class-wc-google-trusted-stores-integration.php:367 #@ wc_google_trusted_stores msgid "Indonesian" msgstr "Indonesisch" -#: includes/class-wc-google-trusted-stores-integration.php:351 +#: includes/class-wc-google-trusted-stores-integration.php:368 #@ wc_google_trusted_stores msgid "Icelandic" msgstr "Isländisch" -#: includes/class-wc-google-trusted-stores-integration.php:352 +#: includes/class-wc-google-trusted-stores-integration.php:369 #@ wc_google_trusted_stores msgid "Italian" msgstr "Italienisch" -#: includes/class-wc-google-trusted-stores-integration.php:353 +#: includes/class-wc-google-trusted-stores-integration.php:370 #@ wc_google_trusted_stores msgid "Hebrew" msgstr "Hebräisch" -#: includes/class-wc-google-trusted-stores-integration.php:354 +#: includes/class-wc-google-trusted-stores-integration.php:371 #@ wc_google_trusted_stores msgid "Japanese" msgstr "Japanisch" -#: includes/class-wc-google-trusted-stores-integration.php:355 +#: includes/class-wc-google-trusted-stores-integration.php:372 #@ wc_google_trusted_stores msgid "Yiddish" msgstr "Jiddisch" -#: includes/class-wc-google-trusted-stores-integration.php:356 +#: includes/class-wc-google-trusted-stores-integration.php:373 #@ wc_google_trusted_stores msgid "Javanese" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:357 +#: includes/class-wc-google-trusted-stores-integration.php:374 #@ wc_google_trusted_stores msgid "Georgian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:358 +#: includes/class-wc-google-trusted-stores-integration.php:375 #@ wc_google_trusted_stores msgid "Kazakh" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:359 +#: includes/class-wc-google-trusted-stores-integration.php:376 #@ wc_google_trusted_stores msgid "Greenlandic" msgstr "Grönländisch" -#: includes/class-wc-google-trusted-stores-integration.php:360 +#: includes/class-wc-google-trusted-stores-integration.php:377 #@ wc_google_trusted_stores msgid "Cambodian" msgstr "Kambodschanisch" -#: includes/class-wc-google-trusted-stores-integration.php:361 +#: includes/class-wc-google-trusted-stores-integration.php:378 #@ wc_google_trusted_stores msgid "Kannada" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:362 +#: includes/class-wc-google-trusted-stores-integration.php:379 #@ wc_google_trusted_stores msgid "Korean" msgstr "Koreanisch" -#: includes/class-wc-google-trusted-stores-integration.php:363 +#: includes/class-wc-google-trusted-stores-integration.php:380 #@ wc_google_trusted_stores msgid "Kashmiri" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:364 +#: includes/class-wc-google-trusted-stores-integration.php:381 #@ wc_google_trusted_stores msgid "Kurdish" msgstr "Kurdisch" -#: includes/class-wc-google-trusted-stores-integration.php:365 +#: includes/class-wc-google-trusted-stores-integration.php:382 #@ wc_google_trusted_stores msgid "Kirghiz" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:366 +#: includes/class-wc-google-trusted-stores-integration.php:383 #@ wc_google_trusted_stores msgid "Latin" msgstr "Latein" -#: includes/class-wc-google-trusted-stores-integration.php:367 +#: includes/class-wc-google-trusted-stores-integration.php:384 #@ wc_google_trusted_stores msgid "Lingala" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:368 +#: includes/class-wc-google-trusted-stores-integration.php:385 #@ wc_google_trusted_stores msgid "Laothian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:369 +#: includes/class-wc-google-trusted-stores-integration.php:386 #@ wc_google_trusted_stores msgid "Lithuanian" msgstr "Litauisch" -#: includes/class-wc-google-trusted-stores-integration.php:370 +#: includes/class-wc-google-trusted-stores-integration.php:387 #@ wc_google_trusted_stores msgid "Latvian/Lettish" msgstr "Lettisch" -#: includes/class-wc-google-trusted-stores-integration.php:371 +#: includes/class-wc-google-trusted-stores-integration.php:388 #@ wc_google_trusted_stores msgid "Malagasy" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:372 +#: includes/class-wc-google-trusted-stores-integration.php:389 #@ wc_google_trusted_stores msgid "Maori" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:373 +#: includes/class-wc-google-trusted-stores-integration.php:390 #@ wc_google_trusted_stores msgid "Macedonian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:374 +#: includes/class-wc-google-trusted-stores-integration.php:391 #@ wc_google_trusted_stores msgid "Malayalam" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:375 +#: includes/class-wc-google-trusted-stores-integration.php:392 #@ wc_google_trusted_stores msgid "Mongolian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:376 +#: includes/class-wc-google-trusted-stores-integration.php:393 #@ wc_google_trusted_stores msgid "Moldavian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:377 +#: includes/class-wc-google-trusted-stores-integration.php:394 #@ wc_google_trusted_stores msgid "Marathi" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:378 +#: includes/class-wc-google-trusted-stores-integration.php:395 #@ wc_google_trusted_stores msgid "Malay" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:379 +#: includes/class-wc-google-trusted-stores-integration.php:396 #@ wc_google_trusted_stores msgid "Maltese" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:380 +#: includes/class-wc-google-trusted-stores-integration.php:397 #@ wc_google_trusted_stores msgid "Burmese" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:381 +#: includes/class-wc-google-trusted-stores-integration.php:398 #@ wc_google_trusted_stores msgid "Nauru" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:382 +#: includes/class-wc-google-trusted-stores-integration.php:399 #@ wc_google_trusted_stores msgid "Nepali" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:383 +#: includes/class-wc-google-trusted-stores-integration.php:400 #@ wc_google_trusted_stores msgid "Dutch" msgstr "Niederländisch" -#: includes/class-wc-google-trusted-stores-integration.php:384 +#: includes/class-wc-google-trusted-stores-integration.php:401 #@ wc_google_trusted_stores msgid "Norwegian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:385 +#: includes/class-wc-google-trusted-stores-integration.php:402 #@ wc_google_trusted_stores msgid "Occitan" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:386 +#: includes/class-wc-google-trusted-stores-integration.php:403 #@ wc_google_trusted_stores msgid "(Afan)/Oromoor/Oriya" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:387 +#: includes/class-wc-google-trusted-stores-integration.php:404 #@ wc_google_trusted_stores msgid "Punjabi" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:388 +#: includes/class-wc-google-trusted-stores-integration.php:405 #@ wc_google_trusted_stores msgid "Polish" msgstr "Polnisch" -#: includes/class-wc-google-trusted-stores-integration.php:389 +#: includes/class-wc-google-trusted-stores-integration.php:406 #@ wc_google_trusted_stores msgid "Pashto/Pushto" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:390 +#: includes/class-wc-google-trusted-stores-integration.php:407 #@ wc_google_trusted_stores msgid "Portuguese" msgstr "Portugiesisch" -#: includes/class-wc-google-trusted-stores-integration.php:391 +#: includes/class-wc-google-trusted-stores-integration.php:408 #@ wc_google_trusted_stores msgid "Quechua" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:392 +#: includes/class-wc-google-trusted-stores-integration.php:409 #@ wc_google_trusted_stores msgid "Rhaeto-Romance" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:393 +#: includes/class-wc-google-trusted-stores-integration.php:410 #@ wc_google_trusted_stores msgid "Kirundi" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:394 +#: includes/class-wc-google-trusted-stores-integration.php:411 #@ wc_google_trusted_stores msgid "Romanian" msgstr "Rumänisch" -#: includes/class-wc-google-trusted-stores-integration.php:395 +#: includes/class-wc-google-trusted-stores-integration.php:412 #@ wc_google_trusted_stores msgid "Russian" msgstr "Russisch" -#: includes/class-wc-google-trusted-stores-integration.php:396 +#: includes/class-wc-google-trusted-stores-integration.php:413 #@ wc_google_trusted_stores msgid "Kinyarwanda" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:397 +#: includes/class-wc-google-trusted-stores-integration.php:414 #@ wc_google_trusted_stores msgid "Sanskrit" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:398 +#: includes/class-wc-google-trusted-stores-integration.php:415 #@ wc_google_trusted_stores msgid "Sindhi" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:399 +#: includes/class-wc-google-trusted-stores-integration.php:416 #@ wc_google_trusted_stores msgid "Sangro" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:400 +#: includes/class-wc-google-trusted-stores-integration.php:417 #@ wc_google_trusted_stores msgid "Serbo-Croatian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:401 +#: includes/class-wc-google-trusted-stores-integration.php:418 #@ wc_google_trusted_stores msgid "Singhalese" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:402 +#: includes/class-wc-google-trusted-stores-integration.php:419 #@ wc_google_trusted_stores msgid "Slovak" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:403 +#: includes/class-wc-google-trusted-stores-integration.php:420 #@ wc_google_trusted_stores msgid "Slovenian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:404 +#: includes/class-wc-google-trusted-stores-integration.php:421 #@ wc_google_trusted_stores msgid "Samoan" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:405 +#: includes/class-wc-google-trusted-stores-integration.php:422 #@ wc_google_trusted_stores msgid "Shona" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:406 +#: includes/class-wc-google-trusted-stores-integration.php:423 #@ wc_google_trusted_stores msgid "Somali" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:407 +#: includes/class-wc-google-trusted-stores-integration.php:424 #@ wc_google_trusted_stores msgid "Albanian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:408 +#: includes/class-wc-google-trusted-stores-integration.php:425 #@ wc_google_trusted_stores msgid "Serbian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:409 +#: includes/class-wc-google-trusted-stores-integration.php:426 #@ wc_google_trusted_stores msgid "Siswati" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:410 +#: includes/class-wc-google-trusted-stores-integration.php:427 #@ wc_google_trusted_stores msgid "Sesotho" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:411 +#: includes/class-wc-google-trusted-stores-integration.php:428 #@ wc_google_trusted_stores msgid "Sundanese" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:412 +#: includes/class-wc-google-trusted-stores-integration.php:429 #@ wc_google_trusted_stores msgid "Swedish" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:413 +#: includes/class-wc-google-trusted-stores-integration.php:430 #@ wc_google_trusted_stores msgid "Swahili" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:414 +#: includes/class-wc-google-trusted-stores-integration.php:431 #@ wc_google_trusted_stores msgid "Tamil" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:415 +#: includes/class-wc-google-trusted-stores-integration.php:432 #@ wc_google_trusted_stores msgid "Tegulu" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:416 +#: includes/class-wc-google-trusted-stores-integration.php:433 #@ wc_google_trusted_stores msgid "Tajik" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:417 +#: includes/class-wc-google-trusted-stores-integration.php:434 #@ wc_google_trusted_stores msgid "Thai" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:418 +#: includes/class-wc-google-trusted-stores-integration.php:435 #@ wc_google_trusted_stores msgid "Tigrinya" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:419 +#: includes/class-wc-google-trusted-stores-integration.php:436 #@ wc_google_trusted_stores msgid "Turkmen" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:420 +#: includes/class-wc-google-trusted-stores-integration.php:437 #@ wc_google_trusted_stores msgid "Tagalog" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:421 +#: includes/class-wc-google-trusted-stores-integration.php:438 #@ wc_google_trusted_stores msgid "Setswana" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:422 +#: includes/class-wc-google-trusted-stores-integration.php:439 #@ wc_google_trusted_stores msgid "Tonga" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:423 +#: includes/class-wc-google-trusted-stores-integration.php:440 #@ wc_google_trusted_stores msgid "Turkish" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:424 +#: includes/class-wc-google-trusted-stores-integration.php:441 #@ wc_google_trusted_stores msgid "Tsonga" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:425 +#: includes/class-wc-google-trusted-stores-integration.php:442 #@ wc_google_trusted_stores msgid "Tatar" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:426 +#: includes/class-wc-google-trusted-stores-integration.php:443 #@ wc_google_trusted_stores msgid "Twi" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:427 +#: includes/class-wc-google-trusted-stores-integration.php:444 #@ wc_google_trusted_stores msgid "Ukrainian" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:428 +#: includes/class-wc-google-trusted-stores-integration.php:445 #@ wc_google_trusted_stores msgid "Urdu" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:429 +#: includes/class-wc-google-trusted-stores-integration.php:446 #@ wc_google_trusted_stores msgid "Uzbek" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:430 +#: includes/class-wc-google-trusted-stores-integration.php:447 #@ wc_google_trusted_stores msgid "Vietnamese" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:431 +#: includes/class-wc-google-trusted-stores-integration.php:448 #@ wc_google_trusted_stores msgid "Volapuk" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:432 +#: includes/class-wc-google-trusted-stores-integration.php:449 #@ wc_google_trusted_stores msgid "Wolof" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:433 +#: includes/class-wc-google-trusted-stores-integration.php:450 #@ wc_google_trusted_stores msgid "Xhosa" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:434 +#: includes/class-wc-google-trusted-stores-integration.php:451 #@ wc_google_trusted_stores msgid "Yoruba" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:435 +#: includes/class-wc-google-trusted-stores-integration.php:452 #@ wc_google_trusted_stores msgid "Chinese" msgstr "" -#: includes/class-wc-google-trusted-stores-integration.php:436 +#: includes/class-wc-google-trusted-stores-integration.php:453 #@ wc_google_trusted_stores msgid "Zulu" msgstr "" -#. translators: plugin header field 'Name' -#: woocommerce-google-trusted-stores-integration.php:0 +#: includes/class-wc-google-trusted-stores-integration.php:73 #@ wc_google_trusted_stores -msgid "WooCommerce Google Trusted Stores Integration" -msgstr "WooCommerce Google Zertifizierter Händler Integration" +msgid "Locale" +msgstr "Shopsprache" -#. translators: plugin header field 'Description' -#: woocommerce-google-trusted-stores-integration.php:0 +#: includes/class-wc-google-trusted-stores-integration.php:74 +#, php-format #@ wc_google_trusted_stores -msgid "Integrates Google Trusted Stores with your WooCommerce store" -msgstr "Dieses Plugin integriert die erforderlichen Javaskripte für das Google Zertifizierter Händler Programm in Ihren WooCommerce Shop." +msgid "Set the main locale of your site. The locale should be in the format of %s" +msgstr "Tragen Sie hier die Hauptsprache Ihrer Webseite ein. Diese Angabe erfordert das folgende Format: %s" -#. translators: plugin header field 'Author' -#: woocommerce-google-trusted-stores-integration.php:0 +#: includes/class-wc-google-trusted-stores-integration.php:81 #@ wc_google_trusted_stores -msgid "Enollo" -msgstr "" +msgid "Set the estimated ship time in weekdays" +msgstr "Tragen Sie die voraussichtliche Bearbeitungszeit bis zum Versand in Wochentagen ein." -#. translators: plugin header field 'AuthorURI' -#: woocommerce-google-trusted-stores-integration.php:0 +#: includes/class-wc-google-trusted-stores-integration.php:87 #@ wc_google_trusted_stores -msgid "http://www.enollo.com" -msgstr "" +msgid "Estimate Delivery Time (weekdays)" +msgstr "Voraussichtliche maximale Paketlaufzeit (in Wochentagen)" -#. translators: plugin header field 'Version' -#: woocommerce-google-trusted-stores-integration.php:0 +#: includes/class-wc-google-trusted-stores-integration.php:88 #@ wc_google_trusted_stores -msgid "0.1.0" -msgstr "" +msgid "Set the estimated delivery time in weekdays from the ship date" +msgstr "Tragen Sie hier die maximale Paketlaufzeit ab Versanddatum in Wochentagen ein." + +#: includes/class-wc-google-trusted-stores-integration.php:94 +#@ wc_google_trusted_stores +msgid "Non-US" +msgstr "Nicht-US" + +#: includes/class-wc-google-trusted-stores-integration.php:95 +#@ wc_google_trusted_stores +msgid "Use the non-US Google Trusted Stores JavaScript" +msgstr "Verwendung des Nicht-US Google Zertifizierter Händler JavaSkripts." + +#: includes/class-wc-google-trusted-stores-integration.php:107 +#@ wc_google_trusted_stores +msgid "Google Shopping" +msgstr "Google Produkte" diff --git a/readme.txt b/readme.txt old mode 100755 new mode 100644 index 4857eb9..c0ab3cb --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: tamarazuk, enollo, s-a-s-k-i-a Tags: woocommerce, google trusted stores Requires at least: 3.8 Tested up to: 3.9 -Stable tag: 1.0 +Stable tag: 0.1.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -28,16 +28,19 @@ Or use the automatic installation wizard through your admin panel, just search f This plugin will add the settings to the Integration tab, to be found in the WooCommerce > Settings menu. -== Changelog == +== Changelog == -= 0.1.1 - 10/05/2014 = - * added translation support - * added German language += 0.1.1 - 2014.12.01 = + * Add - german .po and .mo files -= 0.1.0 - 10/05/2014 = - * general cleanup - * use `$order->get_order_number() for `gts-o-id` - * localized and added filter on languages += 0.1.0-2 - 2014.nn.nn = + * Fix - Add the estimated delivery date + * Tweak - Allow use of non-US Google Trusted Stores JavaScript -= 0.0.1 - 08/05/2014 = += 0.1.0 - 2014.10.05 = + * Tweak - general cleanup + * Fix - Use `$order->get_order_number() for `gts-o-id` - props to @WOWstyleshop + * Localization - localized and added filter on languages + += 0.0.1 - 2014.05.08 = * Initial release diff --git a/woocommerce-google-trusted-stores-integration.php b/woocommerce-google-trusted-stores-integration.php old mode 100755 new mode 100644 index 395de80..c1e3b9d --- a/woocommerce-google-trusted-stores-integration.php +++ b/woocommerce-google-trusted-stores-integration.php @@ -4,13 +4,13 @@ * Description: Integrates Google Trusted Stores with your WooCommerce store * Author: Enollo * Author URI: http://www.enollo.com - * Version: 0.1.1 - * Text Domain: wc_google_trusted_stores + * Version: 0.1.0-2 * Domain Path: /languages/ -*/ + */ // Add the integration to WooCommerce function wc_google_trusted_stores_add_integration( $integrations ) { + include_once( 'includes/class-wc-google-trusted-stores-integration.php' ); $integrations[] = 'WC_Google_Trusted_Stores';