-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3ae7936
Showing
14 changed files
with
1,382 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/.project | ||
/.settings | ||
/.idea | ||
.DS_Store | ||
/tmp | ||
|
||
# NPM packages used by Grunt.js | ||
/node_modules | ||
package-lock.json | ||
|
||
# NPM debug log | ||
npm-debug.log | ||
|
||
# build directory | ||
/build | ||
|
||
# asset files generated for the build | ||
/plugin/assets/js/**/*.min.map | ||
/plugin/assets/js/**/*.min.js | ||
/plugin/assets/js/**/*.min.js.map | ||
/plugin/assets/css/**/*.min.css | ||
/plugin/assets/css/**/*.min.css.map | ||
|
||
# Composer | ||
composer.phar | ||
/vendor | ||
|
||
# WP Tests | ||
.env.test | ||
codeception.yml | ||
/tests/tmp/ | ||
/tests/tmp/* | ||
/tests/_output/ | ||
/tests/_output/* | ||
|
||
# map files | ||
*.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "skyverge/simple-registration-for-woocommerce", | ||
"type": "project", | ||
"authors": [ | ||
{ | ||
"name": "SkyVerge", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "dev" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "simple-registration-for-woocommerce", | ||
"version": "1.0.0", | ||
"author": "SkyVerge", | ||
"homepage": "http://skyverge.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/skyverge/simple-registration-for-woocommerce.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/skyverge/simple-registration-for-woocommerce/issues" | ||
}, | ||
"engines": { | ||
"node": ">= 0.10.0" | ||
}, | ||
"devDependencies": { | ||
"sake": "github:skyverge/sake" | ||
}, | ||
"dependencies": {} | ||
} |
125 changes: 125 additions & 0 deletions
125
plugin/i18n/languages/simple-registration-for-woocommerce.pot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
# Copyright (C) 2019 SkyVerge | ||
# This file is distributed under the GNU General Public License v3.0. | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Simple registration for WooCommerce 1.0.0\n" | ||
"Report-Msgid-Bugs-To: " | ||
"https://woocommerce.com/my-account/marketplace-ticket-form/\n" | ||
"POT-Creation-Date: 2019-04-22 21:44:21+00:00\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=utf-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
||
#: src/Admin.php:54 | ||
msgid "Simple registration" | ||
msgstr "" | ||
|
||
#: src/Admin.php:57 | ||
msgid "Determine which fields are shown on simple registration forms." | ||
msgstr "" | ||
|
||
#: src/Admin.php:60 | ||
msgid "Show name fields" | ||
msgstr "" | ||
|
||
#: src/Admin.php:61 | ||
msgid "Determines whether these fields are shown and required." | ||
msgstr "" | ||
|
||
#: src/Admin.php:67 | ||
msgid "Do not show first and last name fields" | ||
msgstr "" | ||
|
||
#: src/Admin.php:68 | ||
msgid "Show optional first and last name fields" | ||
msgstr "" | ||
|
||
#: src/Admin.php:69 | ||
msgid "Require first and last name fields" | ||
msgstr "" | ||
|
||
#: src/Admin.php:74 | ||
msgid "Show privacy text" | ||
msgstr "" | ||
|
||
#: src/Admin.php:75 | ||
msgid "Enable to show privacy policy text after this form." | ||
msgstr "" | ||
|
||
#: src/Frontend.php:94 | ||
msgid "Register" | ||
msgstr "" | ||
|
||
#: src/Frontend.php:112 | ||
msgid "Welcome! You can %1$sview your account here%2$s." | ||
msgstr "" | ||
|
||
#: src/Integrations.php:73 | ||
msgid "Registration shortcodes" | ||
msgstr "" | ||
|
||
#: src/Plugin.php:98 | ||
msgid "Configure" | ||
msgstr "" | ||
|
||
#: src/Plugin.php:172 | ||
#. translators: Placeholders: %s - plugin name | ||
msgid "You cannot clone instances of %s." | ||
msgstr "" | ||
|
||
#: src/Plugin.php:184 | ||
#. translators: Placeholders: %s - plugin name | ||
msgid "You cannot unserialize instances of %s." | ||
msgstr "" | ||
|
||
#: templates/registration-form.php:52 | ||
msgid "First name" | ||
msgstr "" | ||
|
||
#: templates/registration-form.php:57 | ||
msgid "Last name" | ||
msgstr "" | ||
|
||
#: templates/registration-form.php:65 | ||
msgid "Username" | ||
msgstr "" | ||
|
||
#: templates/registration-form.php:72 | ||
msgid "Email address" | ||
msgstr "" | ||
|
||
#: templates/registration-form.php:79 | ||
msgid "Password" | ||
msgstr "" | ||
|
||
#: templates/registration-form.php:86 | ||
msgid "Anti-spam" | ||
msgstr "" | ||
|
||
#. Plugin Name of the plugin/theme | ||
msgid "Simple registration for WooCommerce" | ||
msgstr "" | ||
|
||
#. Author URI of the plugin/theme | ||
msgid "http://www.skyverge.com/" | ||
msgstr "" | ||
|
||
#. Description of the plugin/theme | ||
msgid "" | ||
"Easily include registration forms via [wc_registration_form] shortcode on a " | ||
"WooCommerce site." | ||
msgstr "" | ||
|
||
#. Author of the plugin/theme | ||
msgid "SkyVerge" | ||
msgstr "" | ||
|
||
#: src/Frontend.php:164 | ||
#. translators: Placeholders: %1$s - first or given name, %2$s - surname or | ||
#. last name | ||
msgctxt "User full name" | ||
msgid "%1$s %2$s" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
=== Simple Registration for WooCommerce === | ||
Contributors: SkyVerge, Jilt, Astoundify | ||
Tags: woocommerce, woocommerce registration, woocommerce register, woocommerce registration form, woocommerce form | ||
Requires at least: 4.9.0 | ||
Tested up to: 5.1.1 | ||
Stable tag: 1.0.0 | ||
License: GPLv3 or later | ||
License URI: http://www.gnu.org/licenses/gpl-3.0.html | ||
|
||
A simple plugin to add a [wc_registration_form] shortcode to display the registration form on your site. | ||
|
||
== Description == | ||
|
||
A simple plugin to add a [wc_registration_form] shortcode to display the registration form on your site. You can optionally add a few attributes: | ||
|
||
- `button` = changes the text for the form submission button | ||
- `show_names` = override the global setting to show name fields (accepts "yes" or "no") | ||
- `require_names` = override the global setting to require name fields (accepts "yes" or "no") | ||
|
||
== Installation == | ||
|
||
1. Go to Plugins > Add new > Upload | ||
2. Upload the zip file and activate the plugin | ||
3. Use the shortcode `wc_registration_form` to display the registration form. | ||
|
||
== Changelog == | ||
|
||
= 2019.nn.nn - version 1.0.0 = | ||
|
||
* Initial release |
Oops, something went wrong.