Changeset 953516
- Timestamp:
- 07/23/2014 02:34:06 PM (12 years ago)
- Location:
- agreeable/trunk
- Files:
-
- 2 added
- 1 deleted
- 6 edited
-
agreeable.php (modified) (2 diffs)
-
css/admin.css (added)
-
css/agreeable.css (deleted)
-
css/front.css (added)
-
languages/agreeable-es_ES.mo (modified) (previous)
-
languages/agreeable-es_ES.po (modified) (1 diff)
-
languages/agreeable-fa_IR.mo (modified) (previous)
-
languages/agreeable-fa_IR.po (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
agreeable/trunk/agreeable.php
r951069 r953516 4 4 Plugin URI: http://wordpress.org/extend/plugins/agreeable 5 5 Description: Add a required "Agree to terms" checkbox to login and/or register forms. Based on the I-Agree plugin by Michael Stursberg. 6 Version: 0.3.4 7 Author: buildcreate8 Author URI: http:// buildcreate.com6 Version: 0.3.4.1 7 Author: kraftpress 8 Author URI: http://kraftpress.it 9 9 */ 10 10 11 function ag_ action_init() {11 function ag_language_init() { 12 12 // Localization 13 13 load_plugin_textdomain('agreeable', false, basename( dirname( __FILE__ ) ) . '/languages' ); 14 14 } 15 15 16 add_action('init', 'ag_action_init'); 17 18 19 wp_enqueue_style( 'agreeable-css', plugins_url('css/agreeable.css', __FILE__)); 20 21 22 function agreeable_lightbox() { 23 if (!is_admin()) { 16 function ag_admin() { 17 /* Plugin Stylesheet */ 18 wp_enqueue_style( 'agreeable-css', plugins_url('css/admin.css', __FILE__), '', '0.3.4', 'screen'); 19 } 20 21 function ag_front() { 22 /* Only load lightbox code on the frontend, where we need it */ 24 23 wp_enqueue_script( 'magnific', plugins_url('js/magnific.js', __FILE__),'', '', true); 25 24 wp_enqueue_script( 'agreeable-js', plugins_url('js/agreeable.js', __FILE__), '', '', true); 26 wp_enqueue_style( 'magnific', plugins_url('css/magnific.css', __FILE__)); 27 } 28 } 25 wp_enqueue_style( 'magnific', plugins_url('css/magnific.css', __FILE__)); 26 wp_enqueue_style( 'magnific', plugins_url('css/front.css', __FILE__)); 27 } 28 29 add_action('init', 'ag_language_init'); 30 add_action('admin_enqueue_scripts', 'ag_admin'); 31 add_action('wp_enqueue_scripts', 'ag_front'); 29 32 30 33 function ag_authenticate_user_acc($user) { … … 122 125 if($dblightbox == 1) { 123 126 124 agreeable_lightbox();125 127 $term_link = '#terms'; 126 128 -
agreeable/trunk/languages/agreeable-es_ES.po
r950335 r953516 3 3 "Project-Id-Version: Agreeable\n" 4 4 "POT-Creation-Date: 2014-07-11 13:27-0500\n" 5 "PO-Revision-Date: 2014-07- 17 15:20+0100\n"6 "Last-Translator: jelena kovacevic <jecajeca260@gmail.com>\n"5 "PO-Revision-Date: 2014-07-23 09:07-0500\n" 6 "Last-Translator: Ian Wilson <ian@kraftpress.com>\n" 7 7 "Language-Team: build/create studios <[email protected]>\n" 8 "Language: e n\n"8 "Language: es\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 "X-Generator: Poedit 1. 5.5\n"12 "X-Generator: Poedit 1.6.7\n" 13 13 "X-Poedit-Basepath: .\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" -
agreeable/trunk/languages/agreeable-fa_IR.po
r951056 r953516 2 2 msgstr "" 3 3 "Project-Id-Version: Agreeable\n" 4 "POT-Creation-Date: 2014-07- 18 15:58+0100\n"5 "PO-Revision-Date: 2014-07- 18 15:58+0100\n"6 "Last-Translator: \n"4 "POT-Creation-Date: 2014-07-23 09:05-0500\n" 5 "PO-Revision-Date: 2014-07-23 09:05-0500\n" 6 "Last-Translator: Ian Wilson <[email protected]>\n" 7 7 "Language-Team: build/create studios <[email protected]>\n" 8 "Language: en\n"8 "Language: fa\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 "X-Generator: Poedit 1.6. 6\n"12 "X-Generator: Poedit 1.6.7\n" 13 13 "X-Poedit-Basepath: .\n" 14 "Plural-Forms: nplurals= 2; plural=(n != 1);\n"14 "Plural-Forms: nplurals=1; plural=0;\n" 15 15 "X-Poedit-KeywordsList: __;_e\n" 16 16 "X-Poedit-SearchPath-0: ..\n" -
agreeable/trunk/readme.txt
r951053 r953516 6 6 Stable tag: trunk 7 7 License:GPLv2 or later 8 Add an "Agree to terms" check box on login, registration, or comment forms. Works with BuddyPress and bbPress 8 Add an "Agree to terms" check box on login, registration, or comment forms. Works with BuddyPress and bbPress. 9 9 10 10 == Description == … … 41 41 42 42 == Changelog == 43 44 = 3.4.1 = 45 * Fixed RTL Bug 43 46 44 47 = 0.3.3 =
Note: See TracChangeset
for help on using the changeset viewer.