Changeset 1653779
- Timestamp:
- 05/09/2017 07:20:11 PM (9 years ago)
- Location:
- woocommerce-simple-registration/trunk
- Files:
-
- 4 edited
-
languages/woocommerce-simple-registration.pot (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
templates/registration-form.php (modified) (6 diffs)
-
woocommerce-simple-registration.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-simple-registration/trunk/languages/woocommerce-simple-registration.pot
r1534747 r1653779 1 # Copyright (C) 201 6Astoundify2 # This file is distributed under the same license as the WooCommerce Simple Registrationpackage.1 # Copyright (C) 2017 Astoundify 2 # This file is distributed under the same license as the Simple Registration for WooCommerce package. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce Simple Registration 1.3.0\n"5 "Project-Id-Version: Simple Registration for WooCommerce 1.4.0\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/woocommerce-simple-registration\n" 8 "POT-Creation-Date: 201 6-11-16 01:42:08+00:00\n"8 "POT-Creation-Date: 2017-04-12 14:01:44+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "PO-Revision-Date: 201 6-MO-DA HO:MI+ZONE\n"12 "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 14 14 "Language-Team: LANGUAGE <LL@li.org>\n" … … 48 48 49 49 #. Plugin Name of the plugin/theme 50 msgid " WooCommerce Simple Registration"50 msgid "Simple Registration for WooCommerce" 51 51 msgstr "" 52 52 53 #. AuthorURI of the plugin/theme54 msgid "https://astoundify.com/ "53 #. Plugin URI of the plugin/theme 54 msgid "https://astoundify.com/products/woocommerce-simple-registration/" 55 55 msgstr "" 56 56 … … 64 64 msgid "Astoundify" 65 65 msgstr "" 66 67 #. Author URI of the plugin/theme 68 msgid "https://astoundify.com/" 69 msgstr "" -
woocommerce-simple-registration/trunk/readme.txt
r1534747 r1653779 1 === WooCommerce Simple Registration===2 Contributors: Astoundify , SpencerFinnell1 === Simple Registration for WooCommerce === 2 Contributors: Astoundify 3 3 Donate link: https://www.paypal.me/astoundify 4 4 Tags: woocommerce, woocommerce registration, woocommerce register, woocommerce registration form, woocommerce form 5 Requires at least: 4. 46 Tested up to: 4. 67 Stable tag: 1. 3.05 Requires at least: 4.7.0 6 Tested up to: 4.7.3 7 Stable tag: 1.4.0 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 22 22 23 23 == Changelog == 24 25 = 1.4.0: April 12, 2017 = 26 27 * New: Update README. 28 * Fix: Update strings. 24 29 25 30 = 1.3.0: November 17, 2016 = -
woocommerce-simple-registration/trunk/templates/registration-form.php
r1488277 r1653779 15 15 <?php wc_print_notices(); ?> 16 16 17 <h2><?php _e( 'Register', 'woocommerce ' ); ?></h2>17 <h2><?php _e( 'Register', 'woocommerce-simple-registration' ); ?></h2> 18 18 19 19 <form method="post" class="register"> … … 24 24 25 25 <p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide"> 26 <label for="reg_username"><?php _e( 'Username', 'woocommerce ' ); ?> <span class="required">*</span></label>26 <label for="reg_username"><?php _e( 'Username', 'woocommerce-simple-registration' ); ?> <span class="required">*</span></label> 27 27 <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="reg_username" value="<?php if ( ! empty( $_POST['username'] ) ) echo esc_attr( $_POST['username'] ); ?>" /> 28 28 </p> … … 31 31 32 32 <p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide"> 33 <label for="reg_email"><?php _e( 'Email address', 'woocommerce ' ); ?> <span class="required">*</span></label>33 <label for="reg_email"><?php _e( 'Email address', 'woocommerce-simple-registration' ); ?> <span class="required">*</span></label> 34 34 <input type="email" class="woocommerce-Input woocommerce-Input--text input-text" name="email" id="reg_email" value="<?php if ( ! empty( $_POST['email'] ) ) echo esc_attr( $_POST['email'] ); ?>" /> 35 35 </p> … … 38 38 39 39 <p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide"> 40 <label for="reg_password"><?php _e( 'Password', 'woocommerce ' ); ?> <span class="required">*</span></label>40 <label for="reg_password"><?php _e( 'Password', 'woocommerce-simple-registration' ); ?> <span class="required">*</span></label> 41 41 <input type="password" class="woocommerce-Input woocommerce-Input--text input-text" name="password" id="reg_password" /> 42 42 </p> … … 45 45 46 46 <!-- Spam Trap --> 47 <div style="<?php echo ( ( is_rtl() ) ? 'right' : 'left' ); ?>: -999em; position: absolute;"><label for="trap"><?php _e( 'Anti-spam', 'woocommerce ' ); ?></label><input type="text" name="email_2" id="trap" tabindex="-1" /></div>47 <div style="<?php echo ( ( is_rtl() ) ? 'right' : 'left' ); ?>: -999em; position: absolute;"><label for="trap"><?php _e( 'Anti-spam', 'woocommerce-simple-registration' ); ?></label><input type="text" name="email_2" id="trap" tabindex="-1" /></div> 48 48 49 49 <?php do_action( 'woocommerce_register_form' ); ?> … … 52 52 <p class="woocomerce-FormRow form-row"> 53 53 <?php wp_nonce_field( 'woocommerce-register', 'woocommerce-register-nonce' ); ?> 54 <input type="submit" class="woocommerce-Button button" name="register" value="<?php esc_attr_e( 'Register', 'woocommerce ' ); ?>" />54 <input type="submit" class="woocommerce-Button button" name="register" value="<?php esc_attr_e( 'Register', 'woocommerce-simple-registration' ); ?>" /> 55 55 </p> 56 56 -
woocommerce-simple-registration/trunk/woocommerce-simple-registration.php
r1534747 r1653779 1 1 <?php 2 2 /** 3 * Plugin Name: WooCommerce Simple Registration4 * Plugin URI: https://astoundify.com/ 3 * Plugin Name: Simple Registration for WooCommerce 4 * Plugin URI: https://astoundify.com/products/woocommerce-simple-registration/ 5 5 * Description: A simple plugin to add a [woocommerce_simple_registration] shortcode to display the registration form on a separate page. 6 * Version: 1. 3.06 * Version: 1.4.0 7 7 * Author: Astoundify 8 8 * Author URI: https://astoundify.com/ … … 31 31 * @var string $version Plugin version number. 32 32 */ 33 public $version = '1. 3.0';33 public $version = '1.4.0'; 34 34 35 35
Note: See TracChangeset
for help on using the changeset viewer.